update to RSpec 2, get ready to release annotate_models 2.5.0, stop using Jeweler
Showing
Gemfile
0 → 100644
gem "rake" | ||
group :development do | ||
gem "rspec" | ||
gem "rdoc" | ||
gem "mg" | ||
gem 'activesupport', '>= 2.1.0' | ||
end |
annotate_models.gemspec
0 → 100644
require './lib/annotate' | ||
Gem::Specification.new do |s| | ||
s.name = %q{annotate_models} | ||
s.version = Annotate.version # "2.5.0" | ||
s.description = %q{Annotates Rails/ActiveRecord Models, routes, fixtures, and others based on the database schema.} | ||
s.summary = %q{Annotates Rails Models, routes, fixtures, and others based on the database schema.} | ||
s.authors = ["Cuong Tran", "Alex Chaffee", "Marcos Piccinini"] | ||
s.email = ["alex@stinky.com", "ctran@pragmaquest.com", "x@nofxx.com"] | ||
s.executables = ["annotate"]# todo: change to annotate_models | ||
s.extra_rdoc_files = ["README.rdoc"] | ||
s.files = %w( README.rdoc VERSION.yml History.txt ) | ||
s.files += Dir.glob("lib/**/*") | ||
s.files += Dir.glob("tasks/**/*") | ||
s.files += ["bin/annotate"] # todo: change to annotate_models | ||
s.homepage = %q{http://github.com/ctran/annotate_models} | ||
s.rdoc_options = ["--charset=UTF-8"] | ||
s.require_paths = ["lib"] | ||
s.rubyforge_project = %q{annotate} | ||
s.add_runtime_dependency 'rake' # ? | ||
end |
Please
register
or
sign in
to comment