deprecation_toolkit 1.5.1 → 2.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +50 -0
- data/.github/workflows/cla.yml +26 -0
- data/.rubocop.yml +3 -3
- data/CHANGELOG.md +21 -1
- data/Gemfile +11 -4
- data/Gemfile.lock +47 -45
- data/README.md +11 -9
- data/RELEASE.md +21 -0
- data/deprecation_toolkit.gemspec +6 -11
- data/gemfiles/activesupport_5.2.gemfile +2 -8
- data/gemfiles/activesupport_6.0.gemfile +2 -8
- data/gemfiles/activesupport_6.1.gemfile +5 -0
- data/gemfiles/activesupport_7.0.gemfile +5 -0
- data/gemfiles/activesupport_edge.gemfile +5 -0
- data/lib/deprecation_toolkit/behaviors/ci_record_helper.rb +2 -2
- data/lib/deprecation_toolkit/collector.rb +1 -1
- data/lib/deprecation_toolkit/deprecation_subscriber.rb +1 -1
- data/lib/deprecation_toolkit/rspec_plugin.rb +1 -1
- data/lib/deprecation_toolkit/version.rb +1 -1
- data/lib/deprecation_toolkit/warning.rb +11 -36
- data/lib/deprecation_toolkit.rb +29 -15
- data/lib/minitest/deprecation_toolkit_plugin.rb +3 -2
- data/lib/tasks/ci_recorder.rake +10 -9
- data/spec/deprecation_toolkit/behaviors/disabled_spec.rb +2 -2
- data/spec/deprecation_toolkit/behaviors/raise_spec.rb +4 -4
- data/spec/deprecation_toolkit/behaviors/record_spec.rb +1 -1
- data/spec/rspec/plugin_env_options_spec.rb +3 -3
- data/spec/rspec/plugin_spec.rb +1 -1
- metadata +13 -65
- data/.rubocop-https---shopify-github-io-ruby-style-guide-rubocop-yml +0 -1017
- data/.travis.yml +0 -18
data/.travis.yml
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
sudo: false
|
2
|
-
cache: bundler
|
3
|
-
language: ruby
|
4
|
-
before_install:
|
5
|
-
- gem update bundler
|
6
|
-
rvm:
|
7
|
-
- 2.5
|
8
|
-
- 2.6
|
9
|
-
- 2.7
|
10
|
-
gemfile:
|
11
|
-
- gemfiles/activesupport_5.2.gemfile
|
12
|
-
- gemfiles/activesupport_6.0.gemfile
|
13
|
-
script:
|
14
|
-
- bundle exec rubocop --config .rubocop.yml
|
15
|
-
- bundle exec rake test
|
16
|
-
- bundle exec rspec
|
17
|
-
notifications:
|
18
|
-
email: false
|