public
Description: A Rails form builder plugin with semantically rich and accessible markup. It's deliciously close to 1.0!
Homepage:
Clone URL: git://github.com/justinfrench/formtastic.git
Click here to lend your support to: formtastic and make a donation at www.pledgie.com !
jgdavey (author)
Sun Oct 25 10:04:33 -0700 2009
justinfrench (committer)
Mon Oct 26 14:26:40 -0700 2009
formtastic / formtastic.gemspec
100644 101 lines (88 sloc) 3.271 kb
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# Generated by jeweler
# DO NOT EDIT THIS FILE
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
# -*- encoding: utf-8 -*-
 
Gem::Specification.new do |s|
  s.name = %q{formtastic}
  s.version = "0.9.1"
 
  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-10-27}
  s.description = %q{A Rails form builder plugin/gem with semantically rich and accessible markup}
  s.email = %q{justin@indent.com.au}
  s.extra_rdoc_files = [
    "README.textile"
  ]
  s.files = [
    "MIT-LICENSE",
     "README.textile",
     "Rakefile",
     "generators/form/USAGE",
     "generators/form/form_generator.rb",
     "generators/form/templates/view__form.html.erb",
     "generators/form/templates/view__form.html.haml",
     "generators/formtastic/formtastic_generator.rb",
     "generators/formtastic/templates/formtastic.css",
     "generators/formtastic/templates/formtastic.rb",
     "generators/formtastic/templates/formtastic_changes.css",
     "generators/formtastic_stylesheets/formtastic_stylesheets_generator.rb",
     "lib/formtastic.rb",
     "lib/locale/en.yml",
     "rails/init.rb",
     "spec/buttons_spec.rb",
     "spec/commit_button_spec.rb",
     "spec/custom_builder_spec.rb",
     "spec/error_proc_spec.rb",
     "spec/errors_spec.rb",
     "spec/form_helper_spec.rb",
     "spec/include_blank_spec.rb",
     "spec/input_spec.rb",
     "spec/inputs_spec.rb",
     "spec/label_spec.rb",
     "spec/semantic_fields_for_spec.rb",
     "spec/test_helper.rb"
  ]
  s.homepage = %q{http://github.com/justinfrench/formtastic/tree/master}
  s.post_install_message = %q{
========================================================================
 
Thanks for installing Formtastic!
You can now (optionally) run the generater to copy some stylesheets and
a config initializer into your application:
./script/generate formtastic
The following files will be added:
RAILS_ROOT/public/stylesheets/formtastic.css
RAILS_ROOT/public/stylesheets/formtastic_changes.css
RAILS_ROOT/config/initializers/formtastic.rb
Find out more and get involved:
 
http://github.com/justinfrench/formtastic
http://groups.google.com.au/group/formtastic
========================================================================
}
  s.rdoc_options = ["--charset=UTF-8"]
  s.require_paths = ["lib"]
  s.rubygems_version = %q{1.3.5}
  s.summary = %q{A Rails form builder plugin/gem with semantically rich and accessible markup}
  s.test_files = [
    "spec/buttons_spec.rb",
     "spec/commit_button_spec.rb",
     "spec/custom_builder_spec.rb",
     "spec/error_proc_spec.rb",
     "spec/errors_spec.rb",
     "spec/form_helper_spec.rb",
     "spec/include_blank_spec.rb",
     "spec/input_spec.rb",
     "spec/inputs_spec.rb",
     "spec/label_spec.rb",
     "spec/semantic_fields_for_spec.rb",
     "spec/test_helper.rb"
  ]
 
  if s.respond_to? :specification_version then
    current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
    s.specification_version = 3
 
    if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
    else
    end
  else
  end
end