init commit
parents
Showing
.gitignore
0 → 100644
AUTHORS.rdoc
0 → 100644
CHANGELOG.rdoc
0 → 100644
LICENSE.txt
0 → 100644
README.rdoc
0 → 100755
This diff is collapsed.
Click to expand it.
TODO.rdoc
0 → 100644
annotate.gemspec
0 → 100644
# -*- encoding: utf-8 -*- | ||
lib = File.expand_path('../lib', __FILE__) | ||
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | ||
require 'annotate/version' | ||
Gem::Specification.new do |s| | ||
s.name = "annotate" | ||
s.version = Annotate.version | ||
s.required_ruby_version = '>= 1.9.3' | ||
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/migrate.rake"] | ||
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." | ||
if s.respond_to? :specification_version then | ||
s.specification_version = 4 | ||
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then | ||
s.add_runtime_dependency(%q<rake>, [">= 10.4", "< 12.0"]) | ||
s.add_runtime_dependency(%q<activerecord>, [">= 3.2", "< 6.0"]) | ||
else | ||
s.add_dependency(%q<rake>, [">= 10.4", "< 12.0"]) | ||
s.add_dependency(%q<activerecord>, [">= 3.2", "< 6.0"]) | ||
end | ||
else | ||
s.add_dependency(%q<rake>, [">= 0.8.7"]) | ||
s.add_dependency(%q<activerecord>, [">= 3.2", "< 6.0"]) | ||
end | ||
end |
bin/annotate
0 → 100755
lib/annotate.rb
0 → 100755
lib/annotate/active_record_patch.rb
0 → 100644
lib/annotate/annotate_models.rb
0 → 100644
This diff is collapsed.
Click to expand it.
lib/annotate/annotate_routes.rb
0 → 100644
lib/annotate/tasks.rb
0 → 100644
lib/annotate/version.rb
0 → 100644
lib/generators/annotate/USAGE
0 → 100644
lib/generators/annotate/install_generator.rb
0 → 100644
lib/tasks/annotate_models.rake
0 → 100644
lib/tasks/annotate_routes.rake
0 → 100644
lib/tasks/migrate.rake
0 → 100644
Please
register
or
sign in
to comment