jasmine-fixtures 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/generators/jasmine-fixtures/jasmine_fixtures_generator.rb +1 -1
- data/jasmine-fixtures.gemspec +66 -0
- metadata +4 -3
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.1
|
@@ -7,7 +7,7 @@ class JasmineFixturesGenerator < Rails::Generator::Base
|
|
7
7
|
m.file "spec/javascripts/helpers/jasmine-fixture-matchers.js", "spec/javascripts/helpers/jasmine-fixture-matchers.js"
|
8
8
|
|
9
9
|
m.directory "spec/spec_helpers"
|
10
|
-
m.file "spec/spec_helpers/
|
10
|
+
m.file "spec/spec_helpers/jasmine_fixture_generator_methods.rb", "spec/spec_helpers/jasmine_fixture_generator_methods.rb"
|
11
11
|
|
12
12
|
m.readme "INSTALL"
|
13
13
|
end
|
@@ -0,0 +1,66 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{jasmine-fixtures}
|
8
|
+
s.version = "0.1.1"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Roger Neel", "Jonathan Barnes", "JB Steadman"]
|
12
|
+
s.date = %q{2010-11-07}
|
13
|
+
s.description = %q{Dump out DOM that you want to test. Use jasmine-fixtures to load that DOM into your Jasmine specs. See github.com/mavenlink/jasmine-fixtures for more.}
|
14
|
+
s.email = %q{roger@mavenlink.com}
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"LICENSE",
|
17
|
+
"README.rdoc"
|
18
|
+
]
|
19
|
+
s.files = [
|
20
|
+
".bundle/config",
|
21
|
+
".document",
|
22
|
+
".gitignore",
|
23
|
+
".pairs",
|
24
|
+
"Gemfile",
|
25
|
+
"Gemfile.lock",
|
26
|
+
"LICENSE",
|
27
|
+
"README.rdoc",
|
28
|
+
"Rakefile",
|
29
|
+
"VERSION",
|
30
|
+
"generators/jasmine-fixtures/jasmine_fixtures_generator.rb",
|
31
|
+
"generators/jasmine-fixtures/templates/INSTALL",
|
32
|
+
"generators/jasmine-fixtures/templates/spec/controllers/jasmine_fixture_creators.rb",
|
33
|
+
"generators/jasmine-fixtures/templates/spec/javascripts/helpers/jasmine-fixture-helper.js",
|
34
|
+
"generators/jasmine-fixtures/templates/spec/javascripts/helpers/jasmine-fixture-loader.js",
|
35
|
+
"generators/jasmine-fixtures/templates/spec/javascripts/helpers/jasmine-fixture-matchers.js",
|
36
|
+
"generators/jasmine-fixtures/templates/spec/spec_helpers/jasmine_fixture_generator_methods.rb",
|
37
|
+
"jasmine-fixtures.gemspec",
|
38
|
+
"lib/jasmine-fixtures.rb",
|
39
|
+
"spec/jasmine-fixtures_spec.rb",
|
40
|
+
"spec/spec.opts",
|
41
|
+
"spec/spec_helper.rb"
|
42
|
+
]
|
43
|
+
s.homepage = %q{http://github.com/mavenlink/jasmine-fixtures}
|
44
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
45
|
+
s.require_paths = ["lib"]
|
46
|
+
s.rubygems_version = %q{1.3.7}
|
47
|
+
s.summary = %q{Jasmine Fixtures allow you to use real DOM to test your JavaScript}
|
48
|
+
s.test_files = [
|
49
|
+
"spec/jasmine-fixtures_spec.rb",
|
50
|
+
"spec/spec_helper.rb"
|
51
|
+
]
|
52
|
+
|
53
|
+
if s.respond_to? :specification_version then
|
54
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
55
|
+
s.specification_version = 3
|
56
|
+
|
57
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
58
|
+
s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
|
59
|
+
else
|
60
|
+
s.add_dependency(%q<rspec>, [">= 1.2.9"])
|
61
|
+
end
|
62
|
+
else
|
63
|
+
s.add_dependency(%q<rspec>, [">= 1.2.9"])
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
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: 25
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
9
|
+
- 1
|
10
|
+
version: 0.1.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Roger Neel
|
@@ -63,6 +63,7 @@ files:
|
|
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
65
|
- generators/jasmine-fixtures/templates/spec/spec_helpers/jasmine_fixture_generator_methods.rb
|
66
|
+
- jasmine-fixtures.gemspec
|
66
67
|
- lib/jasmine-fixtures.rb
|
67
68
|
- spec/jasmine-fixtures_spec.rb
|
68
69
|
- spec/spec.opts
|