taza 0.9.2.1 → 1.0

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.
@@ -5,10 +5,10 @@ describe "Site Specific Fixtures" do
5
5
  include Taza::Fixtures::FooSite
6
6
 
7
7
  it "should be able to access fixtures in sub-folders" do
8
- bars(:foo).name.should eql("foo")
8
+ expect(bars(:foo).name).to eql 'foo'
9
9
  end
10
10
 
11
11
  it "should not be able to access non-site-specific fixtures" do
12
- lambda{foos(:gap)}.should raise_error(NoMethodError)
12
+ expect(lambda{foos(:gap)}).to raise_error(NoMethodError)
13
13
  end
14
14
  end
@@ -8,12 +8,14 @@ require 'taza/page'
8
8
  require 'taza/flow'
9
9
 
10
10
  describe Taza::Site do
11
+ before(:all) do
12
+ Foo = Class.new(Taza::Site)
13
+ end
11
14
  #TODO: we need to clean up these tests and remove the warning below
12
15
  #/Users/bisbot/Projects/Taza/taza/spec/taza/site_spec.rb:15: warning: already initialized constant Foo
13
16
  before :each do
14
- @pages_path = File.join(@original_directory, "spec","sandbox","pages","foo","**","*.rb")
15
- @flows_path = File.join(@original_directory, "spec","sandbox","flows","*.rb")
16
- Foo = Class.new(Taza::Site)
17
+ @pages_path = File.join(@original_directory, 'spec', 'sandbox', 'pages', 'foo', '**', '*.rb')
18
+ @flows_path = File.join(@original_directory, 'spec', 'sandbox', 'flows', '*.rb')
17
19
  Foo.any_instance.stubs(:pages_path).returns(@pages_path)
18
20
  ENV['BROWSER'] = nil
19
21
  ENV['DRIVER'] = nil
@@ -22,23 +24,23 @@ describe Taza::Site do
22
24
  Taza::Site.before_browser_closes {}
23
25
  end
24
26
 
25
- it "pages_path should contain the site class name" do
27
+ it 'pages_path should contain the site class name' do
26
28
  browser = stub_browser
27
29
  Taza::Browser.stubs(:create).returns(browser)
28
30
  Bax = Class.new(Taza::Site)
29
- Bax.new.pages_path.should eql("./lib/sites/bax/pages/**/*.rb")
31
+ expect(Bax.new.pages_path).to eql './lib/sites/bax/pages/**/*.rb'
30
32
  end
31
33
 
32
- it "should have flows defined as instance methods" do
34
+ it 'should have flows defined as instance methods' do
33
35
  browser = stub_browser
34
36
  Taza::Browser.stubs(:create).returns(browser)
35
37
  Barz = Class.new(Taza::Site)
36
38
  Barz.any_instance.stubs(:path).returns("#{@original_directory}/spec/sandbox/")
37
39
  Barz.any_instance.stubs(:flows_path).returns("#{@original_directory}/spec/sandbox/flows/batman.rb")
38
- Barz.new.batman_flow.should == "i am batman"
40
+ expect(Barz.new.batman_flow).to eql 'i am batman'
39
41
  end
40
42
 
41
- it "should open watir browsers at the configuration URL" do
43
+ it 'should open watir browsers at the configuration URL' do
42
44
  browser = stub_browser
43
45
  browser.expects(:goto).with('a_url')
44
46
  Taza::Browser.stubs(:create).returns(browser)
@@ -46,37 +48,36 @@ describe Taza::Site do
46
48
  Foo.new
47
49
  end
48
50
 
49
- it "should yield an instance of a page class" do
51
+ it 'should yield an instance of a page class' do
50
52
  f = Foo.new(:browser => stub_browser)
51
53
  barzor = nil
52
54
  f.bar do |bar|
53
55
  barzor = bar
54
56
  end
55
- barzor.should be_an_instance_of(Bar)
57
+ expect(barzor).to be_an_instance_of Bar
56
58
  end
57
59
 
58
- it "should accept a browser instance" do
60
+ it 'should accept a browser instance' do
59
61
  browser = stub_browser
60
62
  foo = Foo.new(:browser => browser)
61
- foo.browser.should eql(browser)
62
-
63
+ expect(foo.browser).to eql browser
63
64
  end
64
65
 
65
- it "should create a browser instance if one is not provided" do
66
+ it 'should create a browser instance if one is not provided' do
66
67
  browser = stub_browser
67
68
  Taza::Browser.stubs(:create).returns(browser)
68
69
  foo = Foo.new
69
- foo.browser.should eql(browser)
70
+ expect(foo.browser).to eql browser
70
71
  end
71
72
 
72
- it "should still close browser if an error is raised" do
73
+ it 'should still close browser if an error is raised' do
73
74
  browser = stub_browser
74
75
  browser.expects(:close)
75
76
  Taza::Browser.stubs(:create).returns(browser)
76
- lambda { Foo.new { |site| raise StandardError}}.should raise_error
77
+ expect(lambda { Foo.new { |site| raise StandardError } }).to raise_error(StandardError)
77
78
  end
78
79
 
79
- it "should not close browser if block not given" do
80
+ it 'should not close browser if block not given' do
80
81
  browser = stub
81
82
  browser.stubs(:goto)
82
83
  browser.expects(:close).never
@@ -84,29 +85,29 @@ describe Taza::Site do
84
85
  Foo.new
85
86
  end
86
87
 
87
- it "should not close browser if an error is raised on browser goto" do
88
+ it 'should not close browser if an error is raised on browser goto' do
88
89
  browser = Object.new
89
- browser.stubs(:goto).raises(StandardError,"ErrorOnBrowserGoto")
90
+ browser.stubs(:goto).raises(StandardError, 'ErrorOnBrowserGoto')
90
91
  browser.expects(:close).never
91
92
  Taza::Browser.stubs(:create).returns(browser)
92
- lambda { Foo.new }.should raise_error(StandardError,"ErrorOnBrowserGoto")
93
+ expect(lambda { Foo.new }).to raise_error(StandardError, 'ErrorOnBrowserGoto')
93
94
  end
94
95
 
95
- it "should raise browser close error if no other errors" do
96
+ it 'should raise browser close error if no other errors' do
96
97
  browser = stub_browser
97
- browser.expects(:close).raises(StandardError,"BrowserCloseError")
98
+ browser.expects(:close).raises(StandardError, 'BrowserCloseError')
98
99
  Taza::Browser.stubs(:create).returns(browser)
99
- lambda { Foo.new {}}.should raise_error(StandardError,"BrowserCloseError")
100
+ expect(lambda { Foo.new {} }).to raise_error(StandardError, 'BrowserCloseError')
100
101
  end
101
102
 
102
- it "should raise error inside block if both it and browser.close throws an error" do
103
+ it 'should raise error inside block if both it and browser.close throws an error' do
103
104
  browser = stub_browser
104
- browser.expects(:close).raises(StandardError,"BrowserCloseError")
105
+ browser.expects(:close).raises(StandardError, 'BrowserCloseError')
105
106
  Taza::Browser.stubs(:create).returns(browser)
106
- lambda { Foo.new { |site| raise StandardError, "innererror" }}.should raise_error(StandardError,"innererror")
107
+ expect(lambda { Foo.new { |site| raise StandardError, 'innererror' } }).to raise_error(StandardError, 'innererror')
107
108
  end
108
109
 
109
- it "should close a browser if block given" do
110
+ it 'should close a browser if block given' do
110
111
  browser = stub_browser
111
112
  browser.expects(:close)
112
113
  Taza::Browser.stubs(:create).returns(browser)
@@ -114,41 +115,41 @@ describe Taza::Site do
114
115
  end
115
116
  end
116
117
 
117
- it "should yield itself upon initialization" do
118
+ it 'should yield itself upon initialization' do
118
119
  Taza::Browser.stubs(:create).returns(stub_browser)
119
120
  foo = nil
120
121
  f = Foo.new do |site|
121
122
  foo = site
122
123
  end
123
- foo.should eql(f)
124
+ expect(foo).to eql f
124
125
  end
125
126
 
126
- it "should yield after page methods have been setup" do
127
+ it 'should yield after page methods have been setup' do
127
128
  Taza::Browser.stubs(:create).returns(stub_browser)
128
129
  klass = Class::new(Taza::Site)
129
130
  klass.any_instance.stubs(:pages_path).returns(@pages_path)
130
131
  klass.new do |site|
131
- site.should respond_to(:bar)
132
+ expect(site).to respond_to :bar
132
133
  end
133
134
  end
134
135
 
135
- it "should yield after browser has been setup" do
136
+ it 'should yield after browser has been setup' do
136
137
  Taza::Browser.stubs(:create).returns(stub_browser)
137
138
  klass = Class::new(Taza::Site)
138
139
  klass.any_instance.stubs(:pages_path).returns(@pages_path)
139
140
  klass.new do |site|
140
- site.browser.should_not be_nil
141
+ expect(site.browser).to_not be_nil
141
142
  end
142
143
  end
143
144
 
144
- it "should pass its browser instance to its pages " do
145
+ it 'should pass its browser instance to its pages ' do
145
146
  browser = stub_browser
146
147
  Taza::Browser.stubs(:create).returns(browser)
147
148
  foo = Foo.new
148
- foo.bar.browser.should eql(browser)
149
+ expect(foo.bar.browser).to eql browser
149
150
  end
150
151
 
151
- it "should add partials defined under the pages directory" do
152
+ it 'should add partials defined under the pages directory' do
152
153
  Taza::Browser.stubs(:create).returns(stub_browser)
153
154
  klass = Class::new(Taza::Site)
154
155
  klass.any_instance.stubs(:pages_path).returns(@pages_path)
@@ -157,9 +158,8 @@ describe Taza::Site do
157
158
  end
158
159
  end
159
160
 
160
- it "should have a way to evaluate a block of code before site closes the browser" do
161
- browser = stub()
162
- browser.stubs(:goto)
161
+ it 'should have a way to evaluate a block of code before site closes the browser' do
162
+ browser = stub_browser
163
163
  Taza::Browser.stubs(:create).returns(browser)
164
164
  browser_state = states('browser_open_state').starts_as('on')
165
165
  browser.expects(:close).then(browser_state.is('off'))
@@ -168,37 +168,33 @@ describe Taza::Site do
168
168
  Foo.new {}
169
169
  end
170
170
 
171
- it "should have a way to evaluate a block of code before site closes the browser if an error occurs" do
172
- browser = stub()
173
- browser.stubs(:goto)
171
+ it 'should have a way to evaluate a block of code before site closes the browser if an error occurs' do
172
+ browser = stub_browser
174
173
  Taza::Browser.stubs(:create).returns(browser)
175
174
  browser_state = states('browser_open_state').starts_as('on')
176
175
  browser.expects(:close).then(browser_state.is('off'))
177
176
  browser.expects(:doit).when(browser_state.is('on'))
178
177
  Taza::Site.before_browser_closes { |browser| browser.doit }
179
- lambda { Foo.new { |site| raise StandardError, "innererror" }}.should raise_error(StandardError,"innererror")
178
+ expect(lambda { Foo.new { |site| raise StandardError, 'innererror' } }).to raise_error(StandardError, 'innererror')
180
179
  end
181
180
 
182
- it "should still close its browser if #before_browser_closes raises an exception" do
183
- browser = stub()
184
- browser.stubs(:goto)
181
+ it 'should still close its browser if #before_browser_closes raises an exception' do
182
+ browser = stub_browser
185
183
  Taza::Browser.stubs(:create).returns(browser)
186
184
  browser.expects(:close)
187
185
  Taza::Site.before_browser_closes { |browser| raise StandardError, 'foo error' }
188
- lambda { Foo.new {} }.should raise_error(StandardError,'foo error')
186
+ expect(lambda { Foo.new {} }).to raise_error(StandardError, 'foo error')
189
187
  end
190
188
 
191
- it "should not close a browser it did not make" do
192
- browser = stub()
193
- browser.stubs(:goto)
189
+ it 'should not close a browser it did not make' do
190
+ browser = stub_browser
194
191
  browser.expects(:close).never
195
192
  Foo.new(:browser => browser) {}
196
193
  end
197
194
 
198
- it "should close a browser it did make" do
199
- browser = stub()
195
+ it 'should close a browser it did make' do
196
+ browser = stub_browser
200
197
  Taza::Browser.stubs(:create).returns(browser)
201
- browser.stubs(:goto)
202
198
  browser.expects(:close)
203
199
  Foo.new() {}
204
200
  end
@@ -209,46 +205,45 @@ describe Taza::Site do
209
205
  end
210
206
  end
211
207
 
212
- it "should pass in the class name to settings config" do
213
- browser = stub()
214
- browser.stubs(:goto)
208
+ it 'should pass in the class name to settings config' do
209
+ browser = stub_browser
215
210
  Taza::Browser.stubs(:create).returns(browser)
216
211
  Taza::Settings.expects(:config).with('Zoro').returns({})
217
212
  Zoro::Zoro.new
218
213
  end
219
214
 
220
- it "should load settings based on the sites class name" do
215
+ it 'should load settings based on the sites class name' do
221
216
  Taza::Settings.expects(:site_file).with('Zoro').returns({})
222
217
  Zoro::Zoro.settings
223
218
  end
224
219
 
225
220
  def stub_browser
226
- browser = stub()
221
+ browser = stub
227
222
  browser.stubs(:close)
228
223
  browser.stubs(:goto)
229
224
  browser
230
225
  end
231
226
 
232
- it "should yield an instance of page class that can access page-module specific elements" do
227
+ it 'should yield an instance of page class that can access page-module specific elements' do
233
228
  f = Foo.new(:browser => stub_browser)
234
229
  barzor = nil
235
230
  f.baz(:module) do |baz|
236
231
  barzor = baz
237
232
  end
238
- barzor.should be_an_instance_of(Baz)
239
- barzor.some_element.should eql(:some_element_value)
233
+ expect(barzor).to be_an_instance_of Baz
234
+ expect(barzor.some_element).to eql :some_element_value
240
235
  end
241
236
 
242
- it "should raise an error when accessing an element that belongs to another module" do
237
+ it 'should raise an error when accessing an element that belongs to another module' do
243
238
  f = Foo.new(:browser => stub_browser)
244
239
  barzor = nil
245
240
  f.baz(:another_module) do |baz|
246
241
  barzor = baz
247
242
  end
248
- lambda{barzor.other_element}.should raise_error(NoMethodError)
243
+ expect(lambda { barzor.other_element }).to raise_error(NoMethodError)
249
244
  end
250
245
 
251
- it "should have a way to keep the browser instance open" do
246
+ it 'should have a way to keep the browser instance open' do
252
247
  browser = stub_browser
253
248
  browser.expects(:close).never
254
249
  Taza::Browser.stubs(:create).returns(browser)
@@ -256,11 +251,11 @@ describe Taza::Site do
256
251
  Foo.new {}
257
252
  end
258
253
 
259
- it "should have a way to keep the browser instance open if an error is raised" do
254
+ it 'should have a way to keep the browser instance open if an error is raised' do
260
255
  browser = stub_browser
261
256
  browser.expects(:close).never
262
257
  Taza::Browser.stubs(:create).returns(browser)
263
258
  Taza::Site.donot_close_browser
264
- lambda { Foo.new { |site| raise StandardError}}.should raise_error
259
+ expect(lambda { Foo.new { |site| raise StandardError } }).to raise_error(StandardError)
265
260
  end
266
261
  end
@@ -3,10 +3,10 @@ require 'extensions/string'
3
3
 
4
4
  describe "string extensions" do
5
5
  it "should pluralize and to sym a string" do
6
- "apple".pluralize_to_sym.should eql(:apples)
6
+ expect("apple".pluralize_to_sym).to eql :apples
7
7
  end
8
8
 
9
9
  it "should variablize words with spaces" do
10
- "foo - BAR".variablize.should eql("foo_bar")
10
+ expect("foo - BAR".variablize).to eql 'foo_bar'
11
11
  end
12
12
  end
@@ -18,13 +18,14 @@ Gem::Specification.new do |s|
18
18
  s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
19
19
  s.require_paths = ["lib"]
20
20
 
21
- s.add_runtime_dependency(%q<rake>, ["~> 0.9.2"])
22
- s.add_runtime_dependency(%q<mocha>, ["~> 0.9.3"])
23
- s.add_runtime_dependency(%q<rspec>, ["~> 2.6"])
21
+ s.add_runtime_dependency(%q<rake>, [">= 0.9.2"])
22
+ s.add_runtime_dependency(%q<mocha>, [">= 0.9.3"])
24
23
  s.add_runtime_dependency(%q<user-choices>, ["~> 1.1.6.1"])
25
24
  s.add_runtime_dependency(%q<Selenium>, ["~> 1.1.14"])
26
25
  s.add_runtime_dependency(%q<firewatir>, ["~> 1.9.4"])
27
26
  s.add_runtime_dependency(%q<watir-webdriver>, ["~> 0.4"])
27
+ s.add_runtime_dependency(%q<watir>, ["~> 5.0.0"])
28
28
  s.add_runtime_dependency(%q<activesupport>, [">= 3.1.0"])
29
29
  s.add_runtime_dependency(%q<thor>, [">= 0.18.1"])
30
+ s.add_runtime_dependency(%q<rspec>, ["~> 3.0"])
30
31
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: taza
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.2.1
4
+ version: '1.0'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Anderson
@@ -10,134 +10,148 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2014-03-26 00:00:00.000000000 Z
13
+ date: 2016-01-11 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rake
17
17
  requirement: !ruby/object:Gem::Requirement
18
18
  requirements:
19
- - - "~>"
19
+ - - ! '>='
20
20
  - !ruby/object:Gem::Version
21
21
  version: 0.9.2
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
25
25
  requirements:
26
- - - "~>"
26
+ - - ! '>='
27
27
  - !ruby/object:Gem::Version
28
28
  version: 0.9.2
29
29
  - !ruby/object:Gem::Dependency
30
30
  name: mocha
31
31
  requirement: !ruby/object:Gem::Requirement
32
32
  requirements:
33
- - - "~>"
33
+ - - ! '>='
34
34
  - !ruby/object:Gem::Version
35
35
  version: 0.9.3
36
36
  type: :runtime
37
37
  prerelease: false
38
38
  version_requirements: !ruby/object:Gem::Requirement
39
39
  requirements:
40
- - - "~>"
40
+ - - ! '>='
41
41
  - !ruby/object:Gem::Version
42
42
  version: 0.9.3
43
- - !ruby/object:Gem::Dependency
44
- name: rspec
45
- requirement: !ruby/object:Gem::Requirement
46
- requirements:
47
- - - "~>"
48
- - !ruby/object:Gem::Version
49
- version: '2.6'
50
- type: :runtime
51
- prerelease: false
52
- version_requirements: !ruby/object:Gem::Requirement
53
- requirements:
54
- - - "~>"
55
- - !ruby/object:Gem::Version
56
- version: '2.6'
57
43
  - !ruby/object:Gem::Dependency
58
44
  name: user-choices
59
45
  requirement: !ruby/object:Gem::Requirement
60
46
  requirements:
61
- - - "~>"
47
+ - - ~>
62
48
  - !ruby/object:Gem::Version
63
49
  version: 1.1.6.1
64
50
  type: :runtime
65
51
  prerelease: false
66
52
  version_requirements: !ruby/object:Gem::Requirement
67
53
  requirements:
68
- - - "~>"
54
+ - - ~>
69
55
  - !ruby/object:Gem::Version
70
56
  version: 1.1.6.1
71
57
  - !ruby/object:Gem::Dependency
72
58
  name: Selenium
73
59
  requirement: !ruby/object:Gem::Requirement
74
60
  requirements:
75
- - - "~>"
61
+ - - ~>
76
62
  - !ruby/object:Gem::Version
77
63
  version: 1.1.14
78
64
  type: :runtime
79
65
  prerelease: false
80
66
  version_requirements: !ruby/object:Gem::Requirement
81
67
  requirements:
82
- - - "~>"
68
+ - - ~>
83
69
  - !ruby/object:Gem::Version
84
70
  version: 1.1.14
85
71
  - !ruby/object:Gem::Dependency
86
72
  name: firewatir
87
73
  requirement: !ruby/object:Gem::Requirement
88
74
  requirements:
89
- - - "~>"
75
+ - - ~>
90
76
  - !ruby/object:Gem::Version
91
77
  version: 1.9.4
92
78
  type: :runtime
93
79
  prerelease: false
94
80
  version_requirements: !ruby/object:Gem::Requirement
95
81
  requirements:
96
- - - "~>"
82
+ - - ~>
97
83
  - !ruby/object:Gem::Version
98
84
  version: 1.9.4
99
85
  - !ruby/object:Gem::Dependency
100
86
  name: watir-webdriver
101
87
  requirement: !ruby/object:Gem::Requirement
102
88
  requirements:
103
- - - "~>"
89
+ - - ~>
104
90
  - !ruby/object:Gem::Version
105
91
  version: '0.4'
106
92
  type: :runtime
107
93
  prerelease: false
108
94
  version_requirements: !ruby/object:Gem::Requirement
109
95
  requirements:
110
- - - "~>"
96
+ - - ~>
111
97
  - !ruby/object:Gem::Version
112
98
  version: '0.4'
99
+ - !ruby/object:Gem::Dependency
100
+ name: watir
101
+ requirement: !ruby/object:Gem::Requirement
102
+ requirements:
103
+ - - ~>
104
+ - !ruby/object:Gem::Version
105
+ version: 5.0.0
106
+ type: :runtime
107
+ prerelease: false
108
+ version_requirements: !ruby/object:Gem::Requirement
109
+ requirements:
110
+ - - ~>
111
+ - !ruby/object:Gem::Version
112
+ version: 5.0.0
113
113
  - !ruby/object:Gem::Dependency
114
114
  name: activesupport
115
115
  requirement: !ruby/object:Gem::Requirement
116
116
  requirements:
117
- - - ">="
117
+ - - ! '>='
118
118
  - !ruby/object:Gem::Version
119
119
  version: 3.1.0
120
120
  type: :runtime
121
121
  prerelease: false
122
122
  version_requirements: !ruby/object:Gem::Requirement
123
123
  requirements:
124
- - - ">="
124
+ - - ! '>='
125
125
  - !ruby/object:Gem::Version
126
126
  version: 3.1.0
127
127
  - !ruby/object:Gem::Dependency
128
128
  name: thor
129
129
  requirement: !ruby/object:Gem::Requirement
130
130
  requirements:
131
- - - ">="
131
+ - - ! '>='
132
132
  - !ruby/object:Gem::Version
133
133
  version: 0.18.1
134
134
  type: :runtime
135
135
  prerelease: false
136
136
  version_requirements: !ruby/object:Gem::Requirement
137
137
  requirements:
138
- - - ">="
138
+ - - ! '>='
139
139
  - !ruby/object:Gem::Version
140
140
  version: 0.18.1
141
+ - !ruby/object:Gem::Dependency
142
+ name: rspec
143
+ requirement: !ruby/object:Gem::Requirement
144
+ requirements:
145
+ - - ~>
146
+ - !ruby/object:Gem::Version
147
+ version: '3.0'
148
+ type: :runtime
149
+ prerelease: false
150
+ version_requirements: !ruby/object:Gem::Requirement
151
+ requirements:
152
+ - - ~>
153
+ - !ruby/object:Gem::Version
154
+ version: '3.0'
141
155
  description: Taza is an opinionated page object framework.
142
156
  email:
143
157
  - watir-general@googlegroups.com
@@ -146,9 +160,10 @@ executables:
146
160
  extensions: []
147
161
  extra_rdoc_files: []
148
162
  files:
149
- - ".gitignore"
150
- - ".rvmrc"
151
- - ".travis.yml"
163
+ - .gitignore
164
+ - .ruby-gemset
165
+ - .ruby-version
166
+ - .travis.yml
152
167
  - Gemfile
153
168
  - History.txt
154
169
  - Manifest.txt
@@ -162,7 +177,6 @@ files:
162
177
  - lib/extensions/string.rb
163
178
  - lib/formatters/failing_examples_formatter.rb
164
179
  - lib/taza.rb
165
- - lib/taza.rb.backup
166
180
  - lib/taza/browser.rb
167
181
  - lib/taza/entity.rb
168
182
  - lib/taza/fixture.rb
@@ -237,17 +251,17 @@ require_paths:
237
251
  - lib
238
252
  required_ruby_version: !ruby/object:Gem::Requirement
239
253
  requirements:
240
- - - ">="
254
+ - - ! '>='
241
255
  - !ruby/object:Gem::Version
242
256
  version: 1.9.3
243
257
  required_rubygems_version: !ruby/object:Gem::Requirement
244
258
  requirements:
245
- - - ">="
259
+ - - ! '>='
246
260
  - !ruby/object:Gem::Version
247
261
  version: '0'
248
262
  requirements: []
249
263
  rubyforge_project: taza
250
- rubygems_version: 2.2.2
264
+ rubygems_version: 2.4.8
251
265
  signing_key:
252
266
  specification_version: 4
253
267
  summary: Taza is an opinionated page object framework.