twitter_bootstrap-helpers 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. data/.gitignore +7 -0
  2. data/Gemfile +4 -0
  3. data/README.md +21 -0
  4. data/Rakefile +12 -0
  5. data/lib/twitter_bootstrap-helpers/form_builder.rb +71 -0
  6. data/lib/twitter_bootstrap-helpers/form_helpers.rb +14 -0
  7. data/lib/twitter_bootstrap-helpers/railtie.rb +18 -0
  8. data/lib/twitter_bootstrap-helpers/version.rb +5 -0
  9. data/lib/twitter_bootstrap-helpers/view_helpers.rb +13 -0
  10. data/lib/twitter_bootstrap-helpers.rb +3 -0
  11. data/test/dummy/Rakefile +7 -0
  12. data/test/dummy/app/assets/javascripts/application.js +15 -0
  13. data/test/dummy/app/assets/javascripts/posts.js +2 -0
  14. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  15. data/test/dummy/app/assets/stylesheets/posts.css +4 -0
  16. data/test/dummy/app/assets/stylesheets/scaffold.css +56 -0
  17. data/test/dummy/app/controllers/application_controller.rb +3 -0
  18. data/test/dummy/app/controllers/posts_controller.rb +83 -0
  19. data/test/dummy/app/helpers/application_helper.rb +2 -0
  20. data/test/dummy/app/helpers/posts_helper.rb +2 -0
  21. data/test/dummy/app/mailers/.gitkeep +0 -0
  22. data/test/dummy/app/models/.gitkeep +0 -0
  23. data/test/dummy/app/models/post.rb +3 -0
  24. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  25. data/test/dummy/app/views/posts/_form.html.erb +6 -0
  26. data/test/dummy/app/views/posts/edit.html.erb +6 -0
  27. data/test/dummy/app/views/posts/index.html.erb +27 -0
  28. data/test/dummy/app/views/posts/new.html.erb +5 -0
  29. data/test/dummy/app/views/posts/show.html.erb +20 -0
  30. data/test/dummy/config/application.rb +59 -0
  31. data/test/dummy/config/boot.rb +10 -0
  32. data/test/dummy/config/database.yml +25 -0
  33. data/test/dummy/config/environment.rb +5 -0
  34. data/test/dummy/config/environments/development.rb +37 -0
  35. data/test/dummy/config/environments/production.rb +67 -0
  36. data/test/dummy/config/environments/test.rb +37 -0
  37. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  38. data/test/dummy/config/initializers/inflections.rb +15 -0
  39. data/test/dummy/config/initializers/mime_types.rb +5 -0
  40. data/test/dummy/config/initializers/secret_token.rb +7 -0
  41. data/test/dummy/config/initializers/session_store.rb +8 -0
  42. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  43. data/test/dummy/config/locales/en.yml +5 -0
  44. data/test/dummy/config/routes.rb +4 -0
  45. data/test/dummy/config.ru +4 -0
  46. data/test/dummy/db/migrate/20120730030024_create_posts.rb +11 -0
  47. data/test/dummy/db/schema.rb +24 -0
  48. data/test/dummy/lib/assets/.gitkeep +0 -0
  49. data/test/dummy/log/.gitkeep +0 -0
  50. data/test/dummy/public/404.html +26 -0
  51. data/test/dummy/public/422.html +26 -0
  52. data/test/dummy/public/500.html +25 -0
  53. data/test/dummy/public/favicon.ico +0 -0
  54. data/test/dummy/script/rails +6 -0
  55. data/test/integration/navigation_test.rb +13 -0
  56. data/test/support/integration_case.rb +5 -0
  57. data/test/test_helper.rb +18 -0
  58. data/test/twitter_bootstrap-helpers_test.rb +85 -0
  59. data/twitter_bootstrap-helpers.gemspec +24 -0
  60. metadata +200 -0
metadata ADDED
@@ -0,0 +1,200 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: twitter_bootstrap-helpers
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Brian Boughton
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-07-30 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rails
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - '='
20
+ - !ruby/object:Gem::Version
21
+ version: 3.2.0
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - '='
28
+ - !ruby/object:Gem::Version
29
+ version: 3.2.0
30
+ - !ruby/object:Gem::Dependency
31
+ name: capybara
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: 0.4.0
38
+ type: :development
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: 0.4.0
46
+ - !ruby/object:Gem::Dependency
47
+ name: sqlite3
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ description: View Helpers for Twitter Bootstrap
63
+ email:
64
+ - brian@brianboughton.com
65
+ executables: []
66
+ extensions: []
67
+ extra_rdoc_files: []
68
+ files:
69
+ - .gitignore
70
+ - Gemfile
71
+ - README.md
72
+ - Rakefile
73
+ - lib/twitter_bootstrap-helpers.rb
74
+ - lib/twitter_bootstrap-helpers/form_builder.rb
75
+ - lib/twitter_bootstrap-helpers/form_helpers.rb
76
+ - lib/twitter_bootstrap-helpers/railtie.rb
77
+ - lib/twitter_bootstrap-helpers/version.rb
78
+ - lib/twitter_bootstrap-helpers/view_helpers.rb
79
+ - test/dummy/Rakefile
80
+ - test/dummy/app/assets/javascripts/application.js
81
+ - test/dummy/app/assets/javascripts/posts.js
82
+ - test/dummy/app/assets/stylesheets/application.css
83
+ - test/dummy/app/assets/stylesheets/posts.css
84
+ - test/dummy/app/assets/stylesheets/scaffold.css
85
+ - test/dummy/app/controllers/application_controller.rb
86
+ - test/dummy/app/controllers/posts_controller.rb
87
+ - test/dummy/app/helpers/application_helper.rb
88
+ - test/dummy/app/helpers/posts_helper.rb
89
+ - test/dummy/app/mailers/.gitkeep
90
+ - test/dummy/app/models/.gitkeep
91
+ - test/dummy/app/models/post.rb
92
+ - test/dummy/app/views/layouts/application.html.erb
93
+ - test/dummy/app/views/posts/_form.html.erb
94
+ - test/dummy/app/views/posts/edit.html.erb
95
+ - test/dummy/app/views/posts/index.html.erb
96
+ - test/dummy/app/views/posts/new.html.erb
97
+ - test/dummy/app/views/posts/show.html.erb
98
+ - test/dummy/config.ru
99
+ - test/dummy/config/application.rb
100
+ - test/dummy/config/boot.rb
101
+ - test/dummy/config/database.yml
102
+ - test/dummy/config/environment.rb
103
+ - test/dummy/config/environments/development.rb
104
+ - test/dummy/config/environments/production.rb
105
+ - test/dummy/config/environments/test.rb
106
+ - test/dummy/config/initializers/backtrace_silencers.rb
107
+ - test/dummy/config/initializers/inflections.rb
108
+ - test/dummy/config/initializers/mime_types.rb
109
+ - test/dummy/config/initializers/secret_token.rb
110
+ - test/dummy/config/initializers/session_store.rb
111
+ - test/dummy/config/initializers/wrap_parameters.rb
112
+ - test/dummy/config/locales/en.yml
113
+ - test/dummy/config/routes.rb
114
+ - test/dummy/db/migrate/20120730030024_create_posts.rb
115
+ - test/dummy/db/schema.rb
116
+ - test/dummy/lib/assets/.gitkeep
117
+ - test/dummy/log/.gitkeep
118
+ - test/dummy/public/404.html
119
+ - test/dummy/public/422.html
120
+ - test/dummy/public/500.html
121
+ - test/dummy/public/favicon.ico
122
+ - test/dummy/script/rails
123
+ - test/integration/navigation_test.rb
124
+ - test/support/integration_case.rb
125
+ - test/test_helper.rb
126
+ - test/twitter_bootstrap-helpers_test.rb
127
+ - twitter_bootstrap-helpers.gemspec
128
+ homepage: ''
129
+ licenses: []
130
+ post_install_message:
131
+ rdoc_options: []
132
+ require_paths:
133
+ - lib
134
+ required_ruby_version: !ruby/object:Gem::Requirement
135
+ none: false
136
+ requirements:
137
+ - - ! '>='
138
+ - !ruby/object:Gem::Version
139
+ version: '0'
140
+ required_rubygems_version: !ruby/object:Gem::Requirement
141
+ none: false
142
+ requirements:
143
+ - - ! '>='
144
+ - !ruby/object:Gem::Version
145
+ version: '0'
146
+ requirements: []
147
+ rubyforge_project: twitter_bootstrap-helpers
148
+ rubygems_version: 1.8.24
149
+ signing_key:
150
+ specification_version: 3
151
+ summary: View Helpers for Twitter Bootstrap
152
+ test_files:
153
+ - test/dummy/Rakefile
154
+ - test/dummy/app/assets/javascripts/application.js
155
+ - test/dummy/app/assets/javascripts/posts.js
156
+ - test/dummy/app/assets/stylesheets/application.css
157
+ - test/dummy/app/assets/stylesheets/posts.css
158
+ - test/dummy/app/assets/stylesheets/scaffold.css
159
+ - test/dummy/app/controllers/application_controller.rb
160
+ - test/dummy/app/controllers/posts_controller.rb
161
+ - test/dummy/app/helpers/application_helper.rb
162
+ - test/dummy/app/helpers/posts_helper.rb
163
+ - test/dummy/app/mailers/.gitkeep
164
+ - test/dummy/app/models/.gitkeep
165
+ - test/dummy/app/models/post.rb
166
+ - test/dummy/app/views/layouts/application.html.erb
167
+ - test/dummy/app/views/posts/_form.html.erb
168
+ - test/dummy/app/views/posts/edit.html.erb
169
+ - test/dummy/app/views/posts/index.html.erb
170
+ - test/dummy/app/views/posts/new.html.erb
171
+ - test/dummy/app/views/posts/show.html.erb
172
+ - test/dummy/config.ru
173
+ - test/dummy/config/application.rb
174
+ - test/dummy/config/boot.rb
175
+ - test/dummy/config/database.yml
176
+ - test/dummy/config/environment.rb
177
+ - test/dummy/config/environments/development.rb
178
+ - test/dummy/config/environments/production.rb
179
+ - test/dummy/config/environments/test.rb
180
+ - test/dummy/config/initializers/backtrace_silencers.rb
181
+ - test/dummy/config/initializers/inflections.rb
182
+ - test/dummy/config/initializers/mime_types.rb
183
+ - test/dummy/config/initializers/secret_token.rb
184
+ - test/dummy/config/initializers/session_store.rb
185
+ - test/dummy/config/initializers/wrap_parameters.rb
186
+ - test/dummy/config/locales/en.yml
187
+ - test/dummy/config/routes.rb
188
+ - test/dummy/db/migrate/20120730030024_create_posts.rb
189
+ - test/dummy/db/schema.rb
190
+ - test/dummy/lib/assets/.gitkeep
191
+ - test/dummy/log/.gitkeep
192
+ - test/dummy/public/404.html
193
+ - test/dummy/public/422.html
194
+ - test/dummy/public/500.html
195
+ - test/dummy/public/favicon.ico
196
+ - test/dummy/script/rails
197
+ - test/integration/navigation_test.rb
198
+ - test/support/integration_case.rb
199
+ - test/test_helper.rb
200
+ - test/twitter_bootstrap-helpers_test.rb