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.
- data/CHANGELOG +128 -0
- data/LICENSE +20 -0
- data/README.rdoc +104 -0
- data/Rakefile +18 -0
- data/features/nifty_authentication.feature +59 -0
- data/features/nifty_config.feature +17 -0
- data/features/nifty_layout.feature +19 -0
- data/features/nifty_scaffold.feature +22 -0
- data/features/step_definitions/common_steps.rb +37 -0
- data/features/step_definitions/rails_setup_steps.rb +6 -0
- data/features/support/env.rb +6 -0
- data/features/support/matchers.rb +7 -0
- data/lib/generators/nifty/authentication/USAGE +50 -0
- data/lib/generators/nifty/authentication/authentication_generator.rb +145 -0
- data/lib/generators/nifty/authentication/templates/authentication.rb +60 -0
- data/lib/generators/nifty/authentication/templates/authlogic_session.rb +2 -0
- data/lib/generators/nifty/authentication/templates/fixtures.yml +24 -0
- data/lib/generators/nifty/authentication/templates/migration.rb +20 -0
- data/lib/generators/nifty/authentication/templates/sessions_controller.rb +45 -0
- data/lib/generators/nifty/authentication/templates/sessions_helper.rb +2 -0
- data/lib/generators/nifty/authentication/templates/tests/rspec/sessions_controller.rb +39 -0
- data/lib/generators/nifty/authentication/templates/tests/rspec/user.rb +83 -0
- data/lib/generators/nifty/authentication/templates/tests/rspec/users_controller.rb +26 -0
- data/lib/generators/nifty/authentication/templates/tests/shoulda/sessions_controller.rb +40 -0
- data/lib/generators/nifty/authentication/templates/tests/shoulda/user.rb +85 -0
- data/lib/generators/nifty/authentication/templates/tests/shoulda/users_controller.rb +27 -0
- data/lib/generators/nifty/authentication/templates/tests/testunit/sessions_controller.rb +36 -0
- data/lib/generators/nifty/authentication/templates/tests/testunit/user.rb +88 -0
- data/lib/generators/nifty/authentication/templates/tests/testunit/users_controller.rb +23 -0
- data/lib/generators/nifty/authentication/templates/user.rb +42 -0
- data/lib/generators/nifty/authentication/templates/users_controller.rb +18 -0
- data/lib/generators/nifty/authentication/templates/users_helper.rb +2 -0
- data/lib/generators/nifty/authentication/templates/views/erb/login.html.erb +30 -0
- data/lib/generators/nifty/authentication/templates/views/erb/signup.html.erb +24 -0
- data/lib/generators/nifty/authentication/templates/views/haml/login.html.haml +30 -0
- data/lib/generators/nifty/authentication/templates/views/haml/signup.html.haml +24 -0
- data/lib/generators/nifty/config/USAGE +23 -0
- data/lib/generators/nifty/config/config_generator.rb +24 -0
- data/lib/generators/nifty/config/templates/config.yml +8 -0
- data/lib/generators/nifty/config/templates/load_config.rb +2 -0
- data/lib/generators/nifty/layout/USAGE +25 -0
- data/lib/generators/nifty/layout/layout_generator.rb +29 -0
- data/lib/generators/nifty/layout/templates/error_messages_helper.rb +23 -0
- data/lib/generators/nifty/layout/templates/layout.html.erb +19 -0
- data/lib/generators/nifty/layout/templates/layout.html.haml +21 -0
- data/lib/generators/nifty/layout/templates/layout_helper.rb +22 -0
- data/lib/generators/nifty/layout/templates/stylesheet.css +75 -0
- data/lib/generators/nifty/layout/templates/stylesheet.sass +66 -0
- data/lib/generators/nifty/scaffold/USAGE +51 -0
- data/lib/generators/nifty/scaffold/scaffold_generator.rb +241 -0
- data/lib/generators/nifty/scaffold/templates/actions/create.rb +9 -0
- data/lib/generators/nifty/scaffold/templates/actions/destroy.rb +6 -0
- data/lib/generators/nifty/scaffold/templates/actions/edit.rb +3 -0
- data/lib/generators/nifty/scaffold/templates/actions/index.rb +3 -0
- data/lib/generators/nifty/scaffold/templates/actions/new.rb +3 -0
- data/lib/generators/nifty/scaffold/templates/actions/show.rb +3 -0
- data/lib/generators/nifty/scaffold/templates/actions/update.rb +9 -0
- data/lib/generators/nifty/scaffold/templates/controller.rb +3 -0
- data/lib/generators/nifty/scaffold/templates/fixtures.yml +9 -0
- data/lib/generators/nifty/scaffold/templates/helper.rb +2 -0
- data/lib/generators/nifty/scaffold/templates/migration.rb +16 -0
- data/lib/generators/nifty/scaffold/templates/model.rb +3 -0
- data/lib/generators/nifty/scaffold/templates/tests/rspec/actions/create.rb +11 -0
- data/lib/generators/nifty/scaffold/templates/tests/rspec/actions/destroy.rb +6 -0
- data/lib/generators/nifty/scaffold/templates/tests/rspec/actions/edit.rb +4 -0
- data/lib/generators/nifty/scaffold/templates/tests/rspec/actions/index.rb +4 -0
- data/lib/generators/nifty/scaffold/templates/tests/rspec/actions/new.rb +4 -0
- data/lib/generators/nifty/scaffold/templates/tests/rspec/actions/show.rb +4 -0
- data/lib/generators/nifty/scaffold/templates/tests/rspec/actions/update.rb +11 -0
- data/lib/generators/nifty/scaffold/templates/tests/rspec/controller.rb +8 -0
- data/lib/generators/nifty/scaffold/templates/tests/rspec/model.rb +7 -0
- data/lib/generators/nifty/scaffold/templates/tests/shoulda/actions/create.rb +13 -0
- data/lib/generators/nifty/scaffold/templates/tests/shoulda/actions/destroy.rb +8 -0
- data/lib/generators/nifty/scaffold/templates/tests/shoulda/actions/edit.rb +6 -0
- data/lib/generators/nifty/scaffold/templates/tests/shoulda/actions/index.rb +6 -0
- data/lib/generators/nifty/scaffold/templates/tests/shoulda/actions/new.rb +6 -0
- data/lib/generators/nifty/scaffold/templates/tests/shoulda/actions/show.rb +6 -0
- data/lib/generators/nifty/scaffold/templates/tests/shoulda/actions/update.rb +13 -0
- data/lib/generators/nifty/scaffold/templates/tests/shoulda/controller.rb +5 -0
- data/lib/generators/nifty/scaffold/templates/tests/shoulda/model.rb +7 -0
- data/lib/generators/nifty/scaffold/templates/tests/testunit/actions/create.rb +11 -0
- data/lib/generators/nifty/scaffold/templates/tests/testunit/actions/destroy.rb +6 -0
- data/lib/generators/nifty/scaffold/templates/tests/testunit/actions/edit.rb +4 -0
- data/lib/generators/nifty/scaffold/templates/tests/testunit/actions/index.rb +4 -0
- data/lib/generators/nifty/scaffold/templates/tests/testunit/actions/new.rb +4 -0
- data/lib/generators/nifty/scaffold/templates/tests/testunit/actions/show.rb +4 -0
- data/lib/generators/nifty/scaffold/templates/tests/testunit/actions/update.rb +11 -0
- data/lib/generators/nifty/scaffold/templates/tests/testunit/controller.rb +5 -0
- data/lib/generators/nifty/scaffold/templates/tests/testunit/model.rb +7 -0
- data/lib/generators/nifty/scaffold/templates/views/erb/_form.html.erb +10 -0
- data/lib/generators/nifty/scaffold/templates/views/erb/edit.html.erb +14 -0
- data/lib/generators/nifty/scaffold/templates/views/erb/index.html.erb +29 -0
- data/lib/generators/nifty/scaffold/templates/views/erb/new.html.erb +7 -0
- data/lib/generators/nifty/scaffold/templates/views/erb/show.html.erb +20 -0
- data/lib/generators/nifty/scaffold/templates/views/haml/_form.html.haml +10 -0
- data/lib/generators/nifty/scaffold/templates/views/haml/edit.html.haml +14 -0
- data/lib/generators/nifty/scaffold/templates/views/haml/index.html.haml +25 -0
- data/lib/generators/nifty/scaffold/templates/views/haml/new.html.haml +7 -0
- data/lib/generators/nifty/scaffold/templates/views/haml/show.html.haml +20 -0
- data/lib/generators/nifty.rb +15 -0
- data/rails_generators/nifty_authentication/USAGE +50 -0
- data/rails_generators/nifty_authentication/lib/insert_commands.rb +74 -0
- data/rails_generators/nifty_authentication/nifty_authentication_generator.rb +128 -0
- data/rails_generators/nifty_authentication/templates/authentication.rb +61 -0
- data/rails_generators/nifty_authentication/templates/authlogic_session.rb +2 -0
- data/rails_generators/nifty_authentication/templates/fixtures.yml +24 -0
- data/rails_generators/nifty_authentication/templates/migration.rb +20 -0
- data/rails_generators/nifty_authentication/templates/sessions_controller.rb +45 -0
- data/rails_generators/nifty_authentication/templates/sessions_helper.rb +2 -0
- data/rails_generators/nifty_authentication/templates/tests/rspec/sessions_controller.rb +39 -0
- data/rails_generators/nifty_authentication/templates/tests/rspec/user.rb +83 -0
- data/rails_generators/nifty_authentication/templates/tests/rspec/users_controller.rb +26 -0
- data/rails_generators/nifty_authentication/templates/tests/shoulda/sessions_controller.rb +40 -0
- data/rails_generators/nifty_authentication/templates/tests/shoulda/user.rb +85 -0
- data/rails_generators/nifty_authentication/templates/tests/shoulda/users_controller.rb +27 -0
- data/rails_generators/nifty_authentication/templates/tests/testunit/sessions_controller.rb +36 -0
- data/rails_generators/nifty_authentication/templates/tests/testunit/user.rb +88 -0
- data/rails_generators/nifty_authentication/templates/tests/testunit/users_controller.rb +23 -0
- data/rails_generators/nifty_authentication/templates/user.rb +42 -0
- data/rails_generators/nifty_authentication/templates/users_controller.rb +18 -0
- data/rails_generators/nifty_authentication/templates/users_helper.rb +2 -0
- data/rails_generators/nifty_authentication/templates/views/erb/login.html.erb +30 -0
- data/rails_generators/nifty_authentication/templates/views/erb/signup.html.erb +24 -0
- data/rails_generators/nifty_authentication/templates/views/haml/login.html.haml +30 -0
- data/rails_generators/nifty_authentication/templates/views/haml/signup.html.haml +24 -0
- data/rails_generators/nifty_config/USAGE +23 -0
- data/rails_generators/nifty_config/nifty_config_generator.rb +32 -0
- data/rails_generators/nifty_config/templates/config.yml +8 -0
- data/rails_generators/nifty_config/templates/load_config.rb +2 -0
- data/rails_generators/nifty_layout/USAGE +25 -0
- data/rails_generators/nifty_layout/nifty_layout_generator.rb +44 -0
- data/rails_generators/nifty_layout/templates/helper.rb +22 -0
- data/rails_generators/nifty_layout/templates/layout.html.erb +22 -0
- data/rails_generators/nifty_layout/templates/layout.html.haml +19 -0
- data/rails_generators/nifty_layout/templates/stylesheet.css +81 -0
- data/rails_generators/nifty_layout/templates/stylesheet.sass +67 -0
- data/rails_generators/nifty_scaffold/USAGE +51 -0
- data/rails_generators/nifty_scaffold/nifty_scaffold_generator.rb +232 -0
- data/rails_generators/nifty_scaffold/templates/actions/create.rb +9 -0
- data/rails_generators/nifty_scaffold/templates/actions/destroy.rb +6 -0
- data/rails_generators/nifty_scaffold/templates/actions/edit.rb +3 -0
- data/rails_generators/nifty_scaffold/templates/actions/index.rb +3 -0
- data/rails_generators/nifty_scaffold/templates/actions/new.rb +3 -0
- data/rails_generators/nifty_scaffold/templates/actions/show.rb +3 -0
- data/rails_generators/nifty_scaffold/templates/actions/update.rb +9 -0
- data/rails_generators/nifty_scaffold/templates/controller.rb +3 -0
- data/rails_generators/nifty_scaffold/templates/fixtures.yml +9 -0
- data/rails_generators/nifty_scaffold/templates/helper.rb +2 -0
- data/rails_generators/nifty_scaffold/templates/migration.rb +16 -0
- data/rails_generators/nifty_scaffold/templates/model.rb +3 -0
- data/rails_generators/nifty_scaffold/templates/tests/rspec/actions/create.rb +11 -0
- data/rails_generators/nifty_scaffold/templates/tests/rspec/actions/destroy.rb +6 -0
- data/rails_generators/nifty_scaffold/templates/tests/rspec/actions/edit.rb +4 -0
- data/rails_generators/nifty_scaffold/templates/tests/rspec/actions/index.rb +4 -0
- data/rails_generators/nifty_scaffold/templates/tests/rspec/actions/new.rb +4 -0
- data/rails_generators/nifty_scaffold/templates/tests/rspec/actions/show.rb +4 -0
- data/rails_generators/nifty_scaffold/templates/tests/rspec/actions/update.rb +11 -0
- data/rails_generators/nifty_scaffold/templates/tests/rspec/controller.rb +8 -0
- data/rails_generators/nifty_scaffold/templates/tests/rspec/model.rb +7 -0
- data/rails_generators/nifty_scaffold/templates/tests/shoulda/actions/create.rb +13 -0
- data/rails_generators/nifty_scaffold/templates/tests/shoulda/actions/destroy.rb +8 -0
- data/rails_generators/nifty_scaffold/templates/tests/shoulda/actions/edit.rb +6 -0
- data/rails_generators/nifty_scaffold/templates/tests/shoulda/actions/index.rb +6 -0
- data/rails_generators/nifty_scaffold/templates/tests/shoulda/actions/new.rb +6 -0
- data/rails_generators/nifty_scaffold/templates/tests/shoulda/actions/show.rb +6 -0
- data/rails_generators/nifty_scaffold/templates/tests/shoulda/actions/update.rb +13 -0
- data/rails_generators/nifty_scaffold/templates/tests/shoulda/controller.rb +5 -0
- data/rails_generators/nifty_scaffold/templates/tests/shoulda/model.rb +7 -0
- data/rails_generators/nifty_scaffold/templates/tests/testunit/actions/create.rb +11 -0
- data/rails_generators/nifty_scaffold/templates/tests/testunit/actions/destroy.rb +6 -0
- data/rails_generators/nifty_scaffold/templates/tests/testunit/actions/edit.rb +4 -0
- data/rails_generators/nifty_scaffold/templates/tests/testunit/actions/index.rb +4 -0
- data/rails_generators/nifty_scaffold/templates/tests/testunit/actions/new.rb +4 -0
- data/rails_generators/nifty_scaffold/templates/tests/testunit/actions/show.rb +4 -0
- data/rails_generators/nifty_scaffold/templates/tests/testunit/actions/update.rb +11 -0
- data/rails_generators/nifty_scaffold/templates/tests/testunit/controller.rb +5 -0
- data/rails_generators/nifty_scaffold/templates/tests/testunit/model.rb +7 -0
- data/rails_generators/nifty_scaffold/templates/views/erb/_form.html.erb +10 -0
- data/rails_generators/nifty_scaffold/templates/views/erb/edit.html.erb +14 -0
- data/rails_generators/nifty_scaffold/templates/views/erb/index.html.erb +29 -0
- data/rails_generators/nifty_scaffold/templates/views/erb/new.html.erb +7 -0
- data/rails_generators/nifty_scaffold/templates/views/erb/show.html.erb +20 -0
- data/rails_generators/nifty_scaffold/templates/views/haml/_form.html.haml +10 -0
- data/rails_generators/nifty_scaffold/templates/views/haml/edit.html.haml +14 -0
- data/rails_generators/nifty_scaffold/templates/views/haml/index.html.haml +25 -0
- data/rails_generators/nifty_scaffold/templates/views/haml/new.html.haml +7 -0
- data/rails_generators/nifty_scaffold/templates/views/haml/show.html.haml +20 -0
- data/test/test_helper.rb +119 -0
- data/test/test_nifty_authentication_generator.rb +274 -0
- data/test/test_nifty_config_generator.rb +37 -0
- data/test/test_nifty_layout_generator.rb +42 -0
- data/test/test_nifty_scaffold_generator.rb +534 -0
- 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
|
+
|