This repository has been archived by the owner on Oct 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 48
/
rails3-generators.gemspec
44 lines (33 loc) · 1.85 KB
/
rails3-generators.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# -*- encoding: utf-8 -*-
require File.expand_path("../lib/rails3-generators/version", __FILE__)
Gem::Specification.new do |s|
s.name = "rails3-generators"
s.version = Rails3::Generators::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Jose Valim", "Anuj Dutta", "Paul Berry", "Jeff Tucker", "Louis T.", "Jai-Gouk Kim", "Darcy Laycock", "Peter Haza", "Peter Gumeson", "Kristian Mandrup", "Alejandro Juarez"]
s.email = "[email protected]"
s.homepage = "https://github.com/indirect/rails3-generators"
s.summary = "Rails 3 compatible generators"
s.description = "Rails 3 compatible generators for gems that don't have them yet"
s.rubyforge_project = "rails3-generators"
s.required_rubygems_version = ">= 1.3.6"
s.add_dependency "railties", ">= 3.0.0"
s.add_development_dependency "bundler", ">= 1.0.0"
s.add_development_dependency "rake"
s.add_development_dependency "test-unit"
s.add_development_dependency "rails", ">= 3.0.0"
s.add_development_dependency "factory_girl"
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").select{|f| f =~ /^bin/}
s.require_path = "lib"
s.extra_rdoc_files = ["README.rdoc", "CHANGELOG.rdoc"]
s.post_install_message = %Q{
rails3-generators-#{Rails3::Generators::VERSION}
MongoMapper generators removed. MongoMapper (https://github.com/jnunemaker/mongomapper) has its own generators.
SimpleForm generators removed. SimpleForm (https://github.com/plataformatec/simple_form) has its own generators.
Formtastic generators removed. Formtastic (https://github.com/justinfrench/formtastic) has its own generators.
Authlogic generators removed. Authlogic (https://github.com/binarylogic/authlogic) has its own generators.
Be sure to check out the wiki, https://wiki.github.com/indirect/rails3-generators/,
for information about recent changes to this project.
}
end