gizmo 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/Rakefile +1 -1
  2. data/VERSION +1 -1
  3. data/gizmo.gemspec +94 -0
  4. metadata +4 -2
data/Rakefile CHANGED
@@ -9,7 +9,7 @@ begin
9
9
  gem.description = %Q{gizmo is a simple page model testing framework used and sponsored by 'realestate.com.au'. The aim of the project is to DRY up your testing assertions by abstracting code that defines your page resulting in a consistent, easy to maintain test suit}
10
10
  gem.email = "luke@icaruswings.com"
11
11
  gem.homepage = "http://github.com/icaruswings/gizmo"
12
- gem.authors = ["Luke Cunningham", "Steven Holloway"]
12
+ gem.authors = ["Luke Cunningham", "Steven Holloway", "Sam Weller"]
13
13
  gem.add_development_dependency "rspec", ">= 1.3.0"
14
14
  gem.add_development_dependency "cucumber", ">= 0.6.3"
15
15
  gem.add_development_dependency "webrat", ">= 0.7.0"
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.2
1
+ 0.0.3
@@ -0,0 +1,94 @@
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{gizmo}
8
+ s.version = "0.0.3"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Luke Cunningham", "Steven Holloway", "Sam Weller"]
12
+ s.date = %q{2010-03-30}
13
+ s.default_executable = %q{gizmo}
14
+ s.description = %q{gizmo is a simple page model testing framework used and sponsored by 'realestate.com.au'. The aim of the project is to DRY up your testing assertions by abstracting code that defines your page resulting in a consistent, easy to maintain test suit}
15
+ s.email = %q{luke@icaruswings.com}
16
+ s.executables = ["gizmo"]
17
+ s.extra_rdoc_files = [
18
+ "LICENSE",
19
+ "README.md"
20
+ ]
21
+ s.files = [
22
+ ".document",
23
+ ".gitignore",
24
+ "LICENSE",
25
+ "README.md",
26
+ "Rakefile",
27
+ "VERSION",
28
+ "bin/gizmo",
29
+ "features/gizmo.feature",
30
+ "features/step_definitions/gizmo_steps.rb",
31
+ "features/support/env.rb",
32
+ "features/support/pages/page_with_github_repo_details.rb",
33
+ "features/support/pages/page_with_github_search.rb",
34
+ "features/support/pages/page_with_github_search_results.rb",
35
+ "features/support/patches/capybara.rb",
36
+ "gizmo.gemspec",
37
+ "lib/gizmo.rb",
38
+ "lib/gizmo/configuration.rb",
39
+ "lib/gizmo/extras.rb",
40
+ "lib/gizmo/helpers.rb",
41
+ "lib/gizmo/page.rb",
42
+ "spec/github_site_example_spec.rb",
43
+ "spec/gizmo/configuration_spec.rb",
44
+ "spec/gizmo/extras_spec.rb",
45
+ "spec/gizmo/helpers_spec.rb",
46
+ "spec/gizmo/page_spec.rb",
47
+ "spec/pages/page_with_test_mixin_stuff.rb",
48
+ "spec/spec.opts",
49
+ "spec/spec_helper.rb"
50
+ ]
51
+ s.homepage = %q{http://github.com/icaruswings/gizmo}
52
+ s.rdoc_options = ["--charset=UTF-8"]
53
+ s.require_paths = ["lib"]
54
+ s.rubygems_version = %q{1.3.6}
55
+ s.summary = %q{simple page model testing framework}
56
+ s.test_files = [
57
+ "spec/github_site_example_spec.rb",
58
+ "spec/gizmo/configuration_spec.rb",
59
+ "spec/gizmo/extras_spec.rb",
60
+ "spec/gizmo/helpers_spec.rb",
61
+ "spec/gizmo/page_spec.rb",
62
+ "spec/pages/page_with_test_mixin_stuff.rb",
63
+ "spec/spec_helper.rb"
64
+ ]
65
+
66
+ if s.respond_to? :specification_version then
67
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
68
+ s.specification_version = 3
69
+
70
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
71
+ s.add_development_dependency(%q<rspec>, [">= 1.3.0"])
72
+ s.add_development_dependency(%q<cucumber>, [">= 0.6.3"])
73
+ s.add_development_dependency(%q<webrat>, [">= 0.7.0"])
74
+ s.add_development_dependency(%q<capybara>, [">= 0.3.5"])
75
+ s.add_runtime_dependency(%q<nokogiri>, [">= 1.4.1"])
76
+ s.add_runtime_dependency(%q<activesupport>, [">= 2.3.5"])
77
+ else
78
+ s.add_dependency(%q<rspec>, [">= 1.3.0"])
79
+ s.add_dependency(%q<cucumber>, [">= 0.6.3"])
80
+ s.add_dependency(%q<webrat>, [">= 0.7.0"])
81
+ s.add_dependency(%q<capybara>, [">= 0.3.5"])
82
+ s.add_dependency(%q<nokogiri>, [">= 1.4.1"])
83
+ s.add_dependency(%q<activesupport>, [">= 2.3.5"])
84
+ end
85
+ else
86
+ s.add_dependency(%q<rspec>, [">= 1.3.0"])
87
+ s.add_dependency(%q<cucumber>, [">= 0.6.3"])
88
+ s.add_dependency(%q<webrat>, [">= 0.7.0"])
89
+ s.add_dependency(%q<capybara>, [">= 0.3.5"])
90
+ s.add_dependency(%q<nokogiri>, [">= 1.4.1"])
91
+ s.add_dependency(%q<activesupport>, [">= 2.3.5"])
92
+ end
93
+ end
94
+
metadata CHANGED
@@ -5,12 +5,13 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 2
9
- version: 0.0.2
8
+ - 3
9
+ version: 0.0.3
10
10
  platform: ruby
11
11
  authors:
12
12
  - Luke Cunningham
13
13
  - Steven Holloway
14
+ - Sam Weller
14
15
  autorequire:
15
16
  bindir: bin
16
17
  cert_chain: []
@@ -126,6 +127,7 @@ files:
126
127
  - features/support/pages/page_with_github_search.rb
127
128
  - features/support/pages/page_with_github_search_results.rb
128
129
  - features/support/patches/capybara.rb
130
+ - gizmo.gemspec
129
131
  - lib/gizmo.rb
130
132
  - lib/gizmo/configuration.rb
131
133
  - lib/gizmo/extras.rb