├── .github └── dependabot.yml ├── .gitignore ├── .rspec ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── deprecation_tracker.md ├── dev.yml ├── exe ├── bundle_report ├── deprecations ├── gem-next-diff ├── next └── next.sh ├── lib ├── deprecation_tracker.rb ├── ten_years_rails.rb └── ten_years_rails │ ├── bundle_report.rb │ ├── gem_info.rb │ └── version.rb ├── overlord.yml ├── spec ├── deprecation_tracker_spec.rb ├── spec_helper.rb ├── ten_years_rails │ └── gem_info_spec.rb └── ten_years_rails_spec.rb └── ten_years_rails.gemspec /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clio/ten_years_rails/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clio/ten_years_rails/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clio/ten_years_rails/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clio/ten_years_rails/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clio/ten_years_rails/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clio/ten_years_rails/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clio/ten_years_rails/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clio/ten_years_rails/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clio/ten_years_rails/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clio/ten_years_rails/HEAD/bin/setup -------------------------------------------------------------------------------- /deprecation_tracker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clio/ten_years_rails/HEAD/deprecation_tracker.md -------------------------------------------------------------------------------- /dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clio/ten_years_rails/HEAD/dev.yml -------------------------------------------------------------------------------- /exe/bundle_report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clio/ten_years_rails/HEAD/exe/bundle_report -------------------------------------------------------------------------------- /exe/deprecations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clio/ten_years_rails/HEAD/exe/deprecations -------------------------------------------------------------------------------- /exe/gem-next-diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clio/ten_years_rails/HEAD/exe/gem-next-diff -------------------------------------------------------------------------------- /exe/next: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clio/ten_years_rails/HEAD/exe/next -------------------------------------------------------------------------------- /exe/next.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clio/ten_years_rails/HEAD/exe/next.sh -------------------------------------------------------------------------------- /lib/deprecation_tracker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clio/ten_years_rails/HEAD/lib/deprecation_tracker.rb -------------------------------------------------------------------------------- /lib/ten_years_rails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clio/ten_years_rails/HEAD/lib/ten_years_rails.rb -------------------------------------------------------------------------------- /lib/ten_years_rails/bundle_report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clio/ten_years_rails/HEAD/lib/ten_years_rails/bundle_report.rb -------------------------------------------------------------------------------- /lib/ten_years_rails/gem_info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clio/ten_years_rails/HEAD/lib/ten_years_rails/gem_info.rb -------------------------------------------------------------------------------- /lib/ten_years_rails/version.rb: -------------------------------------------------------------------------------- 1 | module TenYearsRails 2 | VERSION = "1.0.2" 3 | end 4 | -------------------------------------------------------------------------------- /overlord.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clio/ten_years_rails/HEAD/overlord.yml -------------------------------------------------------------------------------- /spec/deprecation_tracker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clio/ten_years_rails/HEAD/spec/deprecation_tracker_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clio/ten_years_rails/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/ten_years_rails/gem_info_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clio/ten_years_rails/HEAD/spec/ten_years_rails/gem_info_spec.rb -------------------------------------------------------------------------------- /spec/ten_years_rails_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clio/ten_years_rails/HEAD/spec/ten_years_rails_spec.rb -------------------------------------------------------------------------------- /ten_years_rails.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clio/ten_years_rails/HEAD/ten_years_rails.gemspec --------------------------------------------------------------------------------