Skip to content

Commit

Permalink
Bumped gem version to 0.1.8, which includes three major changes:
Browse files Browse the repository at this point in the history
* 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
justinfrench committed May 16, 2009
1 parent ec7df90 commit fb507a2
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 9 deletions.
2 changes: 1 addition & 1 deletion VERSION.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---
:major: 0
:minor: 1
:patch: 7
:patch: 8
34 changes: 26 additions & 8 deletions formtastic.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit fb507a2

Please sign in to comment.