boilerplate_generator 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,10 @@
1
+ +++ 0.0.2 2007-05-08
2
+
3
+ + Added support for Haml templates if the Haml plugin is installed
4
+ + Updated ERb template extensions to .erb
5
+ + Switched to using Rails' assert_difference assertion
6
+ + Removed assert_invalid assertion
7
+
1
8
  +++ 0.0.1 2007-05-07
2
9
 
3
10
  + Initial gem release
data/README.txt CHANGED
@@ -120,20 +120,20 @@ The following files are generated:
120
120
  | | `-- user.rb
121
121
  | `-- views
122
122
  | |-- account
123
- | | |-- index.rhtml
124
- | | |-- login.rhtml
125
- | | `-- signup.rhtml
123
+ | | |-- index.html.erb
124
+ | | |-- login.html.erb
125
+ | | `-- signup.html.erb
126
126
  | |-- user
127
- | | |-- login.rhtml
128
- | | |-- show.rhtml
129
- | | `-- signup.rhtml
127
+ | | |-- _form.html.erb
128
+ | | |-- edit.html.erb
129
+ | | |-- show.html.erb
130
+ | | `-- new.html.erb
130
131
  | `-- layouts
131
- | `-- application.rhtml
132
+ | `-- application.html.erb
132
133
  |-- config
133
134
  | `-- routes.rb
134
135
  |-- db
135
136
  | `-- migrate
136
- | |-- ###_create_sessions.rb
137
137
  | `-- ###_create_users.rb
138
138
  |-- lib
139
139
  | `-- authentication_system.rb
@@ -2,7 +2,7 @@ module BoilerplateGenerator #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 0
5
- TINY = 1
5
+ TINY = 2
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
metadata CHANGED
@@ -3,7 +3,7 @@ rubygems_version: 0.9.2
3
3
  specification_version: 1
4
4
  name: boilerplate_generator
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.0.1
6
+ version: 0.0.2
7
7
  date: 2007-05-08 00:00:00 -04:00
8
8
  summary: Boilerplate is a generator for new Rails projects
9
9
  require_paths: