jasmine-fixtures 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +1 -0
- data/Gemfile.lock +2 -0
- data/Rakefile +1 -0
- data/VERSION +1 -1
- data/generators/jasmine-fixtures/jasmine_fixtures_generator.rb +2 -2
- data/generators/jasmine-fixtures/templates/INSTALL +2 -0
- data/generators/jasmine-fixtures/templates/spec/{spec_helpers → support}/jasmine_fixture_generator_methods.rb +0 -0
- data/jasmine-fixtures.gemspec +2 -2
- metadata +4 -4
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -8,6 +8,7 @@ GEM
|
|
8
8
|
git (>= 1.2.5)
|
9
9
|
rubyforge (>= 2.0.0)
|
10
10
|
json_pure (1.4.6)
|
11
|
+
nokogiri (1.4.3.1)
|
11
12
|
rack (1.2.1)
|
12
13
|
rake (0.8.7)
|
13
14
|
rspec (1.3.1)
|
@@ -23,5 +24,6 @@ PLATFORMS
|
|
23
24
|
DEPENDENCIES
|
24
25
|
bundler (= 1.0.3)
|
25
26
|
jeweler (= 1.4.0)
|
27
|
+
nokogiri
|
26
28
|
rake (= 0.8.7)
|
27
29
|
rspec-rails (= 1.3.3)
|
data/Rakefile
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.3
|
@@ -6,8 +6,8 @@ class JasmineFixturesGenerator < Rails::Generator::Base
|
|
6
6
|
m.file "spec/javascripts/helpers/jasmine-fixture-loader.js", "spec/javascripts/helpers/jasmine-fixture-loader.js"
|
7
7
|
m.file "spec/javascripts/helpers/jasmine-fixture-matchers.js", "spec/javascripts/helpers/jasmine-fixture-matchers.js"
|
8
8
|
|
9
|
-
m.directory "spec/
|
10
|
-
m.file "spec/
|
9
|
+
m.directory "spec/support"
|
10
|
+
m.file "spec/support/jasmine_fixture_generator_methods.rb", "spec/support/jasmine_fixture_generator_methods.rb"
|
11
11
|
|
12
12
|
m.directory "spec/controllers"
|
13
13
|
m.file "spec/controllers/jasmine_fixture_creators.rb", "spec/controllers/jasmine_fixture_creators.rb"
|
@@ -2,4 +2,6 @@ Jasmine Fixtures have been installed!
|
|
2
2
|
|
3
3
|
We copied JasmineFixtureHelper.js and LoadFixture.js into your spec/javascripts/helpers dir. In its default configuration, Jasmine should pick these files up.
|
4
4
|
|
5
|
+
Next step is to run: script/generate jasmine_fixtures
|
6
|
+
|
5
7
|
Take a look at https://github.com/mavenlink/jasmine-fixtures for tips & more info.
|
File without changes
|
data/jasmine-fixtures.gemspec
CHANGED
@@ -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.
|
8
|
+
s.version = "0.1.3"
|
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"]
|
@@ -33,7 +33,7 @@ Gem::Specification.new do |s|
|
|
33
33
|
"generators/jasmine-fixtures/templates/spec/javascripts/helpers/jasmine-fixture-helper.js",
|
34
34
|
"generators/jasmine-fixtures/templates/spec/javascripts/helpers/jasmine-fixture-loader.js",
|
35
35
|
"generators/jasmine-fixtures/templates/spec/javascripts/helpers/jasmine-fixture-matchers.js",
|
36
|
-
"generators/jasmine-fixtures/templates/spec/
|
36
|
+
"generators/jasmine-fixtures/templates/spec/support/jasmine_fixture_generator_methods.rb",
|
37
37
|
"jasmine-fixtures.gemspec",
|
38
38
|
"lib/jasmine-fixtures.rb",
|
39
39
|
"spec/jasmine-fixtures_spec.rb",
|
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:
|
4
|
+
hash: 29
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
9
|
+
- 3
|
10
|
+
version: 0.1.3
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Roger Neel
|
@@ -62,7 +62,7 @@ files:
|
|
62
62
|
- generators/jasmine-fixtures/templates/spec/javascripts/helpers/jasmine-fixture-helper.js
|
63
63
|
- generators/jasmine-fixtures/templates/spec/javascripts/helpers/jasmine-fixture-loader.js
|
64
64
|
- generators/jasmine-fixtures/templates/spec/javascripts/helpers/jasmine-fixture-matchers.js
|
65
|
-
- generators/jasmine-fixtures/templates/spec/
|
65
|
+
- generators/jasmine-fixtures/templates/spec/support/jasmine_fixture_generator_methods.rb
|
66
66
|
- jasmine-fixtures.gemspec
|
67
67
|
- lib/jasmine-fixtures.rb
|
68
68
|
- spec/jasmine-fixtures_spec.rb
|