forked from formtastic/formtastic
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bumped gem version to 0.1.8, which includes three major changes:
* new check boxes input (:as => :check_boxes) as an alternative to the default multi-select for has_many and habtm associations * new country input (:as => :country), a wrapper around any plugin that provides a country_select helper with the ame API as the "official" Rails plugin * a bug fix where hidden inputs were being added as child elements of an ordered list <ol>, which is obviously poorly formed markup
- Loading branch information
1 parent
ec7df90
commit fb507a2
Showing
2 changed files
with
27 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
--- | ||
:major: 0 | ||
:minor: 1 | ||
:patch: 7 | ||
:patch: 8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,26 +2,44 @@ | |
|
||
Gem::Specification.new do |s| | ||
s.name = %q{formtastic} | ||
s.version = "0.1.7" | ||
s.version = "0.1.8" | ||
|
||
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= | ||
s.authors = ["Justin French"] | ||
s.autorequire = %q{formtastic} | ||
s.date = %q{2009-04-22} | ||
s.date = %q{2009-05-17} | ||
s.description = %q{A Rails form builder plugin/gem with semantically rich and accessible markup} | ||
s.email = %q{[email protected]} | ||
s.extra_rdoc_files = ["README.textile"] | ||
s.files = ["MIT-LICENSE", "README.textile", "Rakefile", "rails/init.rb", "lib/formtastic.rb", "lib/justin_french", "lib/justin_french/formtastic.rb", "lib/locale", "lib/locale/en.yml", "generators/formtastic_stylesheets", "generators/formtastic_stylesheets/formtastic_stylesheets_generator.rb", "generators/formtastic_stylesheets/templates", "generators/formtastic_stylesheets/templates/formtastic.css", "generators/formtastic_stylesheets/templates/formtastic_changes.css", "spec/formtastic_spec.rb", "spec/test_helper.rb"] | ||
s.has_rdoc = true | ||
s.extra_rdoc_files = [ | ||
"README.textile" | ||
] | ||
s.files = [ | ||
"MIT-LICENSE", | ||
"README.textile", | ||
"Rakefile", | ||
"generators/formtastic_stylesheets/formtastic_stylesheets_generator.rb", | ||
"generators/formtastic_stylesheets/templates/formtastic.css", | ||
"generators/formtastic_stylesheets/templates/formtastic_changes.css", | ||
"lib/formtastic.rb", | ||
"lib/justin_french/formtastic.rb", | ||
"lib/locale/en.yml", | ||
"rails/init.rb", | ||
"spec/formtastic_spec.rb", | ||
"spec/test_helper.rb" | ||
] | ||
s.homepage = %q{http://github.com/justinfrench/formtastic/tree/master} | ||
s.rdoc_options = ["--inline-source", "--charset=UTF-8"] | ||
s.rdoc_options = ["--charset=UTF-8"] | ||
s.require_paths = ["lib"] | ||
s.rubygems_version = %q{1.3.1} | ||
s.rubygems_version = %q{1.3.3} | ||
s.summary = %q{A Rails form builder plugin/gem with semantically rich and accessible markup} | ||
s.test_files = [ | ||
"spec/formtastic_spec.rb", | ||
"spec/test_helper.rb" | ||
] | ||
|
||
if s.respond_to? :specification_version then | ||
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION | ||
s.specification_version = 2 | ||
s.specification_version = 3 | ||
|
||
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then | ||
else | ||
|