corntrace-nifty-generators 0.4.0

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 (193) hide show
  1. data/CHANGELOG +128 -0
  2. data/LICENSE +20 -0
  3. data/README.rdoc +104 -0
  4. data/Rakefile +18 -0
  5. data/features/nifty_authentication.feature +59 -0
  6. data/features/nifty_config.feature +17 -0
  7. data/features/nifty_layout.feature +19 -0
  8. data/features/nifty_scaffold.feature +22 -0
  9. data/features/step_definitions/common_steps.rb +37 -0
  10. data/features/step_definitions/rails_setup_steps.rb +6 -0
  11. data/features/support/env.rb +6 -0
  12. data/features/support/matchers.rb +7 -0
  13. data/lib/generators/nifty/authentication/USAGE +50 -0
  14. data/lib/generators/nifty/authentication/authentication_generator.rb +145 -0
  15. data/lib/generators/nifty/authentication/templates/authentication.rb +60 -0
  16. data/lib/generators/nifty/authentication/templates/authlogic_session.rb +2 -0
  17. data/lib/generators/nifty/authentication/templates/fixtures.yml +24 -0
  18. data/lib/generators/nifty/authentication/templates/migration.rb +20 -0
  19. data/lib/generators/nifty/authentication/templates/sessions_controller.rb +45 -0
  20. data/lib/generators/nifty/authentication/templates/sessions_helper.rb +2 -0
  21. data/lib/generators/nifty/authentication/templates/tests/rspec/sessions_controller.rb +39 -0
  22. data/lib/generators/nifty/authentication/templates/tests/rspec/user.rb +83 -0
  23. data/lib/generators/nifty/authentication/templates/tests/rspec/users_controller.rb +26 -0
  24. data/lib/generators/nifty/authentication/templates/tests/shoulda/sessions_controller.rb +40 -0
  25. data/lib/generators/nifty/authentication/templates/tests/shoulda/user.rb +85 -0
  26. data/lib/generators/nifty/authentication/templates/tests/shoulda/users_controller.rb +27 -0
  27. data/lib/generators/nifty/authentication/templates/tests/testunit/sessions_controller.rb +36 -0
  28. data/lib/generators/nifty/authentication/templates/tests/testunit/user.rb +88 -0
  29. data/lib/generators/nifty/authentication/templates/tests/testunit/users_controller.rb +23 -0
  30. data/lib/generators/nifty/authentication/templates/user.rb +42 -0
  31. data/lib/generators/nifty/authentication/templates/users_controller.rb +18 -0
  32. data/lib/generators/nifty/authentication/templates/users_helper.rb +2 -0
  33. data/lib/generators/nifty/authentication/templates/views/erb/login.html.erb +30 -0
  34. data/lib/generators/nifty/authentication/templates/views/erb/signup.html.erb +24 -0
  35. data/lib/generators/nifty/authentication/templates/views/haml/login.html.haml +30 -0
  36. data/lib/generators/nifty/authentication/templates/views/haml/signup.html.haml +24 -0
  37. data/lib/generators/nifty/config/USAGE +23 -0
  38. data/lib/generators/nifty/config/config_generator.rb +24 -0
  39. data/lib/generators/nifty/config/templates/config.yml +8 -0
  40. data/lib/generators/nifty/config/templates/load_config.rb +2 -0
  41. data/lib/generators/nifty/layout/USAGE +25 -0
  42. data/lib/generators/nifty/layout/layout_generator.rb +29 -0
  43. data/lib/generators/nifty/layout/templates/error_messages_helper.rb +23 -0
  44. data/lib/generators/nifty/layout/templates/layout.html.erb +19 -0
  45. data/lib/generators/nifty/layout/templates/layout.html.haml +21 -0
  46. data/lib/generators/nifty/layout/templates/layout_helper.rb +22 -0
  47. data/lib/generators/nifty/layout/templates/stylesheet.css +75 -0
  48. data/lib/generators/nifty/layout/templates/stylesheet.sass +66 -0
  49. data/lib/generators/nifty/scaffold/USAGE +51 -0
  50. data/lib/generators/nifty/scaffold/scaffold_generator.rb +241 -0
  51. data/lib/generators/nifty/scaffold/templates/actions/create.rb +9 -0
  52. data/lib/generators/nifty/scaffold/templates/actions/destroy.rb +6 -0
  53. data/lib/generators/nifty/scaffold/templates/actions/edit.rb +3 -0
  54. data/lib/generators/nifty/scaffold/templates/actions/index.rb +3 -0
  55. data/lib/generators/nifty/scaffold/templates/actions/new.rb +3 -0
  56. data/lib/generators/nifty/scaffold/templates/actions/show.rb +3 -0
  57. data/lib/generators/nifty/scaffold/templates/actions/update.rb +9 -0
  58. data/lib/generators/nifty/scaffold/templates/controller.rb +3 -0
  59. data/lib/generators/nifty/scaffold/templates/fixtures.yml +9 -0
  60. data/lib/generators/nifty/scaffold/templates/helper.rb +2 -0
  61. data/lib/generators/nifty/scaffold/templates/migration.rb +16 -0
  62. data/lib/generators/nifty/scaffold/templates/model.rb +3 -0
  63. data/lib/generators/nifty/scaffold/templates/tests/rspec/actions/create.rb +11 -0
  64. data/lib/generators/nifty/scaffold/templates/tests/rspec/actions/destroy.rb +6 -0
  65. data/lib/generators/nifty/scaffold/templates/tests/rspec/actions/edit.rb +4 -0
  66. data/lib/generators/nifty/scaffold/templates/tests/rspec/actions/index.rb +4 -0
  67. data/lib/generators/nifty/scaffold/templates/tests/rspec/actions/new.rb +4 -0
  68. data/lib/generators/nifty/scaffold/templates/tests/rspec/actions/show.rb +4 -0
  69. data/lib/generators/nifty/scaffold/templates/tests/rspec/actions/update.rb +11 -0
  70. data/lib/generators/nifty/scaffold/templates/tests/rspec/controller.rb +8 -0
  71. data/lib/generators/nifty/scaffold/templates/tests/rspec/model.rb +7 -0
  72. data/lib/generators/nifty/scaffold/templates/tests/shoulda/actions/create.rb +13 -0
  73. data/lib/generators/nifty/scaffold/templates/tests/shoulda/actions/destroy.rb +8 -0
  74. data/lib/generators/nifty/scaffold/templates/tests/shoulda/actions/edit.rb +6 -0
  75. data/lib/generators/nifty/scaffold/templates/tests/shoulda/actions/index.rb +6 -0
  76. data/lib/generators/nifty/scaffold/templates/tests/shoulda/actions/new.rb +6 -0
  77. data/lib/generators/nifty/scaffold/templates/tests/shoulda/actions/show.rb +6 -0
  78. data/lib/generators/nifty/scaffold/templates/tests/shoulda/actions/update.rb +13 -0
  79. data/lib/generators/nifty/scaffold/templates/tests/shoulda/controller.rb +5 -0
  80. data/lib/generators/nifty/scaffold/templates/tests/shoulda/model.rb +7 -0
  81. data/lib/generators/nifty/scaffold/templates/tests/testunit/actions/create.rb +11 -0
  82. data/lib/generators/nifty/scaffold/templates/tests/testunit/actions/destroy.rb +6 -0
  83. data/lib/generators/nifty/scaffold/templates/tests/testunit/actions/edit.rb +4 -0
  84. data/lib/generators/nifty/scaffold/templates/tests/testunit/actions/index.rb +4 -0
  85. data/lib/generators/nifty/scaffold/templates/tests/testunit/actions/new.rb +4 -0
  86. data/lib/generators/nifty/scaffold/templates/tests/testunit/actions/show.rb +4 -0
  87. data/lib/generators/nifty/scaffold/templates/tests/testunit/actions/update.rb +11 -0
  88. data/lib/generators/nifty/scaffold/templates/tests/testunit/controller.rb +5 -0
  89. data/lib/generators/nifty/scaffold/templates/tests/testunit/model.rb +7 -0
  90. data/lib/generators/nifty/scaffold/templates/views/erb/_form.html.erb +10 -0
  91. data/lib/generators/nifty/scaffold/templates/views/erb/edit.html.erb +14 -0
  92. data/lib/generators/nifty/scaffold/templates/views/erb/index.html.erb +29 -0
  93. data/lib/generators/nifty/scaffold/templates/views/erb/new.html.erb +7 -0
  94. data/lib/generators/nifty/scaffold/templates/views/erb/show.html.erb +20 -0
  95. data/lib/generators/nifty/scaffold/templates/views/haml/_form.html.haml +10 -0
  96. data/lib/generators/nifty/scaffold/templates/views/haml/edit.html.haml +14 -0
  97. data/lib/generators/nifty/scaffold/templates/views/haml/index.html.haml +25 -0
  98. data/lib/generators/nifty/scaffold/templates/views/haml/new.html.haml +7 -0
  99. data/lib/generators/nifty/scaffold/templates/views/haml/show.html.haml +20 -0
  100. data/lib/generators/nifty.rb +15 -0
  101. data/rails_generators/nifty_authentication/USAGE +50 -0
  102. data/rails_generators/nifty_authentication/lib/insert_commands.rb +74 -0
  103. data/rails_generators/nifty_authentication/nifty_authentication_generator.rb +128 -0
  104. data/rails_generators/nifty_authentication/templates/authentication.rb +61 -0
  105. data/rails_generators/nifty_authentication/templates/authlogic_session.rb +2 -0
  106. data/rails_generators/nifty_authentication/templates/fixtures.yml +24 -0
  107. data/rails_generators/nifty_authentication/templates/migration.rb +20 -0
  108. data/rails_generators/nifty_authentication/templates/sessions_controller.rb +45 -0
  109. data/rails_generators/nifty_authentication/templates/sessions_helper.rb +2 -0
  110. data/rails_generators/nifty_authentication/templates/tests/rspec/sessions_controller.rb +39 -0
  111. data/rails_generators/nifty_authentication/templates/tests/rspec/user.rb +83 -0
  112. data/rails_generators/nifty_authentication/templates/tests/rspec/users_controller.rb +26 -0
  113. data/rails_generators/nifty_authentication/templates/tests/shoulda/sessions_controller.rb +40 -0
  114. data/rails_generators/nifty_authentication/templates/tests/shoulda/user.rb +85 -0
  115. data/rails_generators/nifty_authentication/templates/tests/shoulda/users_controller.rb +27 -0
  116. data/rails_generators/nifty_authentication/templates/tests/testunit/sessions_controller.rb +36 -0
  117. data/rails_generators/nifty_authentication/templates/tests/testunit/user.rb +88 -0
  118. data/rails_generators/nifty_authentication/templates/tests/testunit/users_controller.rb +23 -0
  119. data/rails_generators/nifty_authentication/templates/user.rb +42 -0
  120. data/rails_generators/nifty_authentication/templates/users_controller.rb +18 -0
  121. data/rails_generators/nifty_authentication/templates/users_helper.rb +2 -0
  122. data/rails_generators/nifty_authentication/templates/views/erb/login.html.erb +30 -0
  123. data/rails_generators/nifty_authentication/templates/views/erb/signup.html.erb +24 -0
  124. data/rails_generators/nifty_authentication/templates/views/haml/login.html.haml +30 -0
  125. data/rails_generators/nifty_authentication/templates/views/haml/signup.html.haml +24 -0
  126. data/rails_generators/nifty_config/USAGE +23 -0
  127. data/rails_generators/nifty_config/nifty_config_generator.rb +32 -0
  128. data/rails_generators/nifty_config/templates/config.yml +8 -0
  129. data/rails_generators/nifty_config/templates/load_config.rb +2 -0
  130. data/rails_generators/nifty_layout/USAGE +25 -0
  131. data/rails_generators/nifty_layout/nifty_layout_generator.rb +44 -0
  132. data/rails_generators/nifty_layout/templates/helper.rb +22 -0
  133. data/rails_generators/nifty_layout/templates/layout.html.erb +22 -0
  134. data/rails_generators/nifty_layout/templates/layout.html.haml +19 -0
  135. data/rails_generators/nifty_layout/templates/stylesheet.css +81 -0
  136. data/rails_generators/nifty_layout/templates/stylesheet.sass +67 -0
  137. data/rails_generators/nifty_scaffold/USAGE +51 -0
  138. data/rails_generators/nifty_scaffold/nifty_scaffold_generator.rb +232 -0
  139. data/rails_generators/nifty_scaffold/templates/actions/create.rb +9 -0
  140. data/rails_generators/nifty_scaffold/templates/actions/destroy.rb +6 -0
  141. data/rails_generators/nifty_scaffold/templates/actions/edit.rb +3 -0
  142. data/rails_generators/nifty_scaffold/templates/actions/index.rb +3 -0
  143. data/rails_generators/nifty_scaffold/templates/actions/new.rb +3 -0
  144. data/rails_generators/nifty_scaffold/templates/actions/show.rb +3 -0
  145. data/rails_generators/nifty_scaffold/templates/actions/update.rb +9 -0
  146. data/rails_generators/nifty_scaffold/templates/controller.rb +3 -0
  147. data/rails_generators/nifty_scaffold/templates/fixtures.yml +9 -0
  148. data/rails_generators/nifty_scaffold/templates/helper.rb +2 -0
  149. data/rails_generators/nifty_scaffold/templates/migration.rb +16 -0
  150. data/rails_generators/nifty_scaffold/templates/model.rb +3 -0
  151. data/rails_generators/nifty_scaffold/templates/tests/rspec/actions/create.rb +11 -0
  152. data/rails_generators/nifty_scaffold/templates/tests/rspec/actions/destroy.rb +6 -0
  153. data/rails_generators/nifty_scaffold/templates/tests/rspec/actions/edit.rb +4 -0
  154. data/rails_generators/nifty_scaffold/templates/tests/rspec/actions/index.rb +4 -0
  155. data/rails_generators/nifty_scaffold/templates/tests/rspec/actions/new.rb +4 -0
  156. data/rails_generators/nifty_scaffold/templates/tests/rspec/actions/show.rb +4 -0
  157. data/rails_generators/nifty_scaffold/templates/tests/rspec/actions/update.rb +11 -0
  158. data/rails_generators/nifty_scaffold/templates/tests/rspec/controller.rb +8 -0
  159. data/rails_generators/nifty_scaffold/templates/tests/rspec/model.rb +7 -0
  160. data/rails_generators/nifty_scaffold/templates/tests/shoulda/actions/create.rb +13 -0
  161. data/rails_generators/nifty_scaffold/templates/tests/shoulda/actions/destroy.rb +8 -0
  162. data/rails_generators/nifty_scaffold/templates/tests/shoulda/actions/edit.rb +6 -0
  163. data/rails_generators/nifty_scaffold/templates/tests/shoulda/actions/index.rb +6 -0
  164. data/rails_generators/nifty_scaffold/templates/tests/shoulda/actions/new.rb +6 -0
  165. data/rails_generators/nifty_scaffold/templates/tests/shoulda/actions/show.rb +6 -0
  166. data/rails_generators/nifty_scaffold/templates/tests/shoulda/actions/update.rb +13 -0
  167. data/rails_generators/nifty_scaffold/templates/tests/shoulda/controller.rb +5 -0
  168. data/rails_generators/nifty_scaffold/templates/tests/shoulda/model.rb +7 -0
  169. data/rails_generators/nifty_scaffold/templates/tests/testunit/actions/create.rb +11 -0
  170. data/rails_generators/nifty_scaffold/templates/tests/testunit/actions/destroy.rb +6 -0
  171. data/rails_generators/nifty_scaffold/templates/tests/testunit/actions/edit.rb +4 -0
  172. data/rails_generators/nifty_scaffold/templates/tests/testunit/actions/index.rb +4 -0
  173. data/rails_generators/nifty_scaffold/templates/tests/testunit/actions/new.rb +4 -0
  174. data/rails_generators/nifty_scaffold/templates/tests/testunit/actions/show.rb +4 -0
  175. data/rails_generators/nifty_scaffold/templates/tests/testunit/actions/update.rb +11 -0
  176. data/rails_generators/nifty_scaffold/templates/tests/testunit/controller.rb +5 -0
  177. data/rails_generators/nifty_scaffold/templates/tests/testunit/model.rb +7 -0
  178. data/rails_generators/nifty_scaffold/templates/views/erb/_form.html.erb +10 -0
  179. data/rails_generators/nifty_scaffold/templates/views/erb/edit.html.erb +14 -0
  180. data/rails_generators/nifty_scaffold/templates/views/erb/index.html.erb +29 -0
  181. data/rails_generators/nifty_scaffold/templates/views/erb/new.html.erb +7 -0
  182. data/rails_generators/nifty_scaffold/templates/views/erb/show.html.erb +20 -0
  183. data/rails_generators/nifty_scaffold/templates/views/haml/_form.html.haml +10 -0
  184. data/rails_generators/nifty_scaffold/templates/views/haml/edit.html.haml +14 -0
  185. data/rails_generators/nifty_scaffold/templates/views/haml/index.html.haml +25 -0
  186. data/rails_generators/nifty_scaffold/templates/views/haml/new.html.haml +7 -0
  187. data/rails_generators/nifty_scaffold/templates/views/haml/show.html.haml +20 -0
  188. data/test/test_helper.rb +119 -0
  189. data/test/test_nifty_authentication_generator.rb +274 -0
  190. data/test/test_nifty_config_generator.rb +37 -0
  191. data/test/test_nifty_layout_generator.rb +42 -0
  192. data/test/test_nifty_scaffold_generator.rb +534 -0
  193. metadata +255 -0
metadata ADDED
@@ -0,0 +1,255 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: corntrace-nifty-generators
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 4
8
+ - 0
9
+ version: 0.4.0
10
+ platform: ruby
11
+ authors:
12
+ - Kevin Fu
13
+ autorequire:
14
+ bindir: bin
15
+ cert_chain: []
16
+
17
+ date: 2010-05-09 00:00:00 +08:00
18
+ default_executable:
19
+ dependencies: []
20
+
21
+ description: Forked from ryanb's nifty-generators .A collection of useful Rails generator scripts for scaffolding, layout files, authentication, and more.
22
+ email: corntrace@gmail.com
23
+ executables: []
24
+
25
+ extensions: []
26
+
27
+ extra_rdoc_files: []
28
+
29
+ files:
30
+ - lib/generators/nifty/authentication/authentication_generator.rb
31
+ - lib/generators/nifty/authentication/templates/authentication.rb
32
+ - lib/generators/nifty/authentication/templates/authlogic_session.rb
33
+ - lib/generators/nifty/authentication/templates/fixtures.yml
34
+ - lib/generators/nifty/authentication/templates/migration.rb
35
+ - lib/generators/nifty/authentication/templates/sessions_controller.rb
36
+ - lib/generators/nifty/authentication/templates/sessions_helper.rb
37
+ - lib/generators/nifty/authentication/templates/tests/rspec/sessions_controller.rb
38
+ - lib/generators/nifty/authentication/templates/tests/rspec/user.rb
39
+ - lib/generators/nifty/authentication/templates/tests/rspec/users_controller.rb
40
+ - lib/generators/nifty/authentication/templates/tests/shoulda/sessions_controller.rb
41
+ - lib/generators/nifty/authentication/templates/tests/shoulda/user.rb
42
+ - lib/generators/nifty/authentication/templates/tests/shoulda/users_controller.rb
43
+ - lib/generators/nifty/authentication/templates/tests/testunit/sessions_controller.rb
44
+ - lib/generators/nifty/authentication/templates/tests/testunit/user.rb
45
+ - lib/generators/nifty/authentication/templates/tests/testunit/users_controller.rb
46
+ - lib/generators/nifty/authentication/templates/user.rb
47
+ - lib/generators/nifty/authentication/templates/users_controller.rb
48
+ - lib/generators/nifty/authentication/templates/users_helper.rb
49
+ - lib/generators/nifty/authentication/templates/views/erb/login.html.erb
50
+ - lib/generators/nifty/authentication/templates/views/erb/signup.html.erb
51
+ - lib/generators/nifty/authentication/templates/views/haml/login.html.haml
52
+ - lib/generators/nifty/authentication/templates/views/haml/signup.html.haml
53
+ - lib/generators/nifty/authentication/USAGE
54
+ - lib/generators/nifty/config/config_generator.rb
55
+ - lib/generators/nifty/config/templates/config.yml
56
+ - lib/generators/nifty/config/templates/load_config.rb
57
+ - lib/generators/nifty/config/USAGE
58
+ - lib/generators/nifty/layout/layout_generator.rb
59
+ - lib/generators/nifty/layout/templates/error_messages_helper.rb
60
+ - lib/generators/nifty/layout/templates/layout.html.erb
61
+ - lib/generators/nifty/layout/templates/layout.html.haml
62
+ - lib/generators/nifty/layout/templates/layout_helper.rb
63
+ - lib/generators/nifty/layout/templates/stylesheet.css
64
+ - lib/generators/nifty/layout/templates/stylesheet.sass
65
+ - lib/generators/nifty/layout/USAGE
66
+ - lib/generators/nifty/scaffold/scaffold_generator.rb
67
+ - lib/generators/nifty/scaffold/templates/actions/create.rb
68
+ - lib/generators/nifty/scaffold/templates/actions/destroy.rb
69
+ - lib/generators/nifty/scaffold/templates/actions/edit.rb
70
+ - lib/generators/nifty/scaffold/templates/actions/index.rb
71
+ - lib/generators/nifty/scaffold/templates/actions/new.rb
72
+ - lib/generators/nifty/scaffold/templates/actions/show.rb
73
+ - lib/generators/nifty/scaffold/templates/actions/update.rb
74
+ - lib/generators/nifty/scaffold/templates/controller.rb
75
+ - lib/generators/nifty/scaffold/templates/fixtures.yml
76
+ - lib/generators/nifty/scaffold/templates/helper.rb
77
+ - lib/generators/nifty/scaffold/templates/migration.rb
78
+ - lib/generators/nifty/scaffold/templates/model.rb
79
+ - lib/generators/nifty/scaffold/templates/tests/rspec/actions/create.rb
80
+ - lib/generators/nifty/scaffold/templates/tests/rspec/actions/destroy.rb
81
+ - lib/generators/nifty/scaffold/templates/tests/rspec/actions/edit.rb
82
+ - lib/generators/nifty/scaffold/templates/tests/rspec/actions/index.rb
83
+ - lib/generators/nifty/scaffold/templates/tests/rspec/actions/new.rb
84
+ - lib/generators/nifty/scaffold/templates/tests/rspec/actions/show.rb
85
+ - lib/generators/nifty/scaffold/templates/tests/rspec/actions/update.rb
86
+ - lib/generators/nifty/scaffold/templates/tests/rspec/controller.rb
87
+ - lib/generators/nifty/scaffold/templates/tests/rspec/model.rb
88
+ - lib/generators/nifty/scaffold/templates/tests/shoulda/actions/create.rb
89
+ - lib/generators/nifty/scaffold/templates/tests/shoulda/actions/destroy.rb
90
+ - lib/generators/nifty/scaffold/templates/tests/shoulda/actions/edit.rb
91
+ - lib/generators/nifty/scaffold/templates/tests/shoulda/actions/index.rb
92
+ - lib/generators/nifty/scaffold/templates/tests/shoulda/actions/new.rb
93
+ - lib/generators/nifty/scaffold/templates/tests/shoulda/actions/show.rb
94
+ - lib/generators/nifty/scaffold/templates/tests/shoulda/actions/update.rb
95
+ - lib/generators/nifty/scaffold/templates/tests/shoulda/controller.rb
96
+ - lib/generators/nifty/scaffold/templates/tests/shoulda/model.rb
97
+ - lib/generators/nifty/scaffold/templates/tests/testunit/actions/create.rb
98
+ - lib/generators/nifty/scaffold/templates/tests/testunit/actions/destroy.rb
99
+ - lib/generators/nifty/scaffold/templates/tests/testunit/actions/edit.rb
100
+ - lib/generators/nifty/scaffold/templates/tests/testunit/actions/index.rb
101
+ - lib/generators/nifty/scaffold/templates/tests/testunit/actions/new.rb
102
+ - lib/generators/nifty/scaffold/templates/tests/testunit/actions/show.rb
103
+ - lib/generators/nifty/scaffold/templates/tests/testunit/actions/update.rb
104
+ - lib/generators/nifty/scaffold/templates/tests/testunit/controller.rb
105
+ - lib/generators/nifty/scaffold/templates/tests/testunit/model.rb
106
+ - lib/generators/nifty/scaffold/templates/views/erb/_form.html.erb
107
+ - lib/generators/nifty/scaffold/templates/views/erb/edit.html.erb
108
+ - lib/generators/nifty/scaffold/templates/views/erb/index.html.erb
109
+ - lib/generators/nifty/scaffold/templates/views/erb/new.html.erb
110
+ - lib/generators/nifty/scaffold/templates/views/erb/show.html.erb
111
+ - lib/generators/nifty/scaffold/templates/views/haml/_form.html.haml
112
+ - lib/generators/nifty/scaffold/templates/views/haml/edit.html.haml
113
+ - lib/generators/nifty/scaffold/templates/views/haml/index.html.haml
114
+ - lib/generators/nifty/scaffold/templates/views/haml/new.html.haml
115
+ - lib/generators/nifty/scaffold/templates/views/haml/show.html.haml
116
+ - lib/generators/nifty/scaffold/USAGE
117
+ - lib/generators/nifty.rb
118
+ - test/test_helper.rb
119
+ - test/test_nifty_authentication_generator.rb
120
+ - test/test_nifty_config_generator.rb
121
+ - test/test_nifty_layout_generator.rb
122
+ - test/test_nifty_scaffold_generator.rb
123
+ - features/nifty_authentication.feature
124
+ - features/nifty_config.feature
125
+ - features/nifty_layout.feature
126
+ - features/nifty_scaffold.feature
127
+ - features/step_definitions/common_steps.rb
128
+ - features/step_definitions/rails_setup_steps.rb
129
+ - features/support/env.rb
130
+ - features/support/matchers.rb
131
+ - rails_generators/nifty_authentication/lib/insert_commands.rb
132
+ - rails_generators/nifty_authentication/nifty_authentication_generator.rb
133
+ - rails_generators/nifty_authentication/templates/authentication.rb
134
+ - rails_generators/nifty_authentication/templates/authlogic_session.rb
135
+ - rails_generators/nifty_authentication/templates/fixtures.yml
136
+ - rails_generators/nifty_authentication/templates/migration.rb
137
+ - rails_generators/nifty_authentication/templates/sessions_controller.rb
138
+ - rails_generators/nifty_authentication/templates/sessions_helper.rb
139
+ - rails_generators/nifty_authentication/templates/tests/rspec/sessions_controller.rb
140
+ - rails_generators/nifty_authentication/templates/tests/rspec/user.rb
141
+ - rails_generators/nifty_authentication/templates/tests/rspec/users_controller.rb
142
+ - rails_generators/nifty_authentication/templates/tests/shoulda/sessions_controller.rb
143
+ - rails_generators/nifty_authentication/templates/tests/shoulda/user.rb
144
+ - rails_generators/nifty_authentication/templates/tests/shoulda/users_controller.rb
145
+ - rails_generators/nifty_authentication/templates/tests/testunit/sessions_controller.rb
146
+ - rails_generators/nifty_authentication/templates/tests/testunit/user.rb
147
+ - rails_generators/nifty_authentication/templates/tests/testunit/users_controller.rb
148
+ - rails_generators/nifty_authentication/templates/user.rb
149
+ - rails_generators/nifty_authentication/templates/users_controller.rb
150
+ - rails_generators/nifty_authentication/templates/users_helper.rb
151
+ - rails_generators/nifty_authentication/templates/views/erb/login.html.erb
152
+ - rails_generators/nifty_authentication/templates/views/erb/signup.html.erb
153
+ - rails_generators/nifty_authentication/templates/views/haml/login.html.haml
154
+ - rails_generators/nifty_authentication/templates/views/haml/signup.html.haml
155
+ - rails_generators/nifty_authentication/USAGE
156
+ - rails_generators/nifty_config/nifty_config_generator.rb
157
+ - rails_generators/nifty_config/templates/config.yml
158
+ - rails_generators/nifty_config/templates/load_config.rb
159
+ - rails_generators/nifty_config/USAGE
160
+ - rails_generators/nifty_layout/nifty_layout_generator.rb
161
+ - rails_generators/nifty_layout/templates/helper.rb
162
+ - rails_generators/nifty_layout/templates/layout.html.erb
163
+ - rails_generators/nifty_layout/templates/layout.html.haml
164
+ - rails_generators/nifty_layout/templates/stylesheet.css
165
+ - rails_generators/nifty_layout/templates/stylesheet.sass
166
+ - rails_generators/nifty_layout/USAGE
167
+ - rails_generators/nifty_scaffold/nifty_scaffold_generator.rb
168
+ - rails_generators/nifty_scaffold/templates/actions/create.rb
169
+ - rails_generators/nifty_scaffold/templates/actions/destroy.rb
170
+ - rails_generators/nifty_scaffold/templates/actions/edit.rb
171
+ - rails_generators/nifty_scaffold/templates/actions/index.rb
172
+ - rails_generators/nifty_scaffold/templates/actions/new.rb
173
+ - rails_generators/nifty_scaffold/templates/actions/show.rb
174
+ - rails_generators/nifty_scaffold/templates/actions/update.rb
175
+ - rails_generators/nifty_scaffold/templates/controller.rb
176
+ - rails_generators/nifty_scaffold/templates/fixtures.yml
177
+ - rails_generators/nifty_scaffold/templates/helper.rb
178
+ - rails_generators/nifty_scaffold/templates/migration.rb
179
+ - rails_generators/nifty_scaffold/templates/model.rb
180
+ - rails_generators/nifty_scaffold/templates/tests/rspec/actions/create.rb
181
+ - rails_generators/nifty_scaffold/templates/tests/rspec/actions/destroy.rb
182
+ - rails_generators/nifty_scaffold/templates/tests/rspec/actions/edit.rb
183
+ - rails_generators/nifty_scaffold/templates/tests/rspec/actions/index.rb
184
+ - rails_generators/nifty_scaffold/templates/tests/rspec/actions/new.rb
185
+ - rails_generators/nifty_scaffold/templates/tests/rspec/actions/show.rb
186
+ - rails_generators/nifty_scaffold/templates/tests/rspec/actions/update.rb
187
+ - rails_generators/nifty_scaffold/templates/tests/rspec/controller.rb
188
+ - rails_generators/nifty_scaffold/templates/tests/rspec/model.rb
189
+ - rails_generators/nifty_scaffold/templates/tests/shoulda/actions/create.rb
190
+ - rails_generators/nifty_scaffold/templates/tests/shoulda/actions/destroy.rb
191
+ - rails_generators/nifty_scaffold/templates/tests/shoulda/actions/edit.rb
192
+ - rails_generators/nifty_scaffold/templates/tests/shoulda/actions/index.rb
193
+ - rails_generators/nifty_scaffold/templates/tests/shoulda/actions/new.rb
194
+ - rails_generators/nifty_scaffold/templates/tests/shoulda/actions/show.rb
195
+ - rails_generators/nifty_scaffold/templates/tests/shoulda/actions/update.rb
196
+ - rails_generators/nifty_scaffold/templates/tests/shoulda/controller.rb
197
+ - rails_generators/nifty_scaffold/templates/tests/shoulda/model.rb
198
+ - rails_generators/nifty_scaffold/templates/tests/testunit/actions/create.rb
199
+ - rails_generators/nifty_scaffold/templates/tests/testunit/actions/destroy.rb
200
+ - rails_generators/nifty_scaffold/templates/tests/testunit/actions/edit.rb
201
+ - rails_generators/nifty_scaffold/templates/tests/testunit/actions/index.rb
202
+ - rails_generators/nifty_scaffold/templates/tests/testunit/actions/new.rb
203
+ - rails_generators/nifty_scaffold/templates/tests/testunit/actions/show.rb
204
+ - rails_generators/nifty_scaffold/templates/tests/testunit/actions/update.rb
205
+ - rails_generators/nifty_scaffold/templates/tests/testunit/controller.rb
206
+ - rails_generators/nifty_scaffold/templates/tests/testunit/model.rb
207
+ - rails_generators/nifty_scaffold/templates/views/erb/_form.html.erb
208
+ - rails_generators/nifty_scaffold/templates/views/erb/edit.html.erb
209
+ - rails_generators/nifty_scaffold/templates/views/erb/index.html.erb
210
+ - rails_generators/nifty_scaffold/templates/views/erb/new.html.erb
211
+ - rails_generators/nifty_scaffold/templates/views/erb/show.html.erb
212
+ - rails_generators/nifty_scaffold/templates/views/haml/_form.html.haml
213
+ - rails_generators/nifty_scaffold/templates/views/haml/edit.html.haml
214
+ - rails_generators/nifty_scaffold/templates/views/haml/index.html.haml
215
+ - rails_generators/nifty_scaffold/templates/views/haml/new.html.haml
216
+ - rails_generators/nifty_scaffold/templates/views/haml/show.html.haml
217
+ - rails_generators/nifty_scaffold/USAGE
218
+ - CHANGELOG
219
+ - LICENSE
220
+ - Rakefile
221
+ - README.rdoc
222
+ has_rdoc: true
223
+ homepage: http://github.com/corntrace/nifty-generators
224
+ licenses: []
225
+
226
+ post_install_message:
227
+ rdoc_options: []
228
+
229
+ require_paths:
230
+ - lib
231
+ required_ruby_version: !ruby/object:Gem::Requirement
232
+ requirements:
233
+ - - ">="
234
+ - !ruby/object:Gem::Version
235
+ segments:
236
+ - 0
237
+ version: "0"
238
+ required_rubygems_version: !ruby/object:Gem::Requirement
239
+ requirements:
240
+ - - ">="
241
+ - !ruby/object:Gem::Version
242
+ segments:
243
+ - 1
244
+ - 3
245
+ - 6
246
+ version: 1.3.6
247
+ requirements: []
248
+
249
+ rubyforge_project: corntrace-nifty-generators
250
+ rubygems_version: 1.3.6
251
+ signing_key:
252
+ specification_version: 3
253
+ summary: Forked from ryanb's nifty-generators. A collection of useful Rails generator scripts.
254
+ test_files: []
255
+