This repository has been archived by the owner on Jun 26, 2020. It is now read-only.
forked from ryanb/nifty-generators
-
Notifications
You must be signed in to change notification settings - Fork 2
/
CHANGELOG
198 lines (88 loc) · 4.7 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
0.4.6 (March 26, 2011)
* fixing form block in HAML (thanks apocalyptiq)
* fixing instance variable setting in HAML (thanks nhocki)
0.4.5 (February 14, 2011)
* fixing user validation tests in nifty:authentication (thanks apocalyptiq) - issue #87
* fixing form generation when only new action exists for nifty scaffold (thanks gouravtiwari) - issue #83
* fixing spacing issue in nifty:scaffold model
* fixing instance instance variable in haml form for nifty:scaffold - issue #81
* improving redirect implementation in nifty authentication
* adding i18n to error_messages_for in nifty:layout (thanks nhocki)
0.4.4 (January 17, 2011)
* adding namespaces to nifty:scaffold (thanks DouglasMeyer) - issue #63
* adding .rvmrc file
0.4.3 (December 28, 2010)
* display usage documentation when given an invalid model name with nifty:scaffold - issue #76
* add newline when necessary to Gemfile before adding gem - issue #64
* remove extra whitespace between controller methods in nifty:scaffold - issue #62
* renaming edit_user route to edit_current_user - issue #59
* HAML template improvements (thanks IamNaN) - issue #71
0.4.2 (October 15, 2010)
* adding mocha to Gemfile automatically if it's not there already
* switching to BCrypt for user password encryption on nifty:authentication - issue #53
* adding Gemfile, now just run "bunde" and "rake" to get cucumber features running - issue #56
* renaming Authentication module to ControllerAuthentication to avoid conflicts in nifty:authentication - issue #57
* automatically use RSpec when there's a spec directory - issue #50
* escaping page title in layout helper (thanks cbmeeks) - issue #52
* adding edit profile page to nifty:authentication - closes #54
0.4.1 (September 23rd, 2010)
* fixing frozen hash error when not passing additional arguments to nifty:scaffold - issue #35
* fixing rendering of default title in nifty:layout - issue #36
* fixing integrate_views error in nifty:scaffold specs - issue #43
* updating SASS syntax (thanks semaperepelitsa) - issue #46
0.4.0 (April 19th, 2010)
* adding error_messages_for and f.error_messages helper for Rails 3 nifty:layout
* adding initial Rails 3 support (thanks Henrik Hodne)
* adding xmlns to <head> element in nifty_layout
0.3.2 (February 16th, 2010)
* Including all files in gem, was missing files in rails_generator directory
0.3.1 (February 16th, 2010)
* improving documentation
* fixing name of generated session model for authlogic in nifty_authorization
* use "username" instead of "login" for authlogic haml form template in nifty_authorization
0.3.0 (August 15th, 2009)
* adding attr_accessible to models in nifty_scaffold
* adding authlogic support with --authlogic option in nifty_authentication
* pluralize second argument for controller in nifty_authentication
* don't convert javascript/stylesheet arguments to strings in nifty_layout
* store request location and redirect to it when logging in under nifty_authentication
0.2.4 (May 5th, 2009)
* using root_url when no index action in nifty_scaffold
* making password editable in user model in nifty_authentication
* adding filter_parameter_logging :password in nifty_authentication
0.2.3 (February 20th, 2009)
* fixing nifty_authentication to work with Rails 2.3 application_controller.rb
* fixing password field in HAML signup page in nifty_authentication
0.2.2 (November 11th, 2008)
* fixing sessions_path reference in nifty_authentication
* adding more validations to user model in nifty_authentication
* cleaning up nifty_layout stylesheet
0.2.1 (November 10th, 2008)
* adding missing nifty_authentication files
0.2.0 (November 4th, 2008)
* adding nifty_authentication
0.1.8 (October 3rd, 2008)
* compatibility with RubyGems 1.3
* using f.error_messages instead of error_messages_for (thanks Zach Langley)
0.1.7 (August 15th, 2008)
* fixing shoulda tests
0.1.6 (August 7th, 2008)
* adding option to specify Shoulda as testing framework in nifty_scaffold generator
* adding options to manually specify rspec or testunit framework in nifty_scaffold generator
0.1.5 (August 7th, 2008)
* adding option to nifty layout to generate HAML views and SASS stylesheets
* adding option to nifty scaffold to generate HAML views
0.1.4 (July 21st, 2008)
* using same logic as model spec in model test for scaffold
* simplifying model spec generated by scaffold
* adding error_messages_for to form partial
0.1.3 (June 20th, 2008)
* using _url in controllers instead of _path
* improving the nifty_config default example YAML file
0.1.2 (May 16th, 2008)
* mentioning nifty_layout in nifty_scaffold generator
* adding nifty_config generator
0.1.1 (May 9th, 2008)
* adding tests and specs to scaffold generator
0.1.0 (May 8th, 2008)
* initial release