montrose 0.12.0 → 0.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +24 -32
  3. data/.gitignore +0 -3
  4. data/.rubocop.yml +5 -0
  5. data/.ruby-version +1 -0
  6. data/CHANGELOG.md +24 -0
  7. data/Gemfile +4 -9
  8. data/Gemfile.lock +148 -0
  9. data/README.md +20 -22
  10. data/bin/bundle-all +5 -0
  11. data/gemfiles/activesupport_5.2.gemfile +1 -12
  12. data/gemfiles/activesupport_5.2.gemfile.lock +107 -0
  13. data/gemfiles/activesupport_6.0.gemfile +1 -12
  14. data/gemfiles/activesupport_6.0.gemfile.lock +108 -0
  15. data/gemfiles/activesupport_6.1.gemfile +1 -12
  16. data/gemfiles/activesupport_6.1.gemfile.lock +108 -0
  17. data/gemfiles/activesupport_7.0.gemfile +5 -0
  18. data/gemfiles/activesupport_7.0.gemfile.lock +106 -0
  19. data/lib/montrose/chainable.rb +0 -1
  20. data/lib/montrose/clock.rb +54 -9
  21. data/lib/montrose/day.rb +83 -0
  22. data/lib/montrose/frequency.rb +60 -27
  23. data/lib/montrose/hour.rb +22 -0
  24. data/lib/montrose/ical.rb +128 -0
  25. data/lib/montrose/minute.rb +22 -0
  26. data/lib/montrose/month.rb +47 -0
  27. data/lib/montrose/month_day.rb +25 -0
  28. data/lib/montrose/options.rb +56 -65
  29. data/lib/montrose/recurrence.rb +18 -12
  30. data/lib/montrose/rule/during.rb +7 -15
  31. data/lib/montrose/rule/minute_of_hour.rb +25 -0
  32. data/lib/montrose/rule/nth_day_of_month.rb +0 -2
  33. data/lib/montrose/rule/nth_day_of_year.rb +0 -2
  34. data/lib/montrose/rule/time_of_day.rb +1 -1
  35. data/lib/montrose/rule.rb +18 -16
  36. data/lib/montrose/schedule.rb +7 -7
  37. data/lib/montrose/stack.rb +1 -2
  38. data/lib/montrose/time_of_day.rb +48 -0
  39. data/lib/montrose/utils.rb +0 -38
  40. data/lib/montrose/version.rb +1 -1
  41. data/lib/montrose/week.rb +20 -0
  42. data/lib/montrose/year_day.rb +25 -0
  43. data/lib/montrose.rb +20 -8
  44. data/montrose.gemspec +4 -3
  45. metadata +42 -11
  46. data/Appraisals +0 -13
  47. data/bin/appraisal +0 -17
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d44082eaa05a068714f05fe6116f8442b0507b3c7612174d93716ce6fd4af4ba
4
- data.tar.gz: 691d88452db689b1555772b6749ae12e72bf675fbc55d4082b2d7f4cd41dd795
3
+ metadata.gz: d6f7ea1fd6222db409b16db79037e8fcdae1d3d2d974fe767ba1cc14e7751d15
4
+ data.tar.gz: 7006787072b5ccd1d5bd1e37991fea4ee0539ff2c6b6e62a317194066b4ecb5d
5
5
  SHA512:
6
- metadata.gz: 389adad3b13244fdb642204fa158bde6a204de4c752cab7a11dc1fe2a237a98f7b73c905477fd335d47164b795921a92090b68a528327b115ff2721b8c2945f7
7
- data.tar.gz: 9ce4b11ae2d6c0fd06b06ca9fe56aa05767bca879be8c5cd3a24dae1c7fed442ca50d4195cf5225ff42f1bb2f2704a9ab8fb308b0a9167865317a245dd782441
6
+ metadata.gz: a0bf23b3af8e63c66f4bf8b81873f5869c88dd206cfe185f26b926f9eba4ab5895fb50aa318621949551d7d99ffa6d17b73e54509a4431230f048515f4554678
7
+ data.tar.gz: af35726d60626e59eaab28ad6a4c3bda1a570405f2c8d47efbba42b6efd452eb61b66007385ce030bf303a1ad5c49b65280d0db9e20cab1c82fc07c88812ebce
data/.circleci/config.yml CHANGED
@@ -1,33 +1,18 @@
1
1
  version: 2.1
2
2
  orbs:
3
- ruby: circleci/ruby@1.1.2
3
+ ruby: circleci/ruby@2.1.0
4
+
5
+
4
6
  commands:
5
7
  run-tests:
6
8
  description: Run tests
7
9
  steps:
8
10
  - run: bundle exec rake test
9
- restore:
10
- description: Restore cache
11
- steps:
12
- - restore_cache:
13
- keys:
14
- - v1_bundler_deps-
15
- save:
16
- description: Save cache
17
- steps:
18
- - save_cache:
19
- paths:
20
- - ./vendor/bundle
21
- key: v1-bundler-deps-{{ .Environment.CIRCLE_JOB }}
22
- bundle:
23
- description: Install dependencies
11
+
12
+ run-lint:
13
+ description: Run standardrb lint check
24
14
  steps:
25
- - run:
26
- echo "export BUNDLE_JOBS=4" >> $BASH_ENV
27
- echo "export BUNDLE_RETRY=3" >> $BASH_ENV
28
- echo "export BUNDLE_PATH=$(pwd)/vendor/bundle" >> $BASH_ENV
29
- echo "export BUNDLE_GEMFILE=$(pwd)/${GEMFILE_NAME}" >> $BASH_ENV
30
- - run: bundle install
15
+ - run: bundle exec rake standard
31
16
 
32
17
  jobs:
33
18
  test:
@@ -37,29 +22,36 @@ jobs:
37
22
  gemfile:
38
23
  type: string
39
24
  docker:
40
- - image: 'circleci/ruby:<< parameters.ruby_version >>'
41
- environment:
42
- GEMFILE_NAME: <<parameters.gemfile>>
25
+ - image: 'cimg/ruby:<< parameters.ruby_version >>'
43
26
  steps:
44
27
  - checkout
45
- - restore
46
- - bundle
47
- - save
28
+ - ruby/install-deps:
29
+ gemfile: <<parameters.gemfile>>
48
30
  - run-tests
49
31
 
32
+ lint:
33
+ docker:
34
+ - image: cimg/ruby:2.7
35
+ steps:
36
+ - checkout
37
+ - ruby/install-deps
38
+ - run-lint
39
+
50
40
  workflows:
51
41
  all-tests:
52
42
  jobs:
43
+ - lint
53
44
  - test:
54
45
  matrix:
55
46
  parameters:
56
- ruby_version: ['2.5', '2.6', '2.7']
47
+ ruby_version: ['2.6', '2.7', '3.0', '3.1']
57
48
  gemfile:
58
49
  [
59
50
  'gemfiles/activesupport_5.2.gemfile',
60
51
  'gemfiles/activesupport_6.0.gemfile',
61
52
  'gemfiles/activesupport_6.1.gemfile',
53
+ 'gemfiles/activesupport_7.0.gemfile',
62
54
  ]
63
- # exclude:
64
- # - ruby_version: '3.0'
65
- # - gemfile: rails_5_2.gemfile
55
+ exclude:
56
+ - ruby_version: '2.6'
57
+ gemfile: gemfiles/activesupport_7.0.gemfile
data/.gitignore CHANGED
@@ -1,6 +1,5 @@
1
1
  /.bundle/
2
2
  /.yardoc
3
- /Gemfile.lock
4
3
  /_yardoc/
5
4
  /coverage/
6
5
  /doc/
@@ -9,6 +8,4 @@
9
8
  /tmp/
10
9
  /profile.log
11
10
  /trace.txt
12
- gemfiles/*.lock
13
11
  /.ruby-gemset
14
- /.ruby-version
data/.rubocop.yml ADDED
@@ -0,0 +1,5 @@
1
+ require:
2
+ - standard
3
+
4
+ inherit_gem:
5
+ standard: config/base.yml
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 2.7
data/CHANGELOG.md CHANGED
@@ -1,3 +1,27 @@
1
+ ### 0.12.0 - (2021-02-02)
2
+
3
+ * enhancements
4
+ * Adds `Montrose.covering` to disambiguate `Montrose.between` behavior
5
+ `#covering` provides recurrence masking behavior, i.e., only recurrences
6
+ within the given range will be emitted
7
+ * Added support for ActiveSupport 6 and Ruby 2.7
8
+ * Adds `Montrose#infinite?` and ensures `Montrose.finite?` returns a boolean
9
+
10
+ * bug fixes
11
+ * Fixes `Recurrence#include?` behavior for infinite recurrences with
12
+ intervals > 1
13
+
14
+ * breaking changes
15
+ * `Montrose.between` no longer provides masking behavior, which is now
16
+ provided by `Montrose.covering`. A global option can be used
17
+ `Montrose.enable_deprecated_between_masking = true` to retain the legacy
18
+ behavior for `Montrose.between`. This option will be removed in v1.0.
19
+ * Dropped official support for EOL'd rubies and ActiveSupport < 5.2
20
+
21
+ * miscellaneous
22
+ * switched from Travis to CircleCi for builds
23
+ * switched default branch to `main`
24
+ #
1
25
  ### 0.11.0 - (2019-08-16)
2
26
 
3
27
  * enhancements
data/Gemfile CHANGED
@@ -5,13 +5,8 @@ source "https://rubygems.org"
5
5
  gemspec
6
6
 
7
7
  group :development do
8
- gem "coveralls"
9
- gem "yard"
10
-
11
- unless ENV["CI"]
12
- gem "guard"
13
- gem "guard-minitest"
14
- gem "guard-rubocop"
15
- gem "pry-byebug"
16
- end
8
+ gem "guard"
9
+ gem "guard-minitest"
10
+ gem "guard-rubocop"
11
+ gem "pry-byebug"
17
12
  end
data/Gemfile.lock ADDED
@@ -0,0 +1,148 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ montrose (0.14.0)
5
+ activesupport (>= 5.2, < 7.1)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ activesupport (7.0.7.2)
11
+ concurrent-ruby (~> 1.0, >= 1.0.2)
12
+ i18n (>= 1.6, < 2)
13
+ minitest (>= 5.1)
14
+ tzinfo (~> 2.0)
15
+ ast (2.4.2)
16
+ base64 (0.1.1)
17
+ byebug (11.1.3)
18
+ coderay (1.1.3)
19
+ concurrent-ruby (1.2.2)
20
+ coveralls (0.8.23)
21
+ json (>= 1.8, < 3)
22
+ simplecov (~> 0.16.1)
23
+ term-ansicolor (~> 1.3)
24
+ thor (>= 0.19.4, < 2.0)
25
+ tins (~> 1.6)
26
+ docile (1.4.0)
27
+ ffi (1.15.5)
28
+ formatador (1.1.0)
29
+ guard (2.18.0)
30
+ formatador (>= 0.2.4)
31
+ listen (>= 2.7, < 4.0)
32
+ lumberjack (>= 1.0.12, < 2.0)
33
+ nenv (~> 0.1)
34
+ notiffany (~> 0.0)
35
+ pry (>= 0.13.0)
36
+ shellany (~> 0.0)
37
+ thor (>= 0.18.1)
38
+ guard-compat (1.2.1)
39
+ guard-minitest (2.4.6)
40
+ guard-compat (~> 1.2)
41
+ minitest (>= 3.0)
42
+ guard-rubocop (1.5.0)
43
+ guard (~> 2.0)
44
+ rubocop (< 2.0)
45
+ i18n (1.14.1)
46
+ concurrent-ruby (~> 1.0)
47
+ json (2.6.3)
48
+ language_server-protocol (3.17.0.3)
49
+ lint_roller (1.1.0)
50
+ listen (3.8.0)
51
+ rb-fsevent (~> 0.10, >= 0.10.3)
52
+ rb-inotify (~> 0.9, >= 0.9.10)
53
+ lumberjack (1.2.9)
54
+ m (1.6.1)
55
+ method_source (>= 0.6.7)
56
+ rake (>= 0.9.2.2)
57
+ method_source (1.0.0)
58
+ minitest (5.19.0)
59
+ nenv (0.3.0)
60
+ notiffany (0.1.3)
61
+ nenv (~> 0.1)
62
+ shellany (~> 0.0)
63
+ parallel (1.23.0)
64
+ parser (3.2.2.3)
65
+ ast (~> 2.4.1)
66
+ racc
67
+ pry (0.14.2)
68
+ coderay (~> 1.1)
69
+ method_source (~> 1.0)
70
+ pry-byebug (3.10.1)
71
+ byebug (~> 11.0)
72
+ pry (>= 0.13, < 0.15)
73
+ racc (1.7.1)
74
+ rainbow (3.1.1)
75
+ rake (13.0.6)
76
+ rb-fsevent (0.11.2)
77
+ rb-inotify (0.10.1)
78
+ ffi (~> 1.0)
79
+ regexp_parser (2.8.1)
80
+ rexml (3.2.6)
81
+ rubocop (1.56.1)
82
+ base64 (~> 0.1.1)
83
+ json (~> 2.3)
84
+ language_server-protocol (>= 3.17.0)
85
+ parallel (~> 1.10)
86
+ parser (>= 3.2.2.3)
87
+ rainbow (>= 2.2.2, < 4.0)
88
+ regexp_parser (>= 1.8, < 3.0)
89
+ rexml (>= 3.2.5, < 4.0)
90
+ rubocop-ast (>= 1.28.1, < 2.0)
91
+ ruby-progressbar (~> 1.7)
92
+ unicode-display_width (>= 2.4.0, < 3.0)
93
+ rubocop-ast (1.29.0)
94
+ parser (>= 3.2.1.0)
95
+ rubocop-performance (1.19.0)
96
+ rubocop (>= 1.7.0, < 2.0)
97
+ rubocop-ast (>= 0.4.0)
98
+ ruby-progressbar (1.13.0)
99
+ shellany (0.0.1)
100
+ simplecov (0.16.1)
101
+ docile (~> 1.1)
102
+ json (>= 1.8, < 3)
103
+ simplecov-html (~> 0.10.0)
104
+ simplecov-html (0.10.2)
105
+ standard (1.31.0)
106
+ language_server-protocol (~> 3.17.0.2)
107
+ lint_roller (~> 1.0)
108
+ rubocop (~> 1.56.0)
109
+ standard-custom (~> 1.0.0)
110
+ standard-performance (~> 1.2)
111
+ standard-custom (1.0.2)
112
+ lint_roller (~> 1.0)
113
+ rubocop (~> 1.50)
114
+ standard-performance (1.2.0)
115
+ lint_roller (~> 1.1)
116
+ rubocop-performance (~> 1.19.0)
117
+ sync (0.5.0)
118
+ term-ansicolor (1.7.1)
119
+ tins (~> 1.0)
120
+ thor (1.2.2)
121
+ timecop (0.9.8)
122
+ tins (1.32.1)
123
+ sync
124
+ tzinfo (2.0.6)
125
+ concurrent-ruby (~> 1.0)
126
+ unicode-display_width (2.4.2)
127
+ yard (0.9.34)
128
+
129
+ PLATFORMS
130
+ arm64-darwin-22
131
+ x86_64-linux
132
+
133
+ DEPENDENCIES
134
+ coveralls
135
+ guard
136
+ guard-minitest
137
+ guard-rubocop
138
+ m
139
+ minitest
140
+ montrose!
141
+ pry-byebug
142
+ rake (>= 12.3.3)
143
+ standard
144
+ timecop
145
+ yard
146
+
147
+ BUNDLED WITH
148
+ 2.4.10
data/README.md CHANGED
@@ -4,10 +4,10 @@
4
4
  [![Code Climate](https://codeclimate.com/github/rossta/montrose/badges/gpa.svg)](https://codeclimate.com/github/rossta/montrose)
5
5
  [![Coverage Status](https://coveralls.io/repos/rossta/montrose/badge.svg?branch=master&service=github)](https://coveralls.io/github/rossta/montrose?branch=master)
6
6
 
7
- Montrose is an easy-to-use library for defining recurring events in Ruby. It uses a simple chaining system for building recurrences, inspired heavily by the design principles of [HTTP.rb](https://github.com/httprb/http) and rule definitions available in [Recurrence](https://github.com/fnando/recurrence).
7
+ Montrose is an easy-to-use library for defining recurring events in Ruby. It uses a simple chaining system for building enumerable recurrences, inspired heavily by the design principles of [HTTP.rb](https://github.com/httprb/http) and rule definitions available in [Recurrence](https://github.com/fnando/recurrence).
8
8
 
9
- * [Introductory blog post](http://bit.ly/1PA68Zb)
10
- * [NYC.rb
9
+ - [Introductory blog post](http://bit.ly/1PA68Zb)
10
+ - [NYC.rb
11
11
  presentation](https://speakerdeck.com/rossta/recurring-events-with-montrose)
12
12
 
13
13
  ## Installation
@@ -32,17 +32,17 @@ Dealing with recurring events is hard. `Montrose` provides a simple interface fo
32
32
 
33
33
  More specifically, this project intends to:
34
34
 
35
- * model recurring events in Ruby
36
- * embrace Ruby idioms
37
- * support recent Rubies
38
- * be reasonably performant
39
- * serialize to yaml, hash, and [ical](http://www.kanzaki.com/docs/ical/rrule.html#basic) formats
40
- * be suitable for integration with persistence libraries
35
+ - model recurring events in Ruby
36
+ - embrace Ruby idioms
37
+ - support recent Rubies
38
+ - be reasonably performant
39
+ - serialize to yaml, hash, and [ical](http://www.kanzaki.com/docs/ical/rrule.html#basic) formats
40
+ - be suitable for integration with persistence libraries
41
41
 
42
42
  What `Montrose` doesn't do:
43
43
 
44
- * support all calendaring use cases under the sun
45
- * schedule recurring jobs for your Rails app. Use one of these instead: [cron](https://en.wikipedia.org/wiki/Cron), [rufus-scheduler](https://github.com/jmettraux/rufus-scheduler), [sidekiq-cron](https://github.com/ondrejbartas/sidekiq-cron), [sidetiq](https://github.com/tobiassvn/sidetiq), [whenever](https://github.com/javan/whenever)
44
+ - support all calendaring use cases under the sun
45
+ - schedule recurring jobs for your Rails app. Use one of these instead: [cron](https://en.wikipedia.org/wiki/Cron), [rufus-scheduler](https://github.com/jmettraux/rufus-scheduler), [sidekiq-cron](https://github.com/ondrejbartas/sidekiq-cron), [sidetiq](https://github.com/tobiassvn/sidetiq), [whenever](https://github.com/javan/whenever)
46
46
 
47
47
  ## Concepts
48
48
 
@@ -392,13 +392,16 @@ end
392
392
  # add after building
393
393
  s << Montrose.yearly
394
394
  ```
395
+
395
396
  The `Schedule#<<` method also accepts valid recurrence options as hashes:
397
+
396
398
  ```ruby
397
399
  schedule = Montrose::Schedule.build do |s|
398
400
  s << { day: { friday: [1] } }
399
401
  s << { on: :tuesday }
400
402
  end
401
403
  ```
404
+
402
405
  A schedule acts like a collection of recurrence rules that also behaves as a single
403
406
  stream of events:
404
407
 
@@ -419,7 +422,9 @@ class RecurringEvent < ApplicationRecord
419
422
 
420
423
  end
421
424
  ```
425
+
422
426
  `Montrose::Schedule` can also be serialized:
427
+
423
428
  ```ruby
424
429
  class RecurringEvent < ApplicationRecord
425
430
  serialize :recurrence, Montrose::Schedule
@@ -435,10 +440,10 @@ Montrose is named after the beautifully diverse and artistic [neighborhood in Ho
435
440
 
436
441
  Check out following related projects, all of which have provided inspiration for `Montrose`.
437
442
 
438
- * [ice_cube](https://github.com/seejohnrun/ice_cube)
439
- * [recurrence](https://github.com/fnando/recurrence)
440
- * [runt](https://github.com/mlipper/runt)
441
- * [http.rb](https://github.com/httprb/http) - not a recurrence project, but inspirational to design, implementation, and interface of `Montrose`
443
+ - [ice_cube](https://github.com/seejohnrun/ice_cube)
444
+ - [recurrence](https://github.com/fnando/recurrence)
445
+ - [runt](https://github.com/mlipper/runt)
446
+ - [http.rb](https://github.com/httprb/http) - not a recurrence project, but inspirational to design, implementation, and interface of `Montrose`
442
447
 
443
448
  ## Development
444
449
 
@@ -446,13 +451,6 @@ After checking out the repo, run `bin/setup` to install dependencies. Then, run
446
451
 
447
452
  You can also run `bin/console` for an interactive prompt that will allow you to experiment.
448
453
 
449
- To run tests against multiple versions of activesupport, use the Appraisals:
450
-
451
- ```sh
452
- bin/appraisal install
453
- bin/appraisal rake test
454
- ```
455
-
456
454
  ## Contributing
457
455
 
458
456
  Bug reports and pull requests are welcome on GitHub at https://github.com/rossta/montrose. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
data/bin/bundle-all ADDED
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ Dir["gemfiles/*.gemfile"].each do |gemfile|
4
+ system({"BUNDLE_GEMFILE" => gemfile}, "bundle")
5
+ end
@@ -1,16 +1,5 @@
1
- # This file was generated by Appraisal
2
-
3
1
  source "https://rubygems.org"
4
2
 
5
- gem "activesupport", "~> 5.2.0"
6
-
7
- group :development do
8
- gem "coveralls"
9
- gem "yard"
10
- gem "guard"
11
- gem "guard-minitest"
12
- gem "guard-rubocop"
13
- gem "pry-byebug"
14
- end
3
+ gem "activesupport", "~> 5.2"
15
4
 
16
5
  gemspec path: "../"
@@ -0,0 +1,107 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ montrose (0.13.0)
5
+ activesupport (>= 5.2, < 7.1)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ activesupport (5.2.8.1)
11
+ concurrent-ruby (~> 1.0, >= 1.0.2)
12
+ i18n (>= 0.7, < 2)
13
+ minitest (~> 5.1)
14
+ tzinfo (~> 1.1)
15
+ ast (2.4.2)
16
+ base64 (0.1.1)
17
+ concurrent-ruby (1.2.2)
18
+ coveralls (0.8.23)
19
+ json (>= 1.8, < 3)
20
+ simplecov (~> 0.16.1)
21
+ term-ansicolor (~> 1.3)
22
+ thor (>= 0.19.4, < 2.0)
23
+ tins (~> 1.6)
24
+ docile (1.4.0)
25
+ i18n (1.14.1)
26
+ concurrent-ruby (~> 1.0)
27
+ json (2.6.3)
28
+ language_server-protocol (3.17.0.3)
29
+ lint_roller (1.1.0)
30
+ m (1.6.1)
31
+ method_source (>= 0.6.7)
32
+ rake (>= 0.9.2.2)
33
+ method_source (1.0.0)
34
+ minitest (5.19.0)
35
+ parallel (1.23.0)
36
+ parser (3.2.2.3)
37
+ ast (~> 2.4.1)
38
+ racc
39
+ racc (1.7.1)
40
+ rainbow (3.1.1)
41
+ rake (13.0.6)
42
+ regexp_parser (2.8.1)
43
+ rexml (3.2.6)
44
+ rubocop (1.56.1)
45
+ base64 (~> 0.1.1)
46
+ json (~> 2.3)
47
+ language_server-protocol (>= 3.17.0)
48
+ parallel (~> 1.10)
49
+ parser (>= 3.2.2.3)
50
+ rainbow (>= 2.2.2, < 4.0)
51
+ regexp_parser (>= 1.8, < 3.0)
52
+ rexml (>= 3.2.5, < 4.0)
53
+ rubocop-ast (>= 1.28.1, < 2.0)
54
+ ruby-progressbar (~> 1.7)
55
+ unicode-display_width (>= 2.4.0, < 3.0)
56
+ rubocop-ast (1.29.0)
57
+ parser (>= 3.2.1.0)
58
+ rubocop-performance (1.19.0)
59
+ rubocop (>= 1.7.0, < 2.0)
60
+ rubocop-ast (>= 0.4.0)
61
+ ruby-progressbar (1.13.0)
62
+ simplecov (0.16.1)
63
+ docile (~> 1.1)
64
+ json (>= 1.8, < 3)
65
+ simplecov-html (~> 0.10.0)
66
+ simplecov-html (0.10.2)
67
+ standard (1.31.0)
68
+ language_server-protocol (~> 3.17.0.2)
69
+ lint_roller (~> 1.0)
70
+ rubocop (~> 1.56.0)
71
+ standard-custom (~> 1.0.0)
72
+ standard-performance (~> 1.2)
73
+ standard-custom (1.0.2)
74
+ lint_roller (~> 1.0)
75
+ rubocop (~> 1.50)
76
+ standard-performance (1.2.0)
77
+ lint_roller (~> 1.1)
78
+ rubocop-performance (~> 1.19.0)
79
+ sync (0.5.0)
80
+ term-ansicolor (1.7.1)
81
+ tins (~> 1.0)
82
+ thor (1.2.2)
83
+ thread_safe (0.3.6)
84
+ timecop (0.9.8)
85
+ tins (1.32.1)
86
+ sync
87
+ tzinfo (1.2.11)
88
+ thread_safe (~> 0.1)
89
+ unicode-display_width (2.4.2)
90
+ yard (0.9.34)
91
+
92
+ PLATFORMS
93
+ arm64-darwin-22
94
+
95
+ DEPENDENCIES
96
+ activesupport (~> 5.2)
97
+ coveralls
98
+ m
99
+ minitest
100
+ montrose!
101
+ rake (>= 12.3.3)
102
+ standard
103
+ timecop
104
+ yard
105
+
106
+ BUNDLED WITH
107
+ 2.4.10
@@ -1,16 +1,5 @@
1
- # This file was generated by Appraisal
2
-
3
1
  source "https://rubygems.org"
4
2
 
5
- gem "activesupport", "~> 6.0.0"
6
-
7
- group :development do
8
- gem "coveralls"
9
- gem "yard"
10
- gem "guard"
11
- gem "guard-minitest"
12
- gem "guard-rubocop"
13
- gem "pry-byebug"
14
- end
3
+ gem "activesupport", "~> 6.0"
15
4
 
16
5
  gemspec path: "../"
@@ -0,0 +1,108 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ montrose (0.13.0)
5
+ activesupport (>= 5.2, < 7.1)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ activesupport (6.1.7.6)
11
+ concurrent-ruby (~> 1.0, >= 1.0.2)
12
+ i18n (>= 1.6, < 2)
13
+ minitest (>= 5.1)
14
+ tzinfo (~> 2.0)
15
+ zeitwerk (~> 2.3)
16
+ ast (2.4.2)
17
+ base64 (0.1.1)
18
+ concurrent-ruby (1.2.2)
19
+ coveralls (0.8.23)
20
+ json (>= 1.8, < 3)
21
+ simplecov (~> 0.16.1)
22
+ term-ansicolor (~> 1.3)
23
+ thor (>= 0.19.4, < 2.0)
24
+ tins (~> 1.6)
25
+ docile (1.4.0)
26
+ i18n (1.14.1)
27
+ concurrent-ruby (~> 1.0)
28
+ json (2.6.3)
29
+ language_server-protocol (3.17.0.3)
30
+ lint_roller (1.1.0)
31
+ m (1.6.1)
32
+ method_source (>= 0.6.7)
33
+ rake (>= 0.9.2.2)
34
+ method_source (1.0.0)
35
+ minitest (5.19.0)
36
+ parallel (1.23.0)
37
+ parser (3.2.2.3)
38
+ ast (~> 2.4.1)
39
+ racc
40
+ racc (1.7.1)
41
+ rainbow (3.1.1)
42
+ rake (13.0.6)
43
+ regexp_parser (2.8.1)
44
+ rexml (3.2.6)
45
+ rubocop (1.56.1)
46
+ base64 (~> 0.1.1)
47
+ json (~> 2.3)
48
+ language_server-protocol (>= 3.17.0)
49
+ parallel (~> 1.10)
50
+ parser (>= 3.2.2.3)
51
+ rainbow (>= 2.2.2, < 4.0)
52
+ regexp_parser (>= 1.8, < 3.0)
53
+ rexml (>= 3.2.5, < 4.0)
54
+ rubocop-ast (>= 1.28.1, < 2.0)
55
+ ruby-progressbar (~> 1.7)
56
+ unicode-display_width (>= 2.4.0, < 3.0)
57
+ rubocop-ast (1.29.0)
58
+ parser (>= 3.2.1.0)
59
+ rubocop-performance (1.19.0)
60
+ rubocop (>= 1.7.0, < 2.0)
61
+ rubocop-ast (>= 0.4.0)
62
+ ruby-progressbar (1.13.0)
63
+ simplecov (0.16.1)
64
+ docile (~> 1.1)
65
+ json (>= 1.8, < 3)
66
+ simplecov-html (~> 0.10.0)
67
+ simplecov-html (0.10.2)
68
+ standard (1.31.0)
69
+ language_server-protocol (~> 3.17.0.2)
70
+ lint_roller (~> 1.0)
71
+ rubocop (~> 1.56.0)
72
+ standard-custom (~> 1.0.0)
73
+ standard-performance (~> 1.2)
74
+ standard-custom (1.0.2)
75
+ lint_roller (~> 1.0)
76
+ rubocop (~> 1.50)
77
+ standard-performance (1.2.0)
78
+ lint_roller (~> 1.1)
79
+ rubocop-performance (~> 1.19.0)
80
+ sync (0.5.0)
81
+ term-ansicolor (1.7.1)
82
+ tins (~> 1.0)
83
+ thor (1.2.2)
84
+ timecop (0.9.8)
85
+ tins (1.32.1)
86
+ sync
87
+ tzinfo (2.0.6)
88
+ concurrent-ruby (~> 1.0)
89
+ unicode-display_width (2.4.2)
90
+ yard (0.9.34)
91
+ zeitwerk (2.6.11)
92
+
93
+ PLATFORMS
94
+ arm64-darwin-22
95
+
96
+ DEPENDENCIES
97
+ activesupport (~> 6.0)
98
+ coveralls
99
+ m
100
+ minitest
101
+ montrose!
102
+ rake (>= 12.3.3)
103
+ standard
104
+ timecop
105
+ yard
106
+
107
+ BUNDLED WITH
108
+ 2.4.10
@@ -1,16 +1,5 @@
1
- # This file was generated by Appraisal
2
-
3
1
  source "https://rubygems.org"
4
2
 
5
- gem "activesupport", "~> 6.1.0"
6
-
7
- group :development do
8
- gem "coveralls"
9
- gem "yard"
10
- gem "guard"
11
- gem "guard-minitest"
12
- gem "guard-rubocop"
13
- gem "pry-byebug"
14
- end
3
+ gem "activesupport", "~> 6.1"
15
4
 
16
5
  gemspec path: "../"