falcon-capybara 1.3.7 → 1.4.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 +4 -4
- data/lib/falcon/capybara.rb +2 -2
- data/lib/falcon/capybara/drivers.rb +34 -0
- data/lib/falcon/capybara/servers.rb +25 -0
- data/lib/falcon/capybara/version.rb +1 -1
- data/lib/falcon/capybara/wrapper.rb +15 -15
- metadata +70 -34
- data/.editorconfig +0 -6
- data/.gitignore +0 -12
- data/.rspec +0 -3
- data/.travis.yml +0 -29
- data/Gemfile +0 -10
- data/README.md +0 -90
- data/Rakefile +0 -6
- data/falcon-capybara.gemspec +0 -28
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 01acd8665a3d99cf7c1fa53c438db7c9b5e341f77ba09114660f5cceffd86603
|
4
|
+
data.tar.gz: 3b14914f66d4637bf7ffd72858f0ed8db7827b67995a1c2a9c699bfc4463cfbe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5a2efd236298b2165e47efa3c3d083de996b7740f934dd4a65cc5ab09de8374adfc770ec11f92aba10680e9c8fb01327109113cf253b7771dce207ce44b847c0
|
7
|
+
data.tar.gz: 80f846895f524710119ddc31425b906d9ec556a2517746b48f4bbd1c30ecee04a03a8f7227d797517049ffec80827ebb160ee861a32c2b8c0bf2b8417e5aedde
|
data/lib/falcon/capybara.rb
CHANGED
@@ -0,0 +1,34 @@
|
|
1
|
+
# Copyright, 2020, by Samuel G. D. Williams. <http://www.codeotaku.com>
|
2
|
+
#
|
3
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
4
|
+
# of this software and associated documentation files (the "Software"), to deal
|
5
|
+
# in the Software without restriction, including without limitation the rights
|
6
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
7
|
+
# copies of the Software, and to permit persons to whom the Software is
|
8
|
+
# furnished to do so, subject to the following conditions:
|
9
|
+
#
|
10
|
+
# The above copyright notice and this permission notice shall be included in
|
11
|
+
# all copies or substantial portions of the Software.
|
12
|
+
#
|
13
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
15
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
16
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
17
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
18
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
19
|
+
# THE SOFTWARE.
|
20
|
+
|
21
|
+
require 'capybara'
|
22
|
+
require 'selenium/webdriver'
|
23
|
+
|
24
|
+
Capybara.register_driver :selenium_chrome_https do |app|
|
25
|
+
Capybara.drivers[:selenium_chrome].call(app).tap do |driver|
|
26
|
+
driver.options[:options].args << '--allow-insecure-localhost'
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
Capybara.register_driver :selenium_chrome_headless_https do |app|
|
31
|
+
Capybara.drivers[:selenium_chrome_headless].call(app).tap do |driver|
|
32
|
+
driver.options[:options].args << '--allow-insecure-localhost'
|
33
|
+
end
|
34
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# Copyright, 2020, by Samuel G. D. Williams. <http://www.codeotaku.com>
|
2
|
+
#
|
3
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
4
|
+
# of this software and associated documentation files (the "Software"), to deal
|
5
|
+
# in the Software without restriction, including without limitation the rights
|
6
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
7
|
+
# copies of the Software, and to permit persons to whom the Software is
|
8
|
+
# furnished to do so, subject to the following conditions:
|
9
|
+
#
|
10
|
+
# The above copyright notice and this permission notice shall be included in
|
11
|
+
# all copies or substantial portions of the Software.
|
12
|
+
#
|
13
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
15
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
16
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
17
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
18
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
19
|
+
# THE SOFTWARE.
|
20
|
+
|
21
|
+
require 'capybara'
|
22
|
+
|
23
|
+
Capybara.servers[:falcon] = Falcon::Capybara::Wrapper.new
|
24
|
+
Capybara.servers[:falcon_http] = Falcon::Capybara::Wrapper.new("http")
|
25
|
+
Capybara.servers[:falcon_https] = Falcon::Capybara::Wrapper.new("https")
|
@@ -20,15 +20,16 @@
|
|
20
20
|
|
21
21
|
require 'thread'
|
22
22
|
|
23
|
-
require 'async
|
24
|
-
require '
|
23
|
+
require 'async'
|
24
|
+
require 'falcon/endpoint'
|
25
25
|
require 'async/io/notification'
|
26
26
|
|
27
27
|
module Falcon
|
28
28
|
module Capybara
|
29
29
|
class Wrapper
|
30
|
-
def initialize
|
30
|
+
def initialize(scheme = "http")
|
31
31
|
@job = nil
|
32
|
+
@scheme = scheme
|
32
33
|
|
33
34
|
@job_available = Async::IO::Notification.new
|
34
35
|
@job_complete = Async::IO::Notification.new
|
@@ -43,31 +44,30 @@ module Falcon
|
|
43
44
|
@job = block
|
44
45
|
@job_available.signal
|
45
46
|
|
46
|
-
Async
|
47
|
+
Async do
|
47
48
|
Async.logger.debug (self) {"Waiting for job completion..."}
|
48
49
|
@job_complete.wait
|
49
50
|
end.wait
|
50
51
|
end
|
51
52
|
|
52
|
-
def
|
53
|
-
|
54
|
-
end
|
55
|
-
|
56
|
-
def scheme
|
57
|
-
"http"
|
53
|
+
def endpoint(host, port)
|
54
|
+
Falcon::Endpoint.parse("#{@scheme}://#{host}:#{port}")
|
58
55
|
end
|
59
56
|
|
60
57
|
def call(rack_app, port, host)
|
61
58
|
require 'async/reactor'
|
62
59
|
require 'falcon/server'
|
63
60
|
|
64
|
-
Async
|
61
|
+
Async do |task|
|
65
62
|
app = Falcon::Server.middleware(rack_app)
|
66
63
|
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
64
|
+
if host == "127.0.0.1"
|
65
|
+
host = "localhost"
|
66
|
+
end
|
67
|
+
|
68
|
+
endpoint = self.endpoint(host, port)
|
69
|
+
|
70
|
+
server = Falcon::Server.new(app, endpoint, endpoint.protocol, endpoint.scheme)
|
71
71
|
|
72
72
|
task.async do
|
73
73
|
Async.logger.debug (self) {"Running server..."}
|
metadata
CHANGED
@@ -1,31 +1,45 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: falcon-capybara
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Samuel Williams
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-05-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: capybara
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
13
27
|
- !ruby/object:Gem::Dependency
|
14
28
|
name: falcon
|
15
29
|
requirement: !ruby/object:Gem::Requirement
|
16
30
|
requirements:
|
17
31
|
- - "~>"
|
18
32
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
33
|
+
version: '0.34'
|
20
34
|
type: :runtime
|
21
35
|
prerelease: false
|
22
36
|
version_requirements: !ruby/object:Gem::Requirement
|
23
37
|
requirements:
|
24
38
|
- - "~>"
|
25
39
|
- !ruby/object:Gem::Version
|
26
|
-
version: '0.
|
40
|
+
version: '0.34'
|
27
41
|
- !ruby/object:Gem::Dependency
|
28
|
-
name:
|
42
|
+
name: selenium-webdriver
|
29
43
|
requirement: !ruby/object:Gem::Requirement
|
30
44
|
requirements:
|
31
45
|
- - ">="
|
@@ -39,13 +53,13 @@ dependencies:
|
|
39
53
|
- !ruby/object:Gem::Version
|
40
54
|
version: '0'
|
41
55
|
- !ruby/object:Gem::Dependency
|
42
|
-
name:
|
56
|
+
name: bake
|
43
57
|
requirement: !ruby/object:Gem::Requirement
|
44
58
|
requirements:
|
45
59
|
- - ">="
|
46
60
|
- !ruby/object:Gem::Version
|
47
61
|
version: '0'
|
48
|
-
type: :
|
62
|
+
type: :development
|
49
63
|
prerelease: false
|
50
64
|
version_requirements: !ruby/object:Gem::Requirement
|
51
65
|
requirements:
|
@@ -53,47 +67,61 @@ dependencies:
|
|
53
67
|
- !ruby/object:Gem::Version
|
54
68
|
version: '0'
|
55
69
|
- !ruby/object:Gem::Dependency
|
56
|
-
name:
|
70
|
+
name: bake-bundler
|
57
71
|
requirement: !ruby/object:Gem::Requirement
|
58
72
|
requirements:
|
59
|
-
- - "
|
73
|
+
- - ">="
|
60
74
|
- !ruby/object:Gem::Version
|
61
|
-
version: '
|
75
|
+
version: '0'
|
62
76
|
type: :development
|
63
77
|
prerelease: false
|
64
78
|
version_requirements: !ruby/object:Gem::Requirement
|
65
79
|
requirements:
|
66
|
-
- - "
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: bake-modernize
|
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
|
+
- - ">="
|
67
95
|
- !ruby/object:Gem::Version
|
68
|
-
version: '
|
96
|
+
version: '0'
|
69
97
|
- !ruby/object:Gem::Dependency
|
70
98
|
name: bundler
|
71
99
|
requirement: !ruby/object:Gem::Requirement
|
72
100
|
requirements:
|
73
|
-
- - "
|
101
|
+
- - ">="
|
74
102
|
- !ruby/object:Gem::Version
|
75
|
-
version: '
|
103
|
+
version: '0'
|
76
104
|
type: :development
|
77
105
|
prerelease: false
|
78
106
|
version_requirements: !ruby/object:Gem::Requirement
|
79
107
|
requirements:
|
80
|
-
- - "
|
108
|
+
- - ">="
|
81
109
|
- !ruby/object:Gem::Version
|
82
|
-
version: '
|
110
|
+
version: '0'
|
83
111
|
- !ruby/object:Gem::Dependency
|
84
|
-
name:
|
112
|
+
name: covered
|
85
113
|
requirement: !ruby/object:Gem::Requirement
|
86
114
|
requirements:
|
87
|
-
- - "
|
115
|
+
- - ">="
|
88
116
|
- !ruby/object:Gem::Version
|
89
|
-
version: '
|
117
|
+
version: '0'
|
90
118
|
type: :development
|
91
119
|
prerelease: false
|
92
120
|
version_requirements: !ruby/object:Gem::Requirement
|
93
121
|
requirements:
|
94
|
-
- - "
|
122
|
+
- - ">="
|
95
123
|
- !ruby/object:Gem::Version
|
96
|
-
version: '
|
124
|
+
version: '0'
|
97
125
|
- !ruby/object:Gem::Dependency
|
98
126
|
name: rspec
|
99
127
|
requirement: !ruby/object:Gem::Requirement
|
@@ -108,26 +136,34 @@ dependencies:
|
|
108
136
|
- - "~>"
|
109
137
|
- !ruby/object:Gem::Version
|
110
138
|
version: '3.0'
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: webdrivers
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - "~>"
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '4.0'
|
146
|
+
type: :development
|
147
|
+
prerelease: false
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - "~>"
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '4.0'
|
111
153
|
description:
|
112
|
-
email:
|
113
|
-
- samuel.williams@oriontransfer.co.nz
|
154
|
+
email:
|
114
155
|
executables: []
|
115
156
|
extensions: []
|
116
157
|
extra_rdoc_files: []
|
117
158
|
files:
|
118
|
-
- ".editorconfig"
|
119
|
-
- ".gitignore"
|
120
|
-
- ".rspec"
|
121
|
-
- ".travis.yml"
|
122
|
-
- Gemfile
|
123
|
-
- README.md
|
124
|
-
- Rakefile
|
125
|
-
- falcon-capybara.gemspec
|
126
159
|
- lib/falcon/capybara.rb
|
160
|
+
- lib/falcon/capybara/drivers.rb
|
161
|
+
- lib/falcon/capybara/servers.rb
|
127
162
|
- lib/falcon/capybara/version.rb
|
128
163
|
- lib/falcon/capybara/wrapper.rb
|
129
164
|
homepage: https://github.com/socketry/falcon-capybara
|
130
|
-
licenses:
|
165
|
+
licenses:
|
166
|
+
- MIT
|
131
167
|
metadata: {}
|
132
168
|
post_install_message:
|
133
169
|
rdoc_options: []
|
@@ -137,14 +173,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
137
173
|
requirements:
|
138
174
|
- - ">="
|
139
175
|
- !ruby/object:Gem::Version
|
140
|
-
version: '
|
176
|
+
version: '2.5'
|
141
177
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
142
178
|
requirements:
|
143
179
|
- - ">="
|
144
180
|
- !ruby/object:Gem::Version
|
145
181
|
version: '0'
|
146
182
|
requirements: []
|
147
|
-
rubygems_version: 3.
|
183
|
+
rubygems_version: 3.1.2
|
148
184
|
signing_key:
|
149
185
|
specification_version: 4
|
150
186
|
summary: Use the falcon web server to run capybara/selenium tests.
|
data/.editorconfig
DELETED
data/.gitignore
DELETED
data/.rspec
DELETED
data/.travis.yml
DELETED
@@ -1,29 +0,0 @@
|
|
1
|
-
language: ruby
|
2
|
-
sudo: false
|
3
|
-
dist: trusty
|
4
|
-
cache: bundler
|
5
|
-
|
6
|
-
addons:
|
7
|
-
apt:
|
8
|
-
sources:
|
9
|
-
- google-chrome
|
10
|
-
packages:
|
11
|
-
- google-chrome-stable
|
12
|
-
|
13
|
-
before_script:
|
14
|
-
- gem update --system
|
15
|
-
- gem install bundler
|
16
|
-
|
17
|
-
rvm:
|
18
|
-
- 2.3
|
19
|
-
- 2.4
|
20
|
-
- 2.5
|
21
|
-
- 2.6
|
22
|
-
- jruby-head
|
23
|
-
- ruby-head
|
24
|
-
- rbx-3
|
25
|
-
matrix:
|
26
|
-
allow_failures:
|
27
|
-
- rvm: ruby-head
|
28
|
-
- rvm: jruby-head
|
29
|
-
- rvm: rbx-3
|
data/Gemfile
DELETED
data/README.md
DELETED
@@ -1,90 +0,0 @@
|
|
1
|
-
# Falcon::Capybara
|
2
|
-
|
3
|
-
Provides relevant [capybara] configuration to run tests using [falcon].
|
4
|
-
|
5
|
-
[falcon]: https://github.com/socketry/falcon
|
6
|
-
[capybara]: https://github.com/teamcapybara/capybara
|
7
|
-
|
8
|
-
[](http://travis-ci.org/socketry/falcon-capybara)
|
9
|
-
[](https://codeclimate.com/github/socketry/falcon-capybara)
|
10
|
-
[](https://coveralls.io/r/socketry/falcon-capybara)
|
11
|
-
|
12
|
-
## Installation
|
13
|
-
|
14
|
-
Add this line to your application's Gemfile:
|
15
|
-
|
16
|
-
```ruby
|
17
|
-
gem 'falcon-capybara'
|
18
|
-
```
|
19
|
-
|
20
|
-
And then execute:
|
21
|
-
|
22
|
-
$ bundle
|
23
|
-
|
24
|
-
Or install it yourself as:
|
25
|
-
|
26
|
-
$ gem install falcon-capybara
|
27
|
-
|
28
|
-
## Usage
|
29
|
-
|
30
|
-
### RSpec
|
31
|
-
|
32
|
-
In your `spec_helper.rb` add the following:
|
33
|
-
|
34
|
-
```ruby
|
35
|
-
require "falcon/capybara"
|
36
|
-
|
37
|
-
require "capybara/rspec"
|
38
|
-
Capybara.configure do |config|
|
39
|
-
config.server = :falcon
|
40
|
-
|
41
|
-
# config.app = ...
|
42
|
-
end
|
43
|
-
```
|
44
|
-
|
45
|
-
### Selenium
|
46
|
-
|
47
|
-
Optionally, you might want to set up selenium:
|
48
|
-
|
49
|
-
```ruby
|
50
|
-
require "selenium/webdriver"
|
51
|
-
Capybara.javascript_driver = :selenium_chrome_headless
|
52
|
-
```
|
53
|
-
|
54
|
-
To use chromedriver add the following to your gemfile:
|
55
|
-
|
56
|
-
```ruby
|
57
|
-
gem "chromedriver-helper"
|
58
|
-
```
|
59
|
-
|
60
|
-
## Contributing
|
61
|
-
|
62
|
-
1. Fork it
|
63
|
-
2. Create your feature branch (`git checkout -b my-new-feature`)
|
64
|
-
3. Commit your changes (`git commit -am 'Add some feature'`)
|
65
|
-
4. Push to the branch (`git push origin my-new-feature`)
|
66
|
-
5. Create new Pull Request
|
67
|
-
|
68
|
-
## License
|
69
|
-
|
70
|
-
Released under the MIT license.
|
71
|
-
|
72
|
-
Copyright, 2017, by [Samuel G. D. Williams](http://www.codeotaku.com/samuel-williams).
|
73
|
-
|
74
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
75
|
-
of this software and associated documentation files (the "Software"), to deal
|
76
|
-
in the Software without restriction, including without limitation the rights
|
77
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
78
|
-
copies of the Software, and to permit persons to whom the Software is
|
79
|
-
furnished to do so, subject to the following conditions:
|
80
|
-
|
81
|
-
The above copyright notice and this permission notice shall be included in
|
82
|
-
all copies or substantial portions of the Software.
|
83
|
-
|
84
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
85
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
86
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
87
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
88
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
89
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
90
|
-
THE SOFTWARE.
|
data/Rakefile
DELETED
data/falcon-capybara.gemspec
DELETED
@@ -1,28 +0,0 @@
|
|
1
|
-
|
2
|
-
require_relative "lib/falcon/capybara/version"
|
3
|
-
|
4
|
-
Gem::Specification.new do |spec|
|
5
|
-
spec.name = "falcon-capybara"
|
6
|
-
spec.version = Falcon::Capybara::VERSION
|
7
|
-
spec.authors = ["Samuel Williams"]
|
8
|
-
spec.email = ["samuel.williams@oriontransfer.co.nz"]
|
9
|
-
|
10
|
-
spec.summary = "Use the falcon web server to run capybara/selenium tests."
|
11
|
-
spec.homepage = "https://github.com/socketry/falcon-capybara"
|
12
|
-
|
13
|
-
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
14
|
-
f.match(%r{^(test|spec|features)/})
|
15
|
-
end
|
16
|
-
|
17
|
-
spec.require_paths = ["lib"]
|
18
|
-
|
19
|
-
spec.add_dependency "falcon", "~> 0.19"
|
20
|
-
spec.add_dependency "capybara"
|
21
|
-
spec.add_dependency "selenium-webdriver"
|
22
|
-
|
23
|
-
spec.add_development_dependency "chromedriver-helper", "~> 1.0"
|
24
|
-
|
25
|
-
spec.add_development_dependency "bundler", "~> 1.15"
|
26
|
-
spec.add_development_dependency "rake", "~> 10.0"
|
27
|
-
spec.add_development_dependency "rspec", "~> 3.0"
|
28
|
-
end
|