annotate.gemspec 2.01 KB
Newer Older
1 2 3
# This file is auto-generated!
# DO NOT EDIT THIS FILE DIRECTLY!
# Instead, edit the Rakefile and run 'rake gems:gemspec'.# -*- encoding: utf-8 -*-
Cuong Tran committed
4 5

Gem::Specification.new do |s|
6 7
  s.name = "annotate"
  s.version = "2.6.0.beta1"
8

9 10 11 12 13 14
  s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
  s.authors = ["Cuong Tran", "Alex Chaffee", "Marcos Piccinini", "Turadg Aleahmad", "Jon Frisby"]
  s.date = "2012-08-27"
  s.description = "Annotates Rails/ActiveRecord Models, routes, fixtures, and others based on the database schema."
  s.email = ["alex@stinky.com", "ctran@pragmaquest.com", "x@nofxx.com", "turadg@aleahmad.net", "jon@cloudability.com"]
  s.executables = ["annotate", "annotate_models", "annotate_routes"]
Jon Frisby committed
15
  s.extra_rdoc_files = ["README.rdoc", "CHANGELOG.rdoc", "TODO.rdoc"]
Dean Perry committed
16
  s.files = ["CHANGELOG.rdoc", "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/migrate.rake"]
17 18
  s.homepage = "http://github.com/ctran/annotate_models"
  s.licenses = ["Ruby"]
Cuong Tran committed
19
  s.require_paths = ["lib"]
20 21 22
  s.rubyforge_project = "annotate"
  s.rubygems_version = "1.8.24"
  s.summary = "Annotates Rails Models, routes, fixtures, and others based on the database schema."
Cuong Tran committed
23

24 25
  if s.respond_to? :specification_version then
    s.specification_version = 3
26

27 28 29 30 31 32 33 34 35 36 37 38
    if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
      s.add_runtime_dependency(%q<rake>, [">= 0.8.7"])
      s.add_runtime_dependency(%q<activerecord>, [">= 2.3.0"])
    else
      s.add_dependency(%q<rake>, [">= 0.8.7"])
      s.add_dependency(%q<activerecord>, [">= 2.3.0"])
    end
  else
    s.add_dependency(%q<rake>, [">= 0.8.7"])
    s.add_dependency(%q<activerecord>, [">= 2.3.0"])
  end
end