Merge branch 'release/v3.1.1'
Showing
.dockerignore
0 → 100644
.github/release-drafter.yml
0 → 100644
.github/workflows/ci.yml
0 → 100644
.github/workflows/release.yml
0 → 100644
CHANGELOG.md
0 → 100644
CHANGELOG.rdoc
deleted
100644 → 0
| ... | ... | @@ -2,7 +2,7 @@ source 'https://rubygems.org' |
| ruby '>= 2.2.0' | ||
| gem 'activerecord', '>= 4.2.5', require: false | ||
| gem 'activerecord', '>= 4.2.5', '< 6', require: false | ||
| gem 'rake', require: false | ||
| group :development do | ||
| ... | ... | @@ -31,11 +31,12 @@ group :development, :test do |
| platforms :mri, :mingw do | ||
| gem 'pry', require: false | ||
| gem 'pry-coolline', require: false | ||
| gem 'pry-byebug', require: false | ||
| end | ||
| end | ||
| group :test do | ||
| gem 'files', require: false | ||
| gem 'git', require: false | ||
| gem 'wrong', require: false | ||
| end |
README.md
0 → 100644
README.rdoc
deleted
100644 → 0
RELEASE.md
0 → 100644
RELEASE.rdoc
deleted
100644 → 0
TODO.rdoc
deleted
100644 → 0
| ... | ... | @@ -7,42 +7,23 @@ Gem::Specification.new do |s| |
| s.name = 'annotate' | ||
| s.version = Annotate.version | ||
| s.required_ruby_version = '>= 2.2.0' | ||
| s.required_ruby_version = '>= 2.4.0' | ||
| s.required_rubygems_version = Gem::Requirement.new('>= 0') if s.respond_to? :required_rubygems_version= | ||
| s.authors = ['Alex Chaffee', 'Cuong Tran', 'Marcos Piccinini', 'Turadg Aleahmad', 'Jon Frisby'] | ||
| s.description = 'Annotates Rails/ActiveRecord Models, routes, fixtures, and others based on the database schema.' | ||
| s.email = ['alex@stinky.com', 'cuong.tran@gmail.com', 'x@nofxx.com', 'turadg@aleahmad.net', 'jon@cloudability.com'] | ||
| s.executables = ['annotate'] | ||
| s.extra_rdoc_files = ['README.rdoc', 'CHANGELOG.rdoc', 'TODO.rdoc'] | ||
| s.files = [ | ||
| 'AUTHORS.rdoc', | ||
| 'CHANGELOG.rdoc', | ||
| 'LICENSE.txt', | ||
| 'README.rdoc', | ||
| 'TODO.rdoc', | ||
| 'annotate.gemspec', | ||
| 'bin/annotate', | ||
| 'lib/annotate.rb', | ||
| 'lib/annotate/active_record_patch.rb', | ||
| 'lib/annotate/annotate_models.rb', | ||
| 'lib/annotate/annotate_routes.rb', | ||
| 'lib/annotate/tasks.rb', | ||
| 'lib/annotate/version.rb', | ||
| 'lib/generators/annotate/USAGE', | ||
| 'lib/generators/annotate/install_generator.rb', | ||
| 'lib/generators/annotate/templates/auto_annotate_models.rake', | ||
| 'lib/tasks/annotate_models.rake', | ||
| 'lib/tasks/annotate_routes.rake', | ||
| 'lib/tasks/annotate_models_migrate.rake' | ||
| ] | ||
| s.extra_rdoc_files = ['README.md', 'CHANGELOG.md'] | ||
| s.files = `git ls-files -z LICENSE.txt *.md *.gemspec bin lib`.split("\x0") | ||
| s.homepage = 'http://github.com/ctran/annotate_models' | ||
| s.licenses = ['Ruby'] | ||
| s.require_paths = ['lib'] | ||
| s.rubyforge_project = 'annotate' | ||
| s.rubygems_version = '2.1.11' | ||
| s.summary = 'Annotates Rails Models, routes, fixtures, and others based on the database schema.' | ||
| s.specification_version = 4 if s.respond_to? :specification_version | ||
| s.add_runtime_dependency(%q<rake>, ['>= 10.4', '< 13.0']) | ||
| s.add_runtime_dependency(%q<rake>, '>= 10.4', '< 14.0') | ||
| s.add_runtime_dependency(%q<activerecord>, ['>= 3.2', '< 7.0']) | ||
| s.metadata = { "github_repo" => "ssh://github.com/ctran/annotate_models" } | ||
| end |
circle.yml
deleted
100644 → 0
lib/annotate/annotate_routes/helpers.rb
0 → 100644
lib/annotate/constants.rb
0 → 100644
lib/annotate/helpers.rb
0 → 100644
lib/annotate/parser.rb
0 → 100644
spec/fixtures/database.yml
deleted
100644 → 0
spec/fixtures/rails32_boot.rb
deleted
100644 → 0
spec/fixtures/rails_328_gemfile
deleted
100644 → 0
spec/fixtures/rails_328_gemfile.lock
deleted
100644 → 0
spec/fixtures/rails_32_rails
deleted
100755 → 0
spec/fixtures/rails_32_rakefile
deleted
100644 → 0
spec/fixtures/rails_32_test.rb
deleted
100644 → 0
spec/fixtures/rvmrc.sh
deleted
100644 → 0
spec/integration/integration_helper.rb
0 → 100644
spec/integration/integration_spec.rb
deleted
100644 → 0
File deleted
spec/integration/rails_3.2.2.rb
deleted
100644 → 0
spec/integration/rails_3.2.2/.rvmrc
deleted
120000 → 0
spec/integration/rails_3.2.2/Gemfile
deleted
100644 → 0
File deleted
spec/integration/rails_3.2.8.rb
deleted
100644 → 0
spec/integration/rails_3.2.8/.rvmrc
deleted
120000 → 0
spec/integration/rails_3.2.8/Gemfile
deleted
120000 → 0
File deleted
File deleted
File deleted
File deleted
spec/integration/rails_4.1.1/Gemfile
deleted
100644 → 0
spec/integration/rails_4.2.0/Gemfile
deleted
100644 → 0
spec/integration/rails_5.2.4.1/Gemfile
0 → 100644
spec/integration/rails_5.2.4.1/Gemfile.lock
0 → 100644
File moved
spec/integration/rails_5.2.4.1/bin/bundle
0 → 100755
spec/integration/rails_5.2.4.1/bin/rails
0 → 100755
spec/integration/rails_5.2.4.1/bin/rake
0 → 100755
spec/integration/rails_5.2.4.1/bin/setup
0 → 100755
spec/integration/rails_5.2.4.1/bin/update
0 → 100755
spec/integration/rails_5.2.4.1/bin/yarn
0 → 100755
File moved
File moved
spec/integration/rails_5.2.4.1/package.json
0 → 100644
File moved
File moved
File moved
File moved
File moved
spec/integration/rails_5.2.4.1_spec.rb
0 → 100644
File moved
spec/integration/rails_6.0.2.1/.rubocop.yml
0 → 100644
spec/integration/rails_6.0.2.1/Gemfile
0 → 100644
spec/integration/rails_6.0.2.1/Gemfile.lock
0 → 100644
spec/integration/rails_6.0.2.1/bin/bundle
0 → 100755
spec/integration/rails_6.0.2.1/bin/rails
0 → 100755
spec/integration/rails_6.0.2.1/bin/rake
0 → 100755
spec/integration/rails_6.0.2.1/bin/setup
0 → 100755
spec/integration/rails_6.0.2.1/db/schema.rb
0 → 100644
File moved
File moved
spec/integration/rails_6.0.2.1/storage/.keep
0 → 100644
spec/integration/rails_6.0.2.1/tmp/.keep
0 → 100644
spec/integration/rails_6.0.2.1/vendor/.keep
0 → 100644
spec/integration/rails_6.0.2.1_spec.rb
0 → 100644
spec/integration/standalone.rb
deleted
100644 → 0
spec/integration/standalone/.rvmrc
deleted
120000 → 0
spec/integration/standalone/Gemfile
deleted
100644 → 0
File deleted
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
spec/lib/annotate/annotate_routes_spec.rb
0 → 100644
spec/lib/annotate/helpers_spec.rb
0 → 100644
spec/lib/annotate/parser_spec.rb
0 → 100644
Please
register
or
sign in
to comment