flockonus-nifty-generators 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (199) hide show
  1. data/CHANGELOG +194 -0
  2. data/Gemfile +2 -0
  3. data/LICENSE +20 -0
  4. data/README.rdoc +75 -0
  5. data/Rakefile +10 -0
  6. data/features/nifty_authentication.feature +80 -0
  7. data/features/nifty_config.feature +17 -0
  8. data/features/nifty_layout.feature +20 -0
  9. data/features/nifty_scaffold.feature +74 -0
  10. data/features/step_definitions/common_steps.rb +62 -0
  11. data/features/step_definitions/rails_setup_steps.rb +6 -0
  12. data/features/support/env.rb +6 -0
  13. data/features/support/matchers.rb +7 -0
  14. data/lib/generators/nifty/authentication/USAGE +50 -0
  15. data/lib/generators/nifty/authentication/authentication_generator.rb +154 -0
  16. data/lib/generators/nifty/authentication/templates/authlogic_session.rb +2 -0
  17. data/lib/generators/nifty/authentication/templates/controller_authentication.rb +60 -0
  18. data/lib/generators/nifty/authentication/templates/fixtures.yml +24 -0
  19. data/lib/generators/nifty/authentication/templates/migration.rb +20 -0
  20. data/lib/generators/nifty/authentication/templates/sessions_controller.rb +41 -0
  21. data/lib/generators/nifty/authentication/templates/sessions_helper.rb +2 -0
  22. data/lib/generators/nifty/authentication/templates/tests/rspec/sessions_controller.rb +39 -0
  23. data/lib/generators/nifty/authentication/templates/tests/rspec/user.rb +83 -0
  24. data/lib/generators/nifty/authentication/templates/tests/rspec/users_controller.rb +56 -0
  25. data/lib/generators/nifty/authentication/templates/tests/shoulda/sessions_controller.rb +40 -0
  26. data/lib/generators/nifty/authentication/templates/tests/shoulda/user.rb +85 -0
  27. data/lib/generators/nifty/authentication/templates/tests/shoulda/users_controller.rb +61 -0
  28. data/lib/generators/nifty/authentication/templates/tests/testunit/sessions_controller.rb +36 -0
  29. data/lib/generators/nifty/authentication/templates/tests/testunit/user.rb +88 -0
  30. data/lib/generators/nifty/authentication/templates/tests/testunit/users_controller.rb +53 -0
  31. data/lib/generators/nifty/authentication/templates/user.rb +38 -0
  32. data/lib/generators/nifty/authentication/templates/users_controller.rb +32 -0
  33. data/lib/generators/nifty/authentication/templates/users_helper.rb +2 -0
  34. data/lib/generators/nifty/authentication/templates/views/erb/_form.html.erb +20 -0
  35. data/lib/generators/nifty/authentication/templates/views/erb/edit.html.erb +3 -0
  36. data/lib/generators/nifty/authentication/templates/views/erb/login.html.erb +30 -0
  37. data/lib/generators/nifty/authentication/templates/views/erb/signup.html.erb +5 -0
  38. data/lib/generators/nifty/authentication/templates/views/haml/_form.html.haml +20 -0
  39. data/lib/generators/nifty/authentication/templates/views/haml/edit.html.haml +3 -0
  40. data/lib/generators/nifty/authentication/templates/views/haml/login.html.haml +30 -0
  41. data/lib/generators/nifty/authentication/templates/views/haml/signup.html.haml +5 -0
  42. data/lib/generators/nifty/config/USAGE +23 -0
  43. data/lib/generators/nifty/config/config_generator.rb +24 -0
  44. data/lib/generators/nifty/config/templates/config.yml +8 -0
  45. data/lib/generators/nifty/config/templates/load_config.rb +2 -0
  46. data/lib/generators/nifty/layout/USAGE +25 -0
  47. data/lib/generators/nifty/layout/layout_generator.rb +30 -0
  48. data/lib/generators/nifty/layout/templates/char_limit_form.js +36 -0
  49. data/lib/generators/nifty/layout/templates/error_messages_helper.rb +23 -0
  50. data/lib/generators/nifty/layout/templates/layout.html.erb +19 -0
  51. data/lib/generators/nifty/layout/templates/layout.html.haml +21 -0
  52. data/lib/generators/nifty/layout/templates/layout_helper.rb +22 -0
  53. data/lib/generators/nifty/layout/templates/stylesheet.css +92 -0
  54. data/lib/generators/nifty/layout/templates/stylesheet.sass +66 -0
  55. data/lib/generators/nifty/scaffold/USAGE +51 -0
  56. data/lib/generators/nifty/scaffold/scaffold_generator.rb +319 -0
  57. data/lib/generators/nifty/scaffold/templates/actions/create.rb +8 -0
  58. data/lib/generators/nifty/scaffold/templates/actions/destroy.rb +5 -0
  59. data/lib/generators/nifty/scaffold/templates/actions/edit.rb +3 -0
  60. data/lib/generators/nifty/scaffold/templates/actions/index.rb +3 -0
  61. data/lib/generators/nifty/scaffold/templates/actions/new.rb +3 -0
  62. data/lib/generators/nifty/scaffold/templates/actions/show.rb +3 -0
  63. data/lib/generators/nifty/scaffold/templates/actions/update.rb +8 -0
  64. data/lib/generators/nifty/scaffold/templates/controller.rb +3 -0
  65. data/lib/generators/nifty/scaffold/templates/fixtures.yml +9 -0
  66. data/lib/generators/nifty/scaffold/templates/helper.rb +2 -0
  67. data/lib/generators/nifty/scaffold/templates/migration.rb +16 -0
  68. data/lib/generators/nifty/scaffold/templates/model.rb +4 -0
  69. data/lib/generators/nifty/scaffold/templates/tests/rspec/actions/create.rb +11 -0
  70. data/lib/generators/nifty/scaffold/templates/tests/rspec/actions/destroy.rb +6 -0
  71. data/lib/generators/nifty/scaffold/templates/tests/rspec/actions/edit.rb +4 -0
  72. data/lib/generators/nifty/scaffold/templates/tests/rspec/actions/index.rb +4 -0
  73. data/lib/generators/nifty/scaffold/templates/tests/rspec/actions/new.rb +4 -0
  74. data/lib/generators/nifty/scaffold/templates/tests/rspec/actions/show.rb +4 -0
  75. data/lib/generators/nifty/scaffold/templates/tests/rspec/actions/update.rb +11 -0
  76. data/lib/generators/nifty/scaffold/templates/tests/rspec/controller.rb +8 -0
  77. data/lib/generators/nifty/scaffold/templates/tests/rspec/model.rb +7 -0
  78. data/lib/generators/nifty/scaffold/templates/tests/shoulda/actions/create.rb +13 -0
  79. data/lib/generators/nifty/scaffold/templates/tests/shoulda/actions/destroy.rb +8 -0
  80. data/lib/generators/nifty/scaffold/templates/tests/shoulda/actions/edit.rb +6 -0
  81. data/lib/generators/nifty/scaffold/templates/tests/shoulda/actions/index.rb +6 -0
  82. data/lib/generators/nifty/scaffold/templates/tests/shoulda/actions/new.rb +6 -0
  83. data/lib/generators/nifty/scaffold/templates/tests/shoulda/actions/show.rb +6 -0
  84. data/lib/generators/nifty/scaffold/templates/tests/shoulda/actions/update.rb +13 -0
  85. data/lib/generators/nifty/scaffold/templates/tests/shoulda/controller.rb +5 -0
  86. data/lib/generators/nifty/scaffold/templates/tests/shoulda/model.rb +7 -0
  87. data/lib/generators/nifty/scaffold/templates/tests/testunit/actions/create.rb +11 -0
  88. data/lib/generators/nifty/scaffold/templates/tests/testunit/actions/destroy.rb +6 -0
  89. data/lib/generators/nifty/scaffold/templates/tests/testunit/actions/edit.rb +4 -0
  90. data/lib/generators/nifty/scaffold/templates/tests/testunit/actions/index.rb +4 -0
  91. data/lib/generators/nifty/scaffold/templates/tests/testunit/actions/new.rb +4 -0
  92. data/lib/generators/nifty/scaffold/templates/tests/testunit/actions/show.rb +4 -0
  93. data/lib/generators/nifty/scaffold/templates/tests/testunit/actions/update.rb +11 -0
  94. data/lib/generators/nifty/scaffold/templates/tests/testunit/controller.rb +5 -0
  95. data/lib/generators/nifty/scaffold/templates/tests/testunit/model.rb +7 -0
  96. data/lib/generators/nifty/scaffold/templates/views/erb/_form.html.erb +13 -0
  97. data/lib/generators/nifty/scaffold/templates/views/erb/edit.html.erb +14 -0
  98. data/lib/generators/nifty/scaffold/templates/views/erb/index.html.erb +29 -0
  99. data/lib/generators/nifty/scaffold/templates/views/erb/new.html.erb +7 -0
  100. data/lib/generators/nifty/scaffold/templates/views/erb/show.html.erb +20 -0
  101. data/lib/generators/nifty/scaffold/templates/views/haml/_form.html.haml +10 -0
  102. data/lib/generators/nifty/scaffold/templates/views/haml/edit.html.haml +14 -0
  103. data/lib/generators/nifty/scaffold/templates/views/haml/index.html.haml +25 -0
  104. data/lib/generators/nifty/scaffold/templates/views/haml/new.html.haml +7 -0
  105. data/lib/generators/nifty/scaffold/templates/views/haml/show.html.haml +20 -0
  106. data/lib/generators/nifty.rb +28 -0
  107. data/rails_generators/nifty_authentication/USAGE +50 -0
  108. data/rails_generators/nifty_authentication/lib/insert_commands.rb +74 -0
  109. data/rails_generators/nifty_authentication/nifty_authentication_generator.rb +128 -0
  110. data/rails_generators/nifty_authentication/templates/authentication.rb +61 -0
  111. data/rails_generators/nifty_authentication/templates/authlogic_session.rb +2 -0
  112. data/rails_generators/nifty_authentication/templates/fixtures.yml +24 -0
  113. data/rails_generators/nifty_authentication/templates/migration.rb +20 -0
  114. data/rails_generators/nifty_authentication/templates/sessions_controller.rb +45 -0
  115. data/rails_generators/nifty_authentication/templates/sessions_helper.rb +2 -0
  116. data/rails_generators/nifty_authentication/templates/tests/rspec/sessions_controller.rb +39 -0
  117. data/rails_generators/nifty_authentication/templates/tests/rspec/user.rb +83 -0
  118. data/rails_generators/nifty_authentication/templates/tests/rspec/users_controller.rb +26 -0
  119. data/rails_generators/nifty_authentication/templates/tests/shoulda/sessions_controller.rb +40 -0
  120. data/rails_generators/nifty_authentication/templates/tests/shoulda/user.rb +85 -0
  121. data/rails_generators/nifty_authentication/templates/tests/shoulda/users_controller.rb +27 -0
  122. data/rails_generators/nifty_authentication/templates/tests/testunit/sessions_controller.rb +36 -0
  123. data/rails_generators/nifty_authentication/templates/tests/testunit/user.rb +88 -0
  124. data/rails_generators/nifty_authentication/templates/tests/testunit/users_controller.rb +23 -0
  125. data/rails_generators/nifty_authentication/templates/user.rb +42 -0
  126. data/rails_generators/nifty_authentication/templates/users_controller.rb +18 -0
  127. data/rails_generators/nifty_authentication/templates/users_helper.rb +2 -0
  128. data/rails_generators/nifty_authentication/templates/views/erb/login.html.erb +30 -0
  129. data/rails_generators/nifty_authentication/templates/views/erb/signup.html.erb +24 -0
  130. data/rails_generators/nifty_authentication/templates/views/haml/login.html.haml +30 -0
  131. data/rails_generators/nifty_authentication/templates/views/haml/signup.html.haml +24 -0
  132. data/rails_generators/nifty_config/USAGE +23 -0
  133. data/rails_generators/nifty_config/nifty_config_generator.rb +32 -0
  134. data/rails_generators/nifty_config/templates/config.yml +8 -0
  135. data/rails_generators/nifty_config/templates/load_config.rb +2 -0
  136. data/rails_generators/nifty_layout/USAGE +25 -0
  137. data/rails_generators/nifty_layout/nifty_layout_generator.rb +44 -0
  138. data/rails_generators/nifty_layout/templates/helper.rb +22 -0
  139. data/rails_generators/nifty_layout/templates/layout.html.erb +22 -0
  140. data/rails_generators/nifty_layout/templates/layout.html.haml +19 -0
  141. data/rails_generators/nifty_layout/templates/stylesheet.css +97 -0
  142. data/rails_generators/nifty_layout/templates/stylesheet.sass +67 -0
  143. data/rails_generators/nifty_scaffold/USAGE +51 -0
  144. data/rails_generators/nifty_scaffold/nifty_scaffold_generator.rb +232 -0
  145. data/rails_generators/nifty_scaffold/templates/actions/create.rb +9 -0
  146. data/rails_generators/nifty_scaffold/templates/actions/destroy.rb +6 -0
  147. data/rails_generators/nifty_scaffold/templates/actions/edit.rb +3 -0
  148. data/rails_generators/nifty_scaffold/templates/actions/index.rb +3 -0
  149. data/rails_generators/nifty_scaffold/templates/actions/new.rb +3 -0
  150. data/rails_generators/nifty_scaffold/templates/actions/show.rb +3 -0
  151. data/rails_generators/nifty_scaffold/templates/actions/update.rb +9 -0
  152. data/rails_generators/nifty_scaffold/templates/controller.rb +3 -0
  153. data/rails_generators/nifty_scaffold/templates/fixtures.yml +9 -0
  154. data/rails_generators/nifty_scaffold/templates/helper.rb +2 -0
  155. data/rails_generators/nifty_scaffold/templates/migration.rb +16 -0
  156. data/rails_generators/nifty_scaffold/templates/model.rb +3 -0
  157. data/rails_generators/nifty_scaffold/templates/tests/rspec/actions/create.rb +11 -0
  158. data/rails_generators/nifty_scaffold/templates/tests/rspec/actions/destroy.rb +6 -0
  159. data/rails_generators/nifty_scaffold/templates/tests/rspec/actions/edit.rb +4 -0
  160. data/rails_generators/nifty_scaffold/templates/tests/rspec/actions/index.rb +4 -0
  161. data/rails_generators/nifty_scaffold/templates/tests/rspec/actions/new.rb +4 -0
  162. data/rails_generators/nifty_scaffold/templates/tests/rspec/actions/show.rb +4 -0
  163. data/rails_generators/nifty_scaffold/templates/tests/rspec/actions/update.rb +11 -0
  164. data/rails_generators/nifty_scaffold/templates/tests/rspec/controller.rb +8 -0
  165. data/rails_generators/nifty_scaffold/templates/tests/rspec/model.rb +7 -0
  166. data/rails_generators/nifty_scaffold/templates/tests/shoulda/actions/create.rb +13 -0
  167. data/rails_generators/nifty_scaffold/templates/tests/shoulda/actions/destroy.rb +8 -0
  168. data/rails_generators/nifty_scaffold/templates/tests/shoulda/actions/edit.rb +6 -0
  169. data/rails_generators/nifty_scaffold/templates/tests/shoulda/actions/index.rb +6 -0
  170. data/rails_generators/nifty_scaffold/templates/tests/shoulda/actions/new.rb +6 -0
  171. data/rails_generators/nifty_scaffold/templates/tests/shoulda/actions/show.rb +6 -0
  172. data/rails_generators/nifty_scaffold/templates/tests/shoulda/actions/update.rb +13 -0
  173. data/rails_generators/nifty_scaffold/templates/tests/shoulda/controller.rb +5 -0
  174. data/rails_generators/nifty_scaffold/templates/tests/shoulda/model.rb +7 -0
  175. data/rails_generators/nifty_scaffold/templates/tests/testunit/actions/create.rb +11 -0
  176. data/rails_generators/nifty_scaffold/templates/tests/testunit/actions/destroy.rb +6 -0
  177. data/rails_generators/nifty_scaffold/templates/tests/testunit/actions/edit.rb +4 -0
  178. data/rails_generators/nifty_scaffold/templates/tests/testunit/actions/index.rb +4 -0
  179. data/rails_generators/nifty_scaffold/templates/tests/testunit/actions/new.rb +4 -0
  180. data/rails_generators/nifty_scaffold/templates/tests/testunit/actions/show.rb +4 -0
  181. data/rails_generators/nifty_scaffold/templates/tests/testunit/actions/update.rb +11 -0
  182. data/rails_generators/nifty_scaffold/templates/tests/testunit/controller.rb +5 -0
  183. data/rails_generators/nifty_scaffold/templates/tests/testunit/model.rb +7 -0
  184. data/rails_generators/nifty_scaffold/templates/views/erb/_form.html.erb +10 -0
  185. data/rails_generators/nifty_scaffold/templates/views/erb/edit.html.erb +14 -0
  186. data/rails_generators/nifty_scaffold/templates/views/erb/index.html.erb +29 -0
  187. data/rails_generators/nifty_scaffold/templates/views/erb/new.html.erb +7 -0
  188. data/rails_generators/nifty_scaffold/templates/views/erb/show.html.erb +20 -0
  189. data/rails_generators/nifty_scaffold/templates/views/haml/_form.html.haml +10 -0
  190. data/rails_generators/nifty_scaffold/templates/views/haml/edit.html.haml +14 -0
  191. data/rails_generators/nifty_scaffold/templates/views/haml/index.html.haml +25 -0
  192. data/rails_generators/nifty_scaffold/templates/views/haml/new.html.haml +7 -0
  193. data/rails_generators/nifty_scaffold/templates/views/haml/show.html.haml +20 -0
  194. data/test/test_helper.rb +119 -0
  195. data/test/test_nifty_authentication_generator.rb +274 -0
  196. data/test/test_nifty_config_generator.rb +37 -0
  197. data/test/test_nifty_layout_generator.rb +42 -0
  198. data/test/test_nifty_scaffold_generator.rb +534 -0
  199. metadata +313 -0
metadata ADDED
@@ -0,0 +1,313 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: flockonus-nifty-generators
3
+ version: !ruby/object:Gem::Version
4
+ hash: 19
5
+ prerelease: false
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 6
10
+ version: 0.0.6
11
+ platform: ruby
12
+ authors:
13
+ - Fabiano PS
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2011-02-03 00:00:00 -02:00
19
+ default_executable:
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ name: rails
23
+ prerelease: false
24
+ requirement: &id001 !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ">"
28
+ - !ruby/object:Gem::Version
29
+ hash: 7
30
+ segments:
31
+ - 3
32
+ - 0
33
+ - 0
34
+ version: 3.0.0
35
+ type: :development
36
+ version_requirements: *id001
37
+ - !ruby/object:Gem::Dependency
38
+ name: bcrypt-ruby
39
+ prerelease: false
40
+ requirement: &id002 !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ hash: 15
46
+ segments:
47
+ - 2
48
+ - 1
49
+ - 2
50
+ version: 2.1.2
51
+ type: :development
52
+ version_requirements: *id002
53
+ - !ruby/object:Gem::Dependency
54
+ name: sqlite3-ruby
55
+ prerelease: false
56
+ requirement: &id003 !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ hash: 25
62
+ segments:
63
+ - 1
64
+ - 3
65
+ - 1
66
+ version: 1.3.1
67
+ type: :development
68
+ version_requirements: *id003
69
+ description: A collection of useful Rails generator scripts for scaffolding, layout files, authentication, and more.
70
+ email: fabianosoriani@gmail.com
71
+ executables: []
72
+
73
+ extensions: []
74
+
75
+ extra_rdoc_files: []
76
+
77
+ files:
78
+ - lib/generators/nifty.rb
79
+ - lib/generators/nifty/config/templates/load_config.rb
80
+ - lib/generators/nifty/config/templates/config.yml
81
+ - lib/generators/nifty/config/config_generator.rb
82
+ - lib/generators/nifty/config/USAGE
83
+ - lib/generators/nifty/scaffold/templates/controller.rb
84
+ - lib/generators/nifty/scaffold/templates/tests/shoulda/controller.rb
85
+ - lib/generators/nifty/scaffold/templates/tests/shoulda/actions/create.rb
86
+ - lib/generators/nifty/scaffold/templates/tests/shoulda/actions/update.rb
87
+ - lib/generators/nifty/scaffold/templates/tests/shoulda/actions/edit.rb
88
+ - lib/generators/nifty/scaffold/templates/tests/shoulda/actions/show.rb
89
+ - lib/generators/nifty/scaffold/templates/tests/shoulda/actions/new.rb
90
+ - lib/generators/nifty/scaffold/templates/tests/shoulda/actions/destroy.rb
91
+ - lib/generators/nifty/scaffold/templates/tests/shoulda/actions/index.rb
92
+ - lib/generators/nifty/scaffold/templates/tests/shoulda/model.rb
93
+ - lib/generators/nifty/scaffold/templates/tests/testunit/controller.rb
94
+ - lib/generators/nifty/scaffold/templates/tests/testunit/actions/create.rb
95
+ - lib/generators/nifty/scaffold/templates/tests/testunit/actions/update.rb
96
+ - lib/generators/nifty/scaffold/templates/tests/testunit/actions/edit.rb
97
+ - lib/generators/nifty/scaffold/templates/tests/testunit/actions/show.rb
98
+ - lib/generators/nifty/scaffold/templates/tests/testunit/actions/new.rb
99
+ - lib/generators/nifty/scaffold/templates/tests/testunit/actions/destroy.rb
100
+ - lib/generators/nifty/scaffold/templates/tests/testunit/actions/index.rb
101
+ - lib/generators/nifty/scaffold/templates/tests/testunit/model.rb
102
+ - lib/generators/nifty/scaffold/templates/tests/rspec/controller.rb
103
+ - lib/generators/nifty/scaffold/templates/tests/rspec/actions/create.rb
104
+ - lib/generators/nifty/scaffold/templates/tests/rspec/actions/update.rb
105
+ - lib/generators/nifty/scaffold/templates/tests/rspec/actions/edit.rb
106
+ - lib/generators/nifty/scaffold/templates/tests/rspec/actions/show.rb
107
+ - lib/generators/nifty/scaffold/templates/tests/rspec/actions/new.rb
108
+ - lib/generators/nifty/scaffold/templates/tests/rspec/actions/destroy.rb
109
+ - lib/generators/nifty/scaffold/templates/tests/rspec/actions/index.rb
110
+ - lib/generators/nifty/scaffold/templates/tests/rspec/model.rb
111
+ - lib/generators/nifty/scaffold/templates/fixtures.yml
112
+ - lib/generators/nifty/scaffold/templates/actions/create.rb
113
+ - lib/generators/nifty/scaffold/templates/actions/update.rb
114
+ - lib/generators/nifty/scaffold/templates/actions/edit.rb
115
+ - lib/generators/nifty/scaffold/templates/actions/show.rb
116
+ - lib/generators/nifty/scaffold/templates/actions/new.rb
117
+ - lib/generators/nifty/scaffold/templates/actions/destroy.rb
118
+ - lib/generators/nifty/scaffold/templates/actions/index.rb
119
+ - lib/generators/nifty/scaffold/templates/migration.rb
120
+ - lib/generators/nifty/scaffold/templates/helper.rb
121
+ - lib/generators/nifty/scaffold/templates/model.rb
122
+ - lib/generators/nifty/scaffold/templates/views/haml/index.html.haml
123
+ - lib/generators/nifty/scaffold/templates/views/haml/_form.html.haml
124
+ - lib/generators/nifty/scaffold/templates/views/haml/show.html.haml
125
+ - lib/generators/nifty/scaffold/templates/views/haml/edit.html.haml
126
+ - lib/generators/nifty/scaffold/templates/views/haml/new.html.haml
127
+ - lib/generators/nifty/scaffold/templates/views/erb/new.html.erb
128
+ - lib/generators/nifty/scaffold/templates/views/erb/_form.html.erb
129
+ - lib/generators/nifty/scaffold/templates/views/erb/edit.html.erb
130
+ - lib/generators/nifty/scaffold/templates/views/erb/index.html.erb
131
+ - lib/generators/nifty/scaffold/templates/views/erb/show.html.erb
132
+ - lib/generators/nifty/scaffold/scaffold_generator.rb
133
+ - lib/generators/nifty/scaffold/USAGE
134
+ - lib/generators/nifty/layout/templates/layout.html.erb
135
+ - lib/generators/nifty/layout/templates/error_messages_helper.rb
136
+ - lib/generators/nifty/layout/templates/stylesheet.css
137
+ - lib/generators/nifty/layout/templates/stylesheet.sass
138
+ - lib/generators/nifty/layout/templates/layout_helper.rb
139
+ - lib/generators/nifty/layout/templates/char_limit_form.js
140
+ - lib/generators/nifty/layout/templates/layout.html.haml
141
+ - lib/generators/nifty/layout/USAGE
142
+ - lib/generators/nifty/layout/layout_generator.rb
143
+ - lib/generators/nifty/authentication/templates/controller_authentication.rb
144
+ - lib/generators/nifty/authentication/templates/tests/shoulda/sessions_controller.rb
145
+ - lib/generators/nifty/authentication/templates/tests/shoulda/users_controller.rb
146
+ - lib/generators/nifty/authentication/templates/tests/shoulda/user.rb
147
+ - lib/generators/nifty/authentication/templates/tests/testunit/sessions_controller.rb
148
+ - lib/generators/nifty/authentication/templates/tests/testunit/users_controller.rb
149
+ - lib/generators/nifty/authentication/templates/tests/testunit/user.rb
150
+ - lib/generators/nifty/authentication/templates/tests/rspec/sessions_controller.rb
151
+ - lib/generators/nifty/authentication/templates/tests/rspec/users_controller.rb
152
+ - lib/generators/nifty/authentication/templates/tests/rspec/user.rb
153
+ - lib/generators/nifty/authentication/templates/fixtures.yml
154
+ - lib/generators/nifty/authentication/templates/sessions_controller.rb
155
+ - lib/generators/nifty/authentication/templates/users_controller.rb
156
+ - lib/generators/nifty/authentication/templates/migration.rb
157
+ - lib/generators/nifty/authentication/templates/sessions_helper.rb
158
+ - lib/generators/nifty/authentication/templates/user.rb
159
+ - lib/generators/nifty/authentication/templates/authlogic_session.rb
160
+ - lib/generators/nifty/authentication/templates/views/haml/_form.html.haml
161
+ - lib/generators/nifty/authentication/templates/views/haml/edit.html.haml
162
+ - lib/generators/nifty/authentication/templates/views/haml/login.html.haml
163
+ - lib/generators/nifty/authentication/templates/views/haml/signup.html.haml
164
+ - lib/generators/nifty/authentication/templates/views/erb/signup.html.erb
165
+ - lib/generators/nifty/authentication/templates/views/erb/_form.html.erb
166
+ - lib/generators/nifty/authentication/templates/views/erb/edit.html.erb
167
+ - lib/generators/nifty/authentication/templates/views/erb/login.html.erb
168
+ - lib/generators/nifty/authentication/templates/users_helper.rb
169
+ - lib/generators/nifty/authentication/USAGE
170
+ - lib/generators/nifty/authentication/authentication_generator.rb
171
+ - test/test_nifty_authentication_generator.rb
172
+ - test/test_nifty_layout_generator.rb
173
+ - test/test_helper.rb
174
+ - test/test_nifty_scaffold_generator.rb
175
+ - test/test_nifty_config_generator.rb
176
+ - features/support/env.rb
177
+ - features/support/matchers.rb
178
+ - features/nifty_layout.feature
179
+ - features/nifty_authentication.feature
180
+ - features/nifty_scaffold.feature
181
+ - features/nifty_config.feature
182
+ - features/step_definitions/common_steps.rb
183
+ - features/step_definitions/rails_setup_steps.rb
184
+ - rails_generators/nifty_scaffold/templates/controller.rb
185
+ - rails_generators/nifty_scaffold/templates/tests/shoulda/controller.rb
186
+ - rails_generators/nifty_scaffold/templates/tests/shoulda/actions/create.rb
187
+ - rails_generators/nifty_scaffold/templates/tests/shoulda/actions/update.rb
188
+ - rails_generators/nifty_scaffold/templates/tests/shoulda/actions/edit.rb
189
+ - rails_generators/nifty_scaffold/templates/tests/shoulda/actions/show.rb
190
+ - rails_generators/nifty_scaffold/templates/tests/shoulda/actions/new.rb
191
+ - rails_generators/nifty_scaffold/templates/tests/shoulda/actions/destroy.rb
192
+ - rails_generators/nifty_scaffold/templates/tests/shoulda/actions/index.rb
193
+ - rails_generators/nifty_scaffold/templates/tests/shoulda/model.rb
194
+ - rails_generators/nifty_scaffold/templates/tests/testunit/controller.rb
195
+ - rails_generators/nifty_scaffold/templates/tests/testunit/actions/create.rb
196
+ - rails_generators/nifty_scaffold/templates/tests/testunit/actions/update.rb
197
+ - rails_generators/nifty_scaffold/templates/tests/testunit/actions/edit.rb
198
+ - rails_generators/nifty_scaffold/templates/tests/testunit/actions/show.rb
199
+ - rails_generators/nifty_scaffold/templates/tests/testunit/actions/new.rb
200
+ - rails_generators/nifty_scaffold/templates/tests/testunit/actions/destroy.rb
201
+ - rails_generators/nifty_scaffold/templates/tests/testunit/actions/index.rb
202
+ - rails_generators/nifty_scaffold/templates/tests/testunit/model.rb
203
+ - rails_generators/nifty_scaffold/templates/tests/rspec/controller.rb
204
+ - rails_generators/nifty_scaffold/templates/tests/rspec/actions/create.rb
205
+ - rails_generators/nifty_scaffold/templates/tests/rspec/actions/update.rb
206
+ - rails_generators/nifty_scaffold/templates/tests/rspec/actions/edit.rb
207
+ - rails_generators/nifty_scaffold/templates/tests/rspec/actions/show.rb
208
+ - rails_generators/nifty_scaffold/templates/tests/rspec/actions/new.rb
209
+ - rails_generators/nifty_scaffold/templates/tests/rspec/actions/destroy.rb
210
+ - rails_generators/nifty_scaffold/templates/tests/rspec/actions/index.rb
211
+ - rails_generators/nifty_scaffold/templates/tests/rspec/model.rb
212
+ - rails_generators/nifty_scaffold/templates/fixtures.yml
213
+ - rails_generators/nifty_scaffold/templates/actions/create.rb
214
+ - rails_generators/nifty_scaffold/templates/actions/update.rb
215
+ - rails_generators/nifty_scaffold/templates/actions/edit.rb
216
+ - rails_generators/nifty_scaffold/templates/actions/show.rb
217
+ - rails_generators/nifty_scaffold/templates/actions/new.rb
218
+ - rails_generators/nifty_scaffold/templates/actions/destroy.rb
219
+ - rails_generators/nifty_scaffold/templates/actions/index.rb
220
+ - rails_generators/nifty_scaffold/templates/migration.rb
221
+ - rails_generators/nifty_scaffold/templates/helper.rb
222
+ - rails_generators/nifty_scaffold/templates/model.rb
223
+ - rails_generators/nifty_scaffold/templates/views/haml/index.html.haml
224
+ - rails_generators/nifty_scaffold/templates/views/haml/_form.html.haml
225
+ - rails_generators/nifty_scaffold/templates/views/haml/show.html.haml
226
+ - rails_generators/nifty_scaffold/templates/views/haml/edit.html.haml
227
+ - rails_generators/nifty_scaffold/templates/views/haml/new.html.haml
228
+ - rails_generators/nifty_scaffold/templates/views/erb/new.html.erb
229
+ - rails_generators/nifty_scaffold/templates/views/erb/_form.html.erb
230
+ - rails_generators/nifty_scaffold/templates/views/erb/edit.html.erb
231
+ - rails_generators/nifty_scaffold/templates/views/erb/index.html.erb
232
+ - rails_generators/nifty_scaffold/templates/views/erb/show.html.erb
233
+ - rails_generators/nifty_scaffold/nifty_scaffold_generator.rb
234
+ - rails_generators/nifty_scaffold/USAGE
235
+ - rails_generators/nifty_layout/templates/layout.html.erb
236
+ - rails_generators/nifty_layout/templates/stylesheet.css
237
+ - rails_generators/nifty_layout/templates/stylesheet.sass
238
+ - rails_generators/nifty_layout/templates/layout.html.haml
239
+ - rails_generators/nifty_layout/templates/helper.rb
240
+ - rails_generators/nifty_layout/USAGE
241
+ - rails_generators/nifty_layout/nifty_layout_generator.rb
242
+ - rails_generators/nifty_config/templates/load_config.rb
243
+ - rails_generators/nifty_config/templates/config.yml
244
+ - rails_generators/nifty_config/USAGE
245
+ - rails_generators/nifty_config/nifty_config_generator.rb
246
+ - rails_generators/nifty_authentication/templates/tests/shoulda/sessions_controller.rb
247
+ - rails_generators/nifty_authentication/templates/tests/shoulda/users_controller.rb
248
+ - rails_generators/nifty_authentication/templates/tests/shoulda/user.rb
249
+ - rails_generators/nifty_authentication/templates/tests/testunit/sessions_controller.rb
250
+ - rails_generators/nifty_authentication/templates/tests/testunit/users_controller.rb
251
+ - rails_generators/nifty_authentication/templates/tests/testunit/user.rb
252
+ - rails_generators/nifty_authentication/templates/tests/rspec/sessions_controller.rb
253
+ - rails_generators/nifty_authentication/templates/tests/rspec/users_controller.rb
254
+ - rails_generators/nifty_authentication/templates/tests/rspec/user.rb
255
+ - rails_generators/nifty_authentication/templates/authentication.rb
256
+ - rails_generators/nifty_authentication/templates/fixtures.yml
257
+ - rails_generators/nifty_authentication/templates/sessions_controller.rb
258
+ - rails_generators/nifty_authentication/templates/users_controller.rb
259
+ - rails_generators/nifty_authentication/templates/migration.rb
260
+ - rails_generators/nifty_authentication/templates/sessions_helper.rb
261
+ - rails_generators/nifty_authentication/templates/user.rb
262
+ - rails_generators/nifty_authentication/templates/authlogic_session.rb
263
+ - rails_generators/nifty_authentication/templates/views/haml/login.html.haml
264
+ - rails_generators/nifty_authentication/templates/views/haml/signup.html.haml
265
+ - rails_generators/nifty_authentication/templates/views/erb/signup.html.erb
266
+ - rails_generators/nifty_authentication/templates/views/erb/login.html.erb
267
+ - rails_generators/nifty_authentication/templates/users_helper.rb
268
+ - rails_generators/nifty_authentication/USAGE
269
+ - rails_generators/nifty_authentication/lib/insert_commands.rb
270
+ - rails_generators/nifty_authentication/nifty_authentication_generator.rb
271
+ - CHANGELOG
272
+ - Rakefile
273
+ - Gemfile
274
+ - LICENSE
275
+ - README.rdoc
276
+ has_rdoc: true
277
+ homepage: http://github.com/flockonus/nifty-generators
278
+ licenses: []
279
+
280
+ post_install_message:
281
+ rdoc_options: []
282
+
283
+ require_paths:
284
+ - lib
285
+ required_ruby_version: !ruby/object:Gem::Requirement
286
+ none: false
287
+ requirements:
288
+ - - ">="
289
+ - !ruby/object:Gem::Version
290
+ hash: 3
291
+ segments:
292
+ - 0
293
+ version: "0"
294
+ required_rubygems_version: !ruby/object:Gem::Requirement
295
+ none: false
296
+ requirements:
297
+ - - ">="
298
+ - !ruby/object:Gem::Version
299
+ hash: 19
300
+ segments:
301
+ - 1
302
+ - 3
303
+ - 4
304
+ version: 1.3.4
305
+ requirements: []
306
+
307
+ rubyforge_project: flockonus-nifty-generators
308
+ rubygems_version: 1.3.7
309
+ signing_key:
310
+ specification_version: 3
311
+ summary: A collection of useful Rails generator scripts. Forked from ryanb
312
+ test_files: []
313
+