lazy-head-gen 0.3.2 → 0.3.3

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/README.md CHANGED
@@ -141,15 +141,10 @@ TODO: list test helper methods.
141
141
 
142
142
  The scaffold and admin_controller_test generators are reliant on you using a blueprints.rb file.
143
143
 
144
- ## Known Issues (probably loads of unknown!)
145
-
146
- * If you generate an admin_controller_test for the admin account controller you end up with 2 failing tests. Other generated admin tests pass.
147
-
148
144
  ## To Do List
149
145
 
150
146
  * Finish README - Built in assertions and test helpers
151
147
  * Add form output to the scaffold generator
152
- * Figure out why generated test for the Admin Account controller fails.
153
148
 
154
149
  ## Contributing to lazy-head-gen
155
150
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.2
1
+ 0.3.3
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "lazy-head-gen"
8
- s.version = "0.3.2"
8
+ s.version = "0.3.3"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Stuart Chinery"]
@@ -8,4 +8,6 @@ Account.blueprint do
8
8
  password { "password" }
9
9
  password_confirmation { "password" }
10
10
  role { "admin" }
11
+ # Required if you want to test the Admin Account controller
12
+ crypted_password { "password" }
11
13
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lazy-head-gen
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 3
9
- - 2
10
- version: 0.3.2
9
+ - 3
10
+ version: 0.3.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - Stuart Chinery