orderly 0.0.3 → 0.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: cb208895e2540f7de44eceadbd6cbf73b712cb66
4
- data.tar.gz: f89ddea90e2582050f2576006fb40ac3c5096541
2
+ SHA256:
3
+ metadata.gz: cea3ece86863bb26014c5444e2ef64b1cbae500fe21e72cd9acade819b2787be
4
+ data.tar.gz: 234a6c96a889e2b8ba46aa804601edc53f07cdbdc9eaf8ab8b82ca96b7e254ba
5
5
  SHA512:
6
- metadata.gz: 104a2be0033d752ccb3a9fa17ad9aafb33940c672903531458ebd62cf1d83f645c41fdd0168abb49d895d2880945328e895b05e5da7b031226622e6c25dcca73
7
- data.tar.gz: 11d9d2085d4d2bc27ad162a286c1903e23a5644ad1b9bf9ef351cfbf10f6d371587d23ec7a6205a0b7c36170e2f9fc3f571919c9eb7b8e8ed90ce17bdb6a2d91
6
+ metadata.gz: 7ebadf197892f14c1be4097868cbc029327f49dd92af25f302be83e6a18bb06fc8c12d019c5273940bfd37dd548ce048d1b7c5e3fd00d28345994e904a3881eb
7
+ data.tar.gz: c77f6fe4aa0e51972dc1226519e3979bc8c26c527ff307ba1e7a8c0f1d3e4be5b2b8888e1926f302b5d5169deb6e4d1e092aca967090035bbdadd02a10f443cc
data/.gitignore CHANGED
@@ -15,3 +15,4 @@ spec/reports
15
15
  test/tmp
16
16
  test/version_tmp
17
17
  tmp
18
+ gemfiles/*gemfile.lock
@@ -1,17 +1,28 @@
1
1
  rvm:
2
- - 1.9.3
3
- - 2.0.0
4
- - 2.1.7
5
- - 2.2.4
2
+ - 2.0
3
+ - 2.4
6
4
  script: 'bundle exec rake'
7
5
  gemfile:
8
6
  - gemfiles/capybara_1.1.gemfile
9
7
  - gemfiles/capybara_2.0.gemfile
10
- - gemfiles/capybara_2.1.gemfile
11
- - gemfiles/capybara_2.2.gemfile
12
- - gemfiles/capybara_2.3.gemfile
13
- - gemfiles/capybara_2.4_rspec_2.gemfile
14
- - gemfiles/capybara_2.4_rspec_3.gemfile
15
-
8
+ - gemfiles/capybara_3.0.gemfile
9
+ - gemfiles/rspec_2.gemfile
10
+ env:
11
+ - DRIVER=rack_test
12
+ - DRIVER=selenium_chrome_headless
13
+ matrix:
14
+ exclude:
15
+ - rvm: 2.0
16
+ env: DRIVER=selenium_chrome_headless
17
+ - rvm: 2.0
18
+ gemfile: gemfiles/capybara_3.0.gemfile
19
+ - gemfile: gemfiles/capybara_1.1.gemfile
20
+ env: DRIVER=selenium_chrome_headless
21
+ - gemfile: gemfiles/capybara_2.0.gemfile
22
+ env: DRIVER=selenium_chrome_headless
23
+ - gemfile: gemfiles/rspec_2.gemfile
24
+ env: DRIVER=selenium_chrome_headless
16
25
  cache: bundler
17
26
  sudo: false
27
+ addons:
28
+ chrome: stable
data/Appraisals CHANGED
@@ -3,27 +3,15 @@ appraise 'capybara-1.1' do
3
3
  end
4
4
 
5
5
  appraise 'capybara-2.0' do
6
- gem 'capybara', '~> 2.0.0'
6
+ gem 'capybara', '~> 2.0'
7
7
  end
8
8
 
9
- appraise 'capybara-2.1' do
10
- gem 'capybara', '~> 2.1.0'
11
- end
12
-
13
- appraise 'capybara-2.2' do
14
- gem 'capybara', '~> 2.2.0'
15
- end
16
-
17
- appraise 'capybara-2.3' do
18
- gem 'capybara', '~> 2.3.0'
19
- end
20
-
21
- appraise 'capybara-2.4-rspec-2' do
9
+ appraise 'rspec-2' do
22
10
  gem 'rspec', '~> 2.99.0'
23
- gem 'capybara', '~> 2.4.0'
11
+ gem 'capybara', '~> 2.0'
12
+ gem 'rake', '~> 10.0'
24
13
  end
25
14
 
26
- appraise 'capybara-2.4-rspec-3' do
27
- gem 'rspec', '~> 3.0.0'
28
- gem 'capybara', '~> 2.4.0'
15
+ appraise 'capybara-3.0' do
16
+ gem 'capybara', '~> 3.0'
29
17
  end
data/README.md CHANGED
@@ -29,8 +29,12 @@ or, to assert that something does not appear before
29
29
  this.should_not appear_before(that)
30
30
  # or
31
31
  expect(this).to_not appear_before(that)
32
-
32
+
33
33
  Error handling in place for cases where this or that does not appear on the page.
34
34
 
35
+ ## Changelog
36
+ ### 0.1.0 (2019-08-08)
37
+ - Add support for capybara `within`-blocks
38
+
35
39
  ## Contributing
36
40
  Patches welcome! Submit a pull request.
@@ -2,6 +2,6 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "capybara", "~> 2.0.0"
5
+ gem "capybara", "~> 2.0"
6
6
 
7
7
  gemspec :path => "../"
@@ -2,6 +2,6 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "capybara", "~> 2.2.0"
5
+ gem "capybara", "~> 3.0"
6
6
 
7
7
  gemspec :path => "../"
@@ -3,6 +3,7 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "rspec", "~> 2.99.0"
6
- gem "capybara", "~> 2.4.0"
6
+ gem "capybara", "~> 2.0"
7
+ gem "rake", "~> 10.0"
7
8
 
8
9
  gemspec :path => "../"
@@ -5,12 +5,24 @@ module Orderly
5
5
  RSpec::Matchers.define :appear_before do |later_content|
6
6
  match do |earlier_content|
7
7
  begin
8
- page.body.index(earlier_content) < page.body.index(later_content)
8
+ node = page.respond_to?(:current_scope) ? page.current_scope : page.send(:current_node)
9
+ html = html_for_node(node)
10
+ html.index(earlier_content) < html.index(later_content)
9
11
  rescue ArgumentError
10
12
  raise "Could not locate later content on page: #{later_content}"
11
13
  rescue NoMethodError
12
14
  raise "Could not locate earlier content on page: #{earlier_content}"
13
15
  end
14
16
  end
17
+
18
+ def html_for_node(node)
19
+ if node.is_a?(Capybara::Node::Document)
20
+ page.body
21
+ elsif node.native.respond_to?(:inner_html)
22
+ node.native.inner_html
23
+ else
24
+ page.driver.evaluate_script("arguments[0].innerHTML", node.native)
25
+ end
26
+ end
15
27
  end
16
28
  end
@@ -1,3 +1,3 @@
1
1
  module Orderly
2
- VERSION = "0.0.3"
2
+ VERSION = "0.1.0".freeze
3
3
  end
@@ -22,4 +22,6 @@ Gem::Specification.new do |gem|
22
22
  gem.add_development_dependency "mocha", "~> 1.1"
23
23
  gem.add_development_dependency "sinatra", "~> 1.4"
24
24
  gem.add_development_dependency "appraisal", "~> 1.0"
25
+ gem.add_development_dependency "selenium-webdriver"
26
+ gem.add_development_dependency "webdrivers"
25
27
  end
@@ -5,9 +5,8 @@ describe Orderly do
5
5
  let(:this) { "<p>One piece of content</p>" }
6
6
  let(:that) { "<p>Another piece of content</p>" }
7
7
 
8
- let(:page) do
9
- Capybara::Session.new(:rack_test, TestApp)
10
- end
8
+ let(:capybara_driver) { ENV.fetch("DRIVER", :rack_test).to_sym }
9
+ let(:page) { Capybara::Session.new(capybara_driver, TestApp) }
11
10
 
12
11
  describe "appear_before" do
13
12
  it "asserts this is before that" do
@@ -33,6 +32,23 @@ describe Orderly do
33
32
  expect { expect(this).to appear_before(that) }.to raise_error error_text
34
33
  expect { expect(this).not_to appear_before(that) }.to raise_error error_text
35
34
  end
36
- end
37
35
 
36
+ context "handling within blocks" do
37
+ specify "using a Capybara within block" do
38
+ page.visit "/thatthisthatthis"
39
+
40
+ expect(that).to appear_before this
41
+
42
+ page.within ".outer-div" do
43
+ expect(this).to appear_before that
44
+ expect(that).to_not appear_before this
45
+ end
46
+
47
+ page.within ".inner-div" do
48
+ expect(that).to appear_before this
49
+ expect(this).to_not appear_before that
50
+ end
51
+ end
52
+ end
53
+ end
38
54
  end
@@ -18,3 +18,6 @@ RSpec.configure do |config|
18
18
  config.filter_run :focus
19
19
  config.mock_with :mocha
20
20
  end
21
+
22
+ require "webdrivers" if ENV["DRIVER"] == "selenium_chrome_headless"
23
+ Capybara.server = :webrick if Capybara.respond_to?(:server=)
@@ -24,4 +24,13 @@ class TestApp < Sinatra::Base
24
24
  this
25
25
  end
26
26
 
27
+ get '/thatthisthatthis' do
28
+ "#{that}
29
+ <div class='outer-div'>
30
+ #{this}
31
+ <div class='inner-div'>
32
+ #{that + this}
33
+ </div>
34
+ </div>"
35
+ end
27
36
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: orderly
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Gesimondo
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-01-16 00:00:00.000000000 Z
11
+ date: 2019-08-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec
@@ -80,6 +80,34 @@ dependencies:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
82
  version: '1.0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: selenium-webdriver
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: webdrivers
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
83
111
  description: 'orderly: an rspec assertion for request specs to assert that one piece
84
112
  of content appears on the page before another.'
85
113
  email:
@@ -97,23 +125,9 @@ files:
97
125
  - README.md
98
126
  - Rakefile
99
127
  - gemfiles/capybara_1.1.gemfile
100
- - gemfiles/capybara_1.1.gemfile.lock
101
128
  - gemfiles/capybara_2.0.gemfile
102
- - gemfiles/capybara_2.0.gemfile.lock
103
- - gemfiles/capybara_2.1.gemfile
104
- - gemfiles/capybara_2.1.gemfile.lock
105
- - gemfiles/capybara_2.2.gemfile
106
- - gemfiles/capybara_2.2.gemfile.lock
107
- - gemfiles/capybara_2.3.gemfile
108
- - gemfiles/capybara_2.3.gemfile.lock
109
- - gemfiles/capybara_2.4.gemfile
110
- - gemfiles/capybara_2.4.gemfile.lock
111
- - gemfiles/capybara_2.4_rspec_2.14.gemfile
112
- - gemfiles/capybara_2.4_rspec_2.14.gemfile.lock
113
- - gemfiles/capybara_2.4_rspec_2.gemfile
114
- - gemfiles/capybara_2.4_rspec_2.gemfile.lock
115
- - gemfiles/capybara_2.4_rspec_3.gemfile
116
- - gemfiles/capybara_2.4_rspec_3.gemfile.lock
129
+ - gemfiles/capybara_3.0.gemfile
130
+ - gemfiles/rspec_2.gemfile
117
131
  - lib/orderly.rb
118
132
  - lib/orderly/version.rb
119
133
  - orderly.gemspec
@@ -138,8 +152,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
138
152
  - !ruby/object:Gem::Version
139
153
  version: '0'
140
154
  requirements: []
141
- rubyforge_project: orderly
142
- rubygems_version: 2.4.5
155
+ rubygems_version: 3.0.4
143
156
  signing_key:
144
157
  specification_version: 4
145
158
  summary: Assert this is before that
@@ -1,76 +0,0 @@
1
- PATH
2
- remote: ../
3
- specs:
4
- orderly (0.0.2)
5
- capybara (>= 1.1)
6
- rspec (>= 2.14)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- appraisal (1.0.0)
12
- bundler
13
- rake
14
- thor (>= 0.14.0)
15
- capybara (1.1.2)
16
- mime-types (>= 1.16)
17
- nokogiri (>= 1.3.3)
18
- rack (>= 1.0.0)
19
- rack-test (>= 0.5.4)
20
- selenium-webdriver (~> 2.0)
21
- xpath (~> 0.1.4)
22
- childprocess (0.5.1)
23
- ffi (~> 1.0, >= 1.0.11)
24
- diff-lcs (1.2.5)
25
- ffi (1.9.3)
26
- metaclass (0.0.4)
27
- mime-types (2.3)
28
- mini_portile (0.6.0)
29
- mocha (1.1.0)
30
- metaclass (~> 0.0.1)
31
- multi_json (1.10.1)
32
- nokogiri (1.6.2.1)
33
- mini_portile (= 0.6.0)
34
- rack (1.5.2)
35
- rack-protection (1.5.3)
36
- rack
37
- rack-test (0.6.2)
38
- rack (>= 1.0)
39
- rake (10.3.2)
40
- rspec (3.0.0)
41
- rspec-core (~> 3.0.0)
42
- rspec-expectations (~> 3.0.0)
43
- rspec-mocks (~> 3.0.0)
44
- rspec-core (3.0.4)
45
- rspec-support (~> 3.0.0)
46
- rspec-expectations (3.0.4)
47
- diff-lcs (>= 1.2.0, < 2.0)
48
- rspec-support (~> 3.0.0)
49
- rspec-mocks (3.0.4)
50
- rspec-support (~> 3.0.0)
51
- rspec-support (3.0.4)
52
- rubyzip (1.1.1)
53
- selenium-webdriver (2.40.0)
54
- childprocess (>= 0.5.0)
55
- multi_json (~> 1.0)
56
- rubyzip (~> 1.0)
57
- websocket (~> 1.0.4)
58
- sinatra (1.4.5)
59
- rack (~> 1.4)
60
- rack-protection (~> 1.4)
61
- tilt (~> 1.3, >= 1.3.4)
62
- thor (0.19.1)
63
- tilt (1.4.1)
64
- websocket (1.0.7)
65
- xpath (0.1.4)
66
- nokogiri (~> 1.3)
67
-
68
- PLATFORMS
69
- ruby
70
-
71
- DEPENDENCIES
72
- appraisal (~> 1.0)
73
- capybara (~> 1.1)
74
- mocha (~> 1.1)
75
- orderly!
76
- sinatra (~> 1.4)
@@ -1,76 +0,0 @@
1
- PATH
2
- remote: ../
3
- specs:
4
- orderly (0.0.2)
5
- capybara (>= 1.1)
6
- rspec (>= 2.14)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- appraisal (1.0.0)
12
- bundler
13
- rake
14
- thor (>= 0.14.0)
15
- capybara (2.0.3)
16
- mime-types (>= 1.16)
17
- nokogiri (>= 1.3.3)
18
- rack (>= 1.0.0)
19
- rack-test (>= 0.5.4)
20
- selenium-webdriver (~> 2.0)
21
- xpath (~> 1.0.0)
22
- childprocess (0.5.3)
23
- ffi (~> 1.0, >= 1.0.11)
24
- diff-lcs (1.2.5)
25
- ffi (1.9.3)
26
- metaclass (0.0.4)
27
- mime-types (2.3)
28
- mini_portile (0.6.0)
29
- mocha (1.1.0)
30
- metaclass (~> 0.0.1)
31
- multi_json (1.10.1)
32
- nokogiri (1.6.2.1)
33
- mini_portile (= 0.6.0)
34
- rack (1.5.2)
35
- rack-protection (1.5.3)
36
- rack
37
- rack-test (0.6.2)
38
- rack (>= 1.0)
39
- rake (10.3.2)
40
- rspec (3.0.0)
41
- rspec-core (~> 3.0.0)
42
- rspec-expectations (~> 3.0.0)
43
- rspec-mocks (~> 3.0.0)
44
- rspec-core (3.0.4)
45
- rspec-support (~> 3.0.0)
46
- rspec-expectations (3.0.4)
47
- diff-lcs (>= 1.2.0, < 2.0)
48
- rspec-support (~> 3.0.0)
49
- rspec-mocks (3.0.4)
50
- rspec-support (~> 3.0.0)
51
- rspec-support (3.0.4)
52
- rubyzip (1.1.4)
53
- selenium-webdriver (2.42.0)
54
- childprocess (>= 0.5.0)
55
- multi_json (~> 1.0)
56
- rubyzip (~> 1.0)
57
- websocket (~> 1.0.4)
58
- sinatra (1.4.5)
59
- rack (~> 1.4)
60
- rack-protection (~> 1.4)
61
- tilt (~> 1.3, >= 1.3.4)
62
- thor (0.19.1)
63
- tilt (1.4.1)
64
- websocket (1.0.7)
65
- xpath (1.0.0)
66
- nokogiri (~> 1.3)
67
-
68
- PLATFORMS
69
- ruby
70
-
71
- DEPENDENCIES
72
- appraisal (~> 1.0)
73
- capybara (~> 2.0.0)
74
- mocha (~> 1.1)
75
- orderly!
76
- sinatra (~> 1.4)
@@ -1,7 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "capybara", "~> 2.1.0"
6
-
7
- gemspec :path => "../"
@@ -1,64 +0,0 @@
1
- PATH
2
- remote: ../
3
- specs:
4
- orderly (0.0.2)
5
- capybara (>= 1.1)
6
- rspec (>= 2.14)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- appraisal (1.0.0)
12
- bundler
13
- rake
14
- thor (>= 0.14.0)
15
- capybara (2.1.0)
16
- mime-types (>= 1.16)
17
- nokogiri (>= 1.3.3)
18
- rack (>= 1.0.0)
19
- rack-test (>= 0.5.4)
20
- xpath (~> 2.0)
21
- diff-lcs (1.2.5)
22
- metaclass (0.0.4)
23
- mime-types (2.3)
24
- mini_portile (0.6.0)
25
- mocha (1.1.0)
26
- metaclass (~> 0.0.1)
27
- nokogiri (1.6.2.1)
28
- mini_portile (= 0.6.0)
29
- rack (1.5.2)
30
- rack-protection (1.5.3)
31
- rack
32
- rack-test (0.6.2)
33
- rack (>= 1.0)
34
- rake (10.3.2)
35
- rspec (3.0.0)
36
- rspec-core (~> 3.0.0)
37
- rspec-expectations (~> 3.0.0)
38
- rspec-mocks (~> 3.0.0)
39
- rspec-core (3.0.4)
40
- rspec-support (~> 3.0.0)
41
- rspec-expectations (3.0.4)
42
- diff-lcs (>= 1.2.0, < 2.0)
43
- rspec-support (~> 3.0.0)
44
- rspec-mocks (3.0.4)
45
- rspec-support (~> 3.0.0)
46
- rspec-support (3.0.4)
47
- sinatra (1.4.5)
48
- rack (~> 1.4)
49
- rack-protection (~> 1.4)
50
- tilt (~> 1.3, >= 1.3.4)
51
- thor (0.19.1)
52
- tilt (1.4.1)
53
- xpath (2.0.0)
54
- nokogiri (~> 1.3)
55
-
56
- PLATFORMS
57
- ruby
58
-
59
- DEPENDENCIES
60
- appraisal (~> 1.0)
61
- capybara (~> 2.1.0)
62
- mocha (~> 1.1)
63
- orderly!
64
- sinatra (~> 1.4)
@@ -1,64 +0,0 @@
1
- PATH
2
- remote: ../
3
- specs:
4
- orderly (0.0.2)
5
- capybara (>= 1.1)
6
- rspec (>= 2.14)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- appraisal (1.0.0)
12
- bundler
13
- rake
14
- thor (>= 0.14.0)
15
- capybara (2.2.1)
16
- mime-types (>= 1.16)
17
- nokogiri (>= 1.3.3)
18
- rack (>= 1.0.0)
19
- rack-test (>= 0.5.4)
20
- xpath (~> 2.0)
21
- diff-lcs (1.2.5)
22
- metaclass (0.0.4)
23
- mime-types (2.3)
24
- mini_portile (0.6.0)
25
- mocha (1.1.0)
26
- metaclass (~> 0.0.1)
27
- nokogiri (1.6.2.1)
28
- mini_portile (= 0.6.0)
29
- rack (1.5.2)
30
- rack-protection (1.5.3)
31
- rack
32
- rack-test (0.6.2)
33
- rack (>= 1.0)
34
- rake (10.3.2)
35
- rspec (3.0.0)
36
- rspec-core (~> 3.0.0)
37
- rspec-expectations (~> 3.0.0)
38
- rspec-mocks (~> 3.0.0)
39
- rspec-core (3.0.4)
40
- rspec-support (~> 3.0.0)
41
- rspec-expectations (3.0.4)
42
- diff-lcs (>= 1.2.0, < 2.0)
43
- rspec-support (~> 3.0.0)
44
- rspec-mocks (3.0.4)
45
- rspec-support (~> 3.0.0)
46
- rspec-support (3.0.4)
47
- sinatra (1.4.5)
48
- rack (~> 1.4)
49
- rack-protection (~> 1.4)
50
- tilt (~> 1.3, >= 1.3.4)
51
- thor (0.19.1)
52
- tilt (1.4.1)
53
- xpath (2.0.0)
54
- nokogiri (~> 1.3)
55
-
56
- PLATFORMS
57
- ruby
58
-
59
- DEPENDENCIES
60
- appraisal (~> 1.0)
61
- capybara (~> 2.2.0)
62
- mocha (~> 1.1)
63
- orderly!
64
- sinatra (~> 1.4)
@@ -1,7 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "capybara", "~> 2.3.0"
6
-
7
- gemspec :path => "../"
@@ -1,64 +0,0 @@
1
- PATH
2
- remote: ../
3
- specs:
4
- orderly (0.0.2)
5
- capybara (>= 1.1)
6
- rspec (>= 2.14)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- appraisal (1.0.0)
12
- bundler
13
- rake
14
- thor (>= 0.14.0)
15
- capybara (2.3.0)
16
- mime-types (>= 1.16)
17
- nokogiri (>= 1.3.3)
18
- rack (>= 1.0.0)
19
- rack-test (>= 0.5.4)
20
- xpath (~> 2.0)
21
- diff-lcs (1.2.5)
22
- metaclass (0.0.4)
23
- mime-types (2.3)
24
- mini_portile (0.6.0)
25
- mocha (1.1.0)
26
- metaclass (~> 0.0.1)
27
- nokogiri (1.6.2.1)
28
- mini_portile (= 0.6.0)
29
- rack (1.5.2)
30
- rack-protection (1.5.3)
31
- rack
32
- rack-test (0.6.2)
33
- rack (>= 1.0)
34
- rake (10.3.2)
35
- rspec (3.0.0)
36
- rspec-core (~> 3.0.0)
37
- rspec-expectations (~> 3.0.0)
38
- rspec-mocks (~> 3.0.0)
39
- rspec-core (3.0.4)
40
- rspec-support (~> 3.0.0)
41
- rspec-expectations (3.0.4)
42
- diff-lcs (>= 1.2.0, < 2.0)
43
- rspec-support (~> 3.0.0)
44
- rspec-mocks (3.0.4)
45
- rspec-support (~> 3.0.0)
46
- rspec-support (3.0.4)
47
- sinatra (1.4.5)
48
- rack (~> 1.4)
49
- rack-protection (~> 1.4)
50
- tilt (~> 1.3, >= 1.3.4)
51
- thor (0.19.1)
52
- tilt (1.4.1)
53
- xpath (2.0.0)
54
- nokogiri (~> 1.3)
55
-
56
- PLATFORMS
57
- ruby
58
-
59
- DEPENDENCIES
60
- appraisal (~> 1.0)
61
- capybara (~> 2.3.0)
62
- mocha (~> 1.1)
63
- orderly!
64
- sinatra (~> 1.4)
@@ -1,7 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "capybara", "~> 2.4.0"
6
-
7
- gemspec :path => "../"
@@ -1,63 +0,0 @@
1
- PATH
2
- remote: ../
3
- specs:
4
- orderly (0.0.2)
5
-
6
- GEM
7
- remote: https://rubygems.org/
8
- specs:
9
- appraisal (1.0.2)
10
- bundler
11
- rake
12
- thor (>= 0.14.0)
13
- capybara (2.4.1)
14
- mime-types (>= 1.16)
15
- nokogiri (>= 1.3.3)
16
- rack (>= 1.0.0)
17
- rack-test (>= 0.5.4)
18
- xpath (~> 2.0)
19
- diff-lcs (1.2.5)
20
- metaclass (0.0.4)
21
- mime-types (2.3)
22
- mini_portile (0.6.0)
23
- mocha (1.1.0)
24
- metaclass (~> 0.0.1)
25
- nokogiri (1.6.3.1)
26
- mini_portile (= 0.6.0)
27
- rack (1.5.2)
28
- rack-protection (1.5.3)
29
- rack
30
- rack-test (0.6.2)
31
- rack (>= 1.0)
32
- rake (10.3.2)
33
- rspec (3.0.0)
34
- rspec-core (~> 3.0.0)
35
- rspec-expectations (~> 3.0.0)
36
- rspec-mocks (~> 3.0.0)
37
- rspec-core (3.0.4)
38
- rspec-support (~> 3.0.0)
39
- rspec-expectations (3.0.4)
40
- diff-lcs (>= 1.2.0, < 2.0)
41
- rspec-support (~> 3.0.0)
42
- rspec-mocks (3.0.4)
43
- rspec-support (~> 3.0.0)
44
- rspec-support (3.0.4)
45
- sinatra (1.4.5)
46
- rack (~> 1.4)
47
- rack-protection (~> 1.4)
48
- tilt (~> 1.3, >= 1.3.4)
49
- thor (0.19.1)
50
- tilt (1.4.1)
51
- xpath (2.0.0)
52
- nokogiri (~> 1.3)
53
-
54
- PLATFORMS
55
- ruby
56
-
57
- DEPENDENCIES
58
- appraisal (~> 1.0)
59
- capybara (~> 2.4.0)
60
- mocha (~> 1.1)
61
- orderly!
62
- rspec (>= 2.14)
63
- sinatra (~> 1.4)
@@ -1,8 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "rspec", "~> 2.14.0"
6
- gem "capybara", "~> 2.4.0"
7
-
8
- gemspec :path => "../"
@@ -1,59 +0,0 @@
1
- PATH
2
- remote: ../
3
- specs:
4
- orderly (0.0.2)
5
-
6
- GEM
7
- remote: https://rubygems.org/
8
- specs:
9
- appraisal (1.0.2)
10
- bundler
11
- rake
12
- thor (>= 0.14.0)
13
- capybara (2.4.1)
14
- mime-types (>= 1.16)
15
- nokogiri (>= 1.3.3)
16
- rack (>= 1.0.0)
17
- rack-test (>= 0.5.4)
18
- xpath (~> 2.0)
19
- diff-lcs (1.2.5)
20
- metaclass (0.0.4)
21
- mime-types (2.3)
22
- mini_portile (0.6.0)
23
- mocha (1.1.0)
24
- metaclass (~> 0.0.1)
25
- nokogiri (1.6.3.1)
26
- mini_portile (= 0.6.0)
27
- rack (1.5.2)
28
- rack-protection (1.5.3)
29
- rack
30
- rack-test (0.6.2)
31
- rack (>= 1.0)
32
- rake (10.3.2)
33
- rspec (2.14.1)
34
- rspec-core (~> 2.14.0)
35
- rspec-expectations (~> 2.14.0)
36
- rspec-mocks (~> 2.14.0)
37
- rspec-core (2.14.8)
38
- rspec-expectations (2.14.5)
39
- diff-lcs (>= 1.1.3, < 2.0)
40
- rspec-mocks (2.14.6)
41
- sinatra (1.4.5)
42
- rack (~> 1.4)
43
- rack-protection (~> 1.4)
44
- tilt (~> 1.3, >= 1.3.4)
45
- thor (0.19.1)
46
- tilt (1.4.1)
47
- xpath (2.0.0)
48
- nokogiri (~> 1.3)
49
-
50
- PLATFORMS
51
- ruby
52
-
53
- DEPENDENCIES
54
- appraisal (~> 1.0)
55
- capybara (~> 2.4.0)
56
- mocha (~> 1.1)
57
- orderly!
58
- rspec (~> 2.14.0)
59
- sinatra (~> 1.4)
@@ -1,61 +0,0 @@
1
- PATH
2
- remote: ../
3
- specs:
4
- orderly (0.0.2)
5
- capybara (>= 1.1)
6
- rspec (>= 2.14)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- appraisal (1.0.2)
12
- bundler
13
- rake
14
- thor (>= 0.14.0)
15
- capybara (2.4.1)
16
- mime-types (>= 1.16)
17
- nokogiri (>= 1.3.3)
18
- rack (>= 1.0.0)
19
- rack-test (>= 0.5.4)
20
- xpath (~> 2.0)
21
- diff-lcs (1.2.5)
22
- metaclass (0.0.4)
23
- mime-types (2.3)
24
- mini_portile (0.6.0)
25
- mocha (1.1.0)
26
- metaclass (~> 0.0.1)
27
- nokogiri (1.6.3.1)
28
- mini_portile (= 0.6.0)
29
- rack (1.5.2)
30
- rack-protection (1.5.3)
31
- rack
32
- rack-test (0.6.2)
33
- rack (>= 1.0)
34
- rake (10.3.2)
35
- rspec (2.99.0)
36
- rspec-core (~> 2.99.0)
37
- rspec-expectations (~> 2.99.0)
38
- rspec-mocks (~> 2.99.0)
39
- rspec-core (2.99.2)
40
- rspec-expectations (2.99.2)
41
- diff-lcs (>= 1.1.3, < 2.0)
42
- rspec-mocks (2.99.2)
43
- sinatra (1.4.5)
44
- rack (~> 1.4)
45
- rack-protection (~> 1.4)
46
- tilt (~> 1.3, >= 1.3.4)
47
- thor (0.19.1)
48
- tilt (1.4.1)
49
- xpath (2.0.0)
50
- nokogiri (~> 1.3)
51
-
52
- PLATFORMS
53
- ruby
54
-
55
- DEPENDENCIES
56
- appraisal (~> 1.0)
57
- capybara (~> 2.4.0)
58
- mocha (~> 1.1)
59
- orderly!
60
- rspec (~> 2.99.0)
61
- sinatra (~> 1.4)
@@ -1,8 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "rspec", "~> 3.0.0"
6
- gem "capybara", "~> 2.4.0"
7
-
8
- gemspec :path => "../"
@@ -1,65 +0,0 @@
1
- PATH
2
- remote: ../
3
- specs:
4
- orderly (0.0.2)
5
- capybara (>= 1.1)
6
- rspec (>= 2.14)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- appraisal (1.0.2)
12
- bundler
13
- rake
14
- thor (>= 0.14.0)
15
- capybara (2.4.1)
16
- mime-types (>= 1.16)
17
- nokogiri (>= 1.3.3)
18
- rack (>= 1.0.0)
19
- rack-test (>= 0.5.4)
20
- xpath (~> 2.0)
21
- diff-lcs (1.2.5)
22
- metaclass (0.0.4)
23
- mime-types (2.3)
24
- mini_portile (0.6.0)
25
- mocha (1.1.0)
26
- metaclass (~> 0.0.1)
27
- nokogiri (1.6.3.1)
28
- mini_portile (= 0.6.0)
29
- rack (1.5.2)
30
- rack-protection (1.5.3)
31
- rack
32
- rack-test (0.6.2)
33
- rack (>= 1.0)
34
- rake (10.3.2)
35
- rspec (3.0.0)
36
- rspec-core (~> 3.0.0)
37
- rspec-expectations (~> 3.0.0)
38
- rspec-mocks (~> 3.0.0)
39
- rspec-core (3.0.4)
40
- rspec-support (~> 3.0.0)
41
- rspec-expectations (3.0.4)
42
- diff-lcs (>= 1.2.0, < 2.0)
43
- rspec-support (~> 3.0.0)
44
- rspec-mocks (3.0.4)
45
- rspec-support (~> 3.0.0)
46
- rspec-support (3.0.4)
47
- sinatra (1.4.5)
48
- rack (~> 1.4)
49
- rack-protection (~> 1.4)
50
- tilt (~> 1.3, >= 1.3.4)
51
- thor (0.19.1)
52
- tilt (1.4.1)
53
- xpath (2.0.0)
54
- nokogiri (~> 1.3)
55
-
56
- PLATFORMS
57
- ruby
58
-
59
- DEPENDENCIES
60
- appraisal (~> 1.0)
61
- capybara (~> 2.4.0)
62
- mocha (~> 1.1)
63
- orderly!
64
- rspec (~> 3.0.0)
65
- sinatra (~> 1.4)