jasmine-fixtures 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -14,7 +14,7 @@ The gem includes 3 major pieces:
14
14
 
15
15
  gem install jasmine-fixtures
16
16
 
17
- script/generate jasmine-fixtures
17
+ script/generate jasmine_fixtures
18
18
 
19
19
  If you want to use the fixture generator, you need to load jasmine_fixture_generator_methods.rb. If you load everything in your spec_helpers directory in your spec_helper.rb already, you're good to go. Otherwise, make sure it's required with the rest of your requires in spec_helper.rb.
20
20
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.1
1
+ 0.1.2
@@ -9,6 +9,8 @@ class JasmineFixturesGenerator < Rails::Generator::Base
9
9
  m.directory "spec/spec_helpers"
10
10
  m.file "spec/spec_helpers/jasmine_fixture_generator_methods.rb", "spec/spec_helpers/jasmine_fixture_generator_methods.rb"
11
11
 
12
+ m.directory "spec/controllers"
13
+ m.file "spec/controllers/jasmine_fixture_creators.rb", "spec/controllers/jasmine_fixture_creators.rb"
12
14
  m.readme "INSTALL"
13
15
  end
14
16
  end
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{jasmine-fixtures}
8
- s.version = "0.1.1"
8
+ s.version = "0.1.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Roger Neel", "Jonathan Barnes", "JB Steadman"]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jasmine-fixtures
3
3
  version: !ruby/object:Gem::Version
4
- hash: 25
4
+ hash: 31
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 1
10
- version: 0.1.1
9
+ - 2
10
+ version: 0.1.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Roger Neel