opal-rspec 0.6.0 → 0.6.1
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/.travis.yml +14 -12
- data/Appraisals +1 -0
- data/CHANGELOG.md +50 -36
- data/Gemfile +9 -3
- data/README.md +2 -1
- data/Rakefile +3 -0
- data/gemfiles/opal_0.10_stable.gemfile +7 -10
- data/gemfiles/opal_master.gemfile +8 -10
- data/lib/opal/rspec.rb +1 -0
- data/lib/opal/rspec/rake_task.rb +1 -0
- data/lib/opal/rspec/version.rb +1 -1
- data/opal-rspec.gemspec +5 -1
- data/spec/mri/integration/browser_spec.rb +15 -22
- data/spec/mri/spec_helper.rb +2 -0
- data/spec/mri/support/capybara.rb +14 -0
- data/spec/mri/unit/opal/rspec/browser_formatter_spec.rb +19 -25
- data/spec/rspec/opal_rspec_spec_loader.rb +2 -2
- metadata +63 -7
- data/rspec-core/tmp/aruba/spec/file_1_spec.rb +0 -5
- data/rspec-core/tmp/aruba/spec/file_2_spec.rb +0 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d85d8f2c3e91a3277ff22eac597554b6c7c9fad3
|
4
|
+
data.tar.gz: d36a6b8ef94ebe0bb7cbfd5fa342e3beafc660e9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 18e1fa24aa9c4647d30f65004e685bdbf1f80d3550749de6e9e703eda078975bce3e81f7497f19a38d470eabe77c8d3d4cb9a04276bf1603f31399e2cf2ce106
|
7
|
+
data.tar.gz: c5d331955aaef00517ece7a419f30918f805382c47c5772fd95f98567c90e34495be196901111092dff019b519092ba29ce25ee3b40647398685a188c2a45ac7
|
data/.travis.yml
CHANGED
@@ -13,11 +13,13 @@ matrix:
|
|
13
13
|
include:
|
14
14
|
- rvm: 2.2.4
|
15
15
|
env: RUN=mri_sanity_check
|
16
|
-
- rvm: 2.3.
|
16
|
+
- rvm: 2.3.4
|
17
17
|
env: RUN=mri_sanity_check
|
18
|
-
- rvm: 2.
|
18
|
+
- rvm: 2.4.1
|
19
|
+
env: RUN=mri_sanity_check
|
20
|
+
- rvm: 2.4.1
|
19
21
|
env: RUN=rake_only
|
20
|
-
- rvm: 2.
|
22
|
+
- rvm: 2.4.1
|
21
23
|
# PHANTOMJS env variable is not used but it makes it easier to differentiate this build in Travis
|
22
24
|
env: PHANTOMJS=2.1 RUN=rake_only
|
23
25
|
before_install:
|
@@ -26,12 +28,12 @@ matrix:
|
|
26
28
|
- "export PATH=`pwd`/node_modules/phantomjs-prebuilt/bin:$PATH"
|
27
29
|
- "echo $PATH"
|
28
30
|
- phantomjs -v | grep 2.1 || npm install phantomjs-prebuilt # get rate limits from bitbucket download source, so get from NPM if we don't have it already
|
29
|
-
- rvm: 2.
|
31
|
+
- rvm: 2.4.1
|
30
32
|
env: RUNNER=node RUN=rake_only
|
31
|
-
- rvm: 2.
|
33
|
+
- rvm: 2.4.1
|
32
34
|
env: RUN=rake_only
|
33
35
|
gemfile: gemfiles/opal_master.gemfile
|
34
|
-
- rvm: 2.
|
36
|
+
- rvm: 2.4.1
|
35
37
|
env: RUN=rake_only
|
36
38
|
gemfile: gemfiles/opal_0.10_stable.gemfile
|
37
39
|
|
@@ -50,12 +52,12 @@ before_install:
|
|
50
52
|
- "rm -rf phantomjs-2.0.0-ubuntu-12.04.tar.bz2"
|
51
53
|
- "popd"
|
52
54
|
|
53
|
-
before_script:
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
55
|
+
# before_script:
|
56
|
+
# - "export DISPLAY=:99.0"
|
57
|
+
# - "sh -e /etc/init.d/xvfb start"
|
58
|
+
# - "phantomjs -v"
|
59
|
+
# - "node -v"
|
60
|
+
# - "firefox --version"
|
59
61
|
|
60
62
|
notifications:
|
61
63
|
irc: "irc.freenode.org#opal"
|
data/Appraisals
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,62 +1,76 @@
|
|
1
|
-
## 0.6.
|
1
|
+
## 0.6.1 - 2017-05-25
|
2
2
|
|
3
|
-
|
4
|
-
* Opal 0.10 support
|
5
|
-
* Arity checking enabled by default
|
6
|
-
* Dropped support for PhantomJS < 2.0
|
7
|
-
* Removed `Kernel#caller` monkey patch so test file/line metadata is only available if supplied via test metadata or for failures. Should improve performance since an exception isn't thrown for every test to gather the data
|
3
|
+
- Fixed compatibility with Rake 12
|
8
4
|
|
9
|
-
|
5
|
+
- Open up to opal 0.11 (not officially supported yet)
|
10
6
|
|
11
|
-
* By default, any subject, it example block, before(:each), after(:each), and around that returns a promise will be executed asynchronously. Async is NOT yet supported for context level hooks. Async approach from < 0.4.3 will still work.
|
12
7
|
|
13
|
-
|
8
|
+
## 0.6.0 - 2016-08-29
|
14
9
|
|
15
|
-
|
10
|
+
- Support for Opal 0.8/0.9 removed
|
16
11
|
|
17
|
-
|
12
|
+
- Opal 0.10 support
|
18
13
|
|
19
|
-
|
14
|
+
- Arity checking enabled by default
|
20
15
|
|
21
|
-
|
22
|
-
* supports passing a test pattern (include and exclude) and FileLists besides 'spec/**/*_spec.rb
|
23
|
-
* colors, formatter, and additional requires can be supplied from the command line via the SPEC_OPTS environment variable
|
16
|
+
- Dropped support for PhantomJS < 2.0
|
24
17
|
|
25
|
-
|
26
|
-
* Fixed issues with RSpec's BaseTextFormatter and made ProgressFormatter the default when run via the Rake task
|
27
|
-
* Fix redundant messages with expectation fails
|
28
|
-
* Browser formatter now works w/ progress bar and has a 'Dump to console' link that will put a clickable stack trace for a failed example in the browser console
|
29
|
-
* JSON formatter supported
|
18
|
+
- Removed `Kernel#caller` monkey patch so test file/line metadata is only available if supplied via test metadata or for failures. Should improve performance since an exception isn't thrown for every test to gather the data
|
30
19
|
|
31
|
-
* Fixed issues with constants/example group naming
|
32
20
|
|
33
|
-
|
21
|
+
## 0.5.0 - 2015-12-08
|
34
22
|
|
35
|
-
|
23
|
+
- By default, any subject, it example block, before(:each), after(:each), and around that returns a promise will be executed asynchronously. Async is NOT yet supported for context level hooks. Async approach from < 0.4.3 will still work.
|
24
|
+
|
25
|
+
- Update to RSpec 3.1 (core is 3.1.7, expectations/support 3.1.2, mocks 3.1.3)
|
26
|
+
|
27
|
+
- Opal 0.9 compatibility
|
28
|
+
|
29
|
+
- A lot more aspects of RSpec should work now as 20+ Opal pull requests were completed from opal-rspec work
|
30
|
+
|
31
|
+
- Remove copy of source from opal-rspec git repo (and just rely on git submodule fetch)
|
32
|
+
|
33
|
+
- Rake task improvements:
|
34
|
+
- supports passing a test pattern (include and exclude) and FileLists besides 'spec/**/*_spec.rb
|
35
|
+
- colors, formatter, and additional requires can be supplied from the command line via the SPEC_OPTS environment variable
|
36
|
+
|
37
|
+
- Formatters:
|
38
|
+
- Fixed issues with RSpec's BaseTextFormatter and made ProgressFormatter the default when run via the Rake task
|
39
|
+
- Fix redundant messages with expectation fails
|
40
|
+
- Browser formatter now works w/ progress bar and has a 'Dump to console' link that will put a clickable stack trace for a failed example in the browser console
|
41
|
+
- JSON formatter supported
|
42
|
+
|
43
|
+
- Fixed issues with constants/example group naming
|
44
|
+
|
45
|
+
- Basic nodejs runner support
|
46
|
+
|
47
|
+
- A lot more matchers enabled
|
36
48
|
|
37
49
|
* PhantomJS 2.0 compatibility (also still compatible with 1.9.8). Thanks to @aost. Closes out https://github.com/opal/opal-rspec/issues/42
|
38
50
|
|
39
51
|
|
40
|
-
## 0.4.3
|
52
|
+
## 0.4.3 - 2015-06-14
|
53
|
+
|
54
|
+
- Allow the gem to be run under Opal 0.7 and 0.8
|
55
|
+
- Fix some threading issues
|
56
|
+
- Avoid some other calls to mutable-strings methods
|
57
|
+
|
41
58
|
|
42
|
-
|
43
|
-
* Fix some threading issues
|
44
|
-
* Avoid some other calls to mutable-strings methods
|
59
|
+
## 0.4.2 - 2015-03-28
|
45
60
|
|
46
|
-
|
61
|
+
- Avoid phantomjs warning messages
|
47
62
|
|
48
|
-
* Avoid phantomjs warning messages
|
49
63
|
|
50
|
-
## 0.4.1
|
64
|
+
## 0.4.1 - 2015-02-25
|
51
65
|
|
52
|
-
|
66
|
+
- Remove predicate matcher fixes as Opal supports $1..$9 special gvars.
|
53
67
|
|
54
|
-
|
68
|
+
- Update Opal dependency for ~> 0.6.0.
|
55
69
|
|
56
|
-
|
70
|
+
- Remove double-escaping in inline x-strings (from Opal bug fix).
|
57
71
|
|
58
|
-
|
72
|
+
- Remove opal-sprockets dependency - build tools now part of opal.
|
59
73
|
|
60
|
-
|
74
|
+
- Replaced browser formatter to use html printer from rspec
|
61
75
|
|
62
|
-
|
76
|
+
- Add timeout support to asynchronous specs
|
data/Gemfile
CHANGED
@@ -5,8 +5,15 @@ unless Dir['rspec{,-{core,expectations,mocks,support}}'].any?
|
|
5
5
|
warn 'Run: "git submodule update --init" to get RSpec sources'
|
6
6
|
end
|
7
7
|
|
8
|
-
|
9
|
-
|
8
|
+
case (opal_version = ENV['OPAL_VERSION'])
|
9
|
+
when 'master'
|
10
|
+
gem 'opal', github: 'opal/opal', branch: 'master'
|
11
|
+
gem 'opal-sprockets', github: 'opal/opal-sprockets'
|
12
|
+
when nil
|
13
|
+
gem 'opal' # let bundler pick a version
|
14
|
+
else
|
15
|
+
gem 'opal', opal_version
|
16
|
+
end
|
10
17
|
|
11
18
|
# These need to come from our local path in order for create_requires.rb to work properly
|
12
19
|
gem 'rspec', path: 'rspec'
|
@@ -14,4 +21,3 @@ gem 'rspec-support', path: 'rspec-support'
|
|
14
21
|
gem 'rspec-core', path: 'rspec-core'
|
15
22
|
gem 'rspec-mocks', path: 'rspec-mocks'
|
16
23
|
gem 'rspec-expectations', path: 'rspec-expectations'
|
17
|
-
gem 'appraisal'
|
data/README.md
CHANGED
@@ -136,7 +136,7 @@ run Opal::Server.new(sprockets: sprockets_env) { |s|
|
|
136
136
|
Then run the rack server `bundle exec rackup` and visit `http://localhost:9292`
|
137
137
|
in any web browser.
|
138
138
|
|
139
|
-
A new feature as of opal-rspec 0.5 allows you to click a 'Console' button in the browser's test results and get a
|
139
|
+
A new feature as of opal-rspec 0.5 allows you to click a 'Console' button in the browser's test results and get a
|
140
140
|
clickable stack trace in the browser console. This should ease debugging with long, concatenated script files and trying
|
141
141
|
to navigate to where an exception occurred.
|
142
142
|
|
@@ -326,6 +326,7 @@ When updating the RSpec versions, after updating the submodule revisions, you ma
|
|
326
326
|
|
327
327
|
(The MIT License)
|
328
328
|
|
329
|
+
Copyright (C) 2015 by Brady Wied
|
329
330
|
Copyright (C) 2013 by Adam Beynon
|
330
331
|
|
331
332
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
data/Rakefile
CHANGED
@@ -35,6 +35,9 @@ task :generate_requires do
|
|
35
35
|
sh 'ruby -Irspec/lib -Irspec-core/lib/rspec -Irspec-support/lib/rspec util/create_requires.rb'
|
36
36
|
end
|
37
37
|
|
38
|
+
# Rake.application.last_comment was removed in Rake v12.0
|
39
|
+
# https://github.com/ruby/rake/commit/e76242ce7ef94568399a50b69bda4b723dab7c75
|
40
|
+
def (Rake.application).last_comment; last_description; end unless Rake.application.respond_to? :last_comment
|
38
41
|
desc 'Runs a test to test browser based specs using Opal specs in spec/opal'
|
39
42
|
RSpec::Core::RakeTask.new :integration_specs do |t|
|
40
43
|
t.pattern = 'spec/mri/integration/**/*_spec.rb'
|
@@ -2,14 +2,11 @@
|
|
2
2
|
|
3
3
|
source "https://rubygems.org"
|
4
4
|
|
5
|
-
gem "
|
6
|
-
gem "
|
7
|
-
gem "rspec", :
|
8
|
-
gem "rspec-
|
9
|
-
gem "rspec-
|
10
|
-
gem "rspec-
|
11
|
-
gem "rspec-expectations", :path => "../rspec-expectations"
|
12
|
-
gem "appraisal"
|
13
|
-
gem "opal", :git => "https://github.com/opal/opal.git", :branch => "0-10-stable"
|
5
|
+
gem "opal", git: "https://github.com/opal/opal.git", branch: "0-10-stable"
|
6
|
+
gem "rspec", path: "../rspec"
|
7
|
+
gem "rspec-support", path: "../rspec-support"
|
8
|
+
gem "rspec-core", path: "../rspec-core"
|
9
|
+
gem "rspec-mocks", path: "../rspec-mocks"
|
10
|
+
gem "rspec-expectations", path: "../rspec-expectations"
|
14
11
|
|
15
|
-
gemspec :
|
12
|
+
gemspec path: "../"
|
@@ -2,14 +2,12 @@
|
|
2
2
|
|
3
3
|
source "https://rubygems.org"
|
4
4
|
|
5
|
-
gem "
|
6
|
-
gem "
|
7
|
-
gem "rspec", :
|
8
|
-
gem "rspec-
|
9
|
-
gem "rspec-
|
10
|
-
gem "rspec-
|
11
|
-
gem "
|
12
|
-
gem "appraisal"
|
13
|
-
gem "opal", :git => "https://github.com/opal/opal.git"
|
5
|
+
gem "opal", git: "https://github.com/opal/opal.git"
|
6
|
+
gem "rspec", path: "../rspec"
|
7
|
+
gem "rspec-support", path: "../rspec-support"
|
8
|
+
gem "rspec-core", path: "../rspec-core"
|
9
|
+
gem "rspec-mocks", path: "../rspec-mocks"
|
10
|
+
gem "rspec-expectations", path: "../rspec-expectations"
|
11
|
+
gem "opal-sprockets", github: "opal/opal-sprockets"
|
14
12
|
|
15
|
-
gemspec :
|
13
|
+
gemspec path: "../"
|
data/lib/opal/rspec.rb
CHANGED
data/lib/opal/rspec/rake_task.rb
CHANGED
data/lib/opal/rspec/version.rb
CHANGED
data/opal-rspec.gemspec
CHANGED
@@ -14,7 +14,11 @@ Gem::Specification.new do |s|
|
|
14
14
|
|
15
15
|
s.require_paths = ['lib']
|
16
16
|
|
17
|
-
s.add_dependency 'opal', ['>= 0.10.0', '< 0.
|
17
|
+
s.add_dependency 'opal', ['>= 0.10.0', '< 0.12']
|
18
18
|
s.add_development_dependency 'rake'
|
19
19
|
s.add_development_dependency 'yard'
|
20
|
+
s.add_development_dependency 'poltergeist'
|
21
|
+
s.add_development_dependency 'capybara'
|
22
|
+
s.add_development_dependency 'launchy'
|
23
|
+
s.add_development_dependency 'appraisal'
|
20
24
|
end
|
@@ -1,28 +1,21 @@
|
|
1
|
-
require '
|
2
|
-
require 'capybara/rspec'
|
1
|
+
require 'mri/spec_helper'
|
3
2
|
|
4
|
-
|
5
|
-
Capybara.app = Rack::Builder.new_from_string(File.read(
|
3
|
+
RSpec.describe 'browser formatter', type: :feature do
|
4
|
+
before { Capybara.app = Rack::Builder.new_from_string(File.read("#{__dir__}/../../../config.ru")) }
|
6
5
|
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
# Specs should run in 12 seconds but in case Travis takes longer, provide some cushion
|
13
|
-
Capybara.default_wait_time = 40
|
14
|
-
end
|
15
|
-
|
16
|
-
after do
|
17
|
-
js_errors = error_fetcher[page]
|
18
|
-
puts "Javascript errors: #{js_errors}" if js_errors.any?
|
19
|
-
end
|
6
|
+
before do
|
7
|
+
visit '/'
|
8
|
+
# Specs should run in 12 seconds but in case Travis takes longer, provide some cushion
|
9
|
+
Capybara.default_max_wait_time = 40
|
10
|
+
end
|
20
11
|
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
end
|
12
|
+
after do
|
13
|
+
js_errors = page.evaluate_script('window.jsErrors')
|
14
|
+
puts "Javascript errors: #{js_errors}" if js_errors.any?
|
25
15
|
end
|
26
16
|
|
27
|
-
|
17
|
+
it 'matches test results' do
|
18
|
+
expect(page.find('h1')).to have_content 'RSpec Code Examples'
|
19
|
+
expect(page.find('#totals')).to have_content '142 examples, 40 failures, 12 pending'
|
20
|
+
end
|
28
21
|
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
require 'capybara/rspec'
|
2
|
+
|
3
|
+
# PHANTOMJS
|
4
|
+
require 'capybara/poltergeist'
|
5
|
+
PoltergeistConsole = StringIO.new
|
6
|
+
RSpec.configure { |config| config.before { PoltergeistConsole.reopen } }
|
7
|
+
Capybara.register_driver(:poltergeist) { |app| Capybara::Poltergeist::Driver.new(app, phantomjs_logger: PoltergeistConsole) }
|
8
|
+
Capybara.default_driver = :poltergeist
|
9
|
+
Capybara.javascript_driver = :poltergeist
|
10
|
+
|
11
|
+
# SAFARI
|
12
|
+
# Capybara.register_driver(:safari) { |app| Capybara::Selenium::Driver.new(app, browser: :safari) }
|
13
|
+
# Capybara.javascript_driver = :safari
|
14
|
+
|
@@ -1,32 +1,26 @@
|
|
1
|
-
require '
|
2
|
-
require 'capybara/rspec'
|
1
|
+
require 'mri/spec_helper'
|
3
2
|
|
4
|
-
|
5
|
-
|
6
|
-
Capybara.app = Rack::Builder.new_from_string(File.read(
|
3
|
+
RSpec.describe 'Opal::RSpec::BrowserFormatter', type: :feature, js: true do
|
4
|
+
# Use Rack config exactly as shipped in the GEM
|
5
|
+
before { Capybara.app = Rack::Builder.new_from_string(File.read("#{__dir__}/rack/config.ru")) }
|
7
6
|
|
8
|
-
|
9
|
-
RSpec.shared_examples :browser do |driver, error_fetcher|
|
10
|
-
context "in #{driver}", driver: driver do
|
11
|
-
before do
|
12
|
-
visit '/'
|
13
|
-
# Specs should run in 12 seconds but in case Travis takes longer, provide some cushion
|
14
|
-
Capybara.default_wait_time = 40
|
15
|
-
end
|
7
|
+
let(:error_fetcher) { page.evaluate_script('window.jsErrors') }
|
16
8
|
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
9
|
+
before do
|
10
|
+
visit '/'
|
11
|
+
# Specs should run in 12 seconds but in case Travis takes longer, provide some cushion
|
12
|
+
Capybara.default_max_wait_time = 40
|
13
|
+
end
|
21
14
|
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
expect(page).to have_content 'a skipped example'
|
26
|
-
expect(page).to have_content 'a failed example'
|
27
|
-
end
|
28
|
-
end
|
15
|
+
after do
|
16
|
+
js_errors = error_fetcher
|
17
|
+
puts "Javascript errors: #{js_errors}" if js_errors.any?
|
29
18
|
end
|
30
19
|
|
31
|
-
|
20
|
+
it 'matches test results' do
|
21
|
+
expect(page).to have_content '3 examples, 1 failure, 1 pending'
|
22
|
+
expect(page).to have_content 'group'
|
23
|
+
expect(page).to have_content 'a skipped example'
|
24
|
+
expect(page).to have_content 'a failed example'
|
25
|
+
end
|
32
26
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: opal-rspec
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Adam Beynon
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-05-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: opal
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: 0.10.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: '0.
|
22
|
+
version: '0.12'
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: 0.10.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: '0.
|
32
|
+
version: '0.12'
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: rake
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -58,6 +58,62 @@ dependencies:
|
|
58
58
|
- - ">="
|
59
59
|
- !ruby/object:Gem::Version
|
60
60
|
version: '0'
|
61
|
+
- !ruby/object:Gem::Dependency
|
62
|
+
name: poltergeist
|
63
|
+
requirement: !ruby/object:Gem::Requirement
|
64
|
+
requirements:
|
65
|
+
- - ">="
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: '0'
|
68
|
+
type: :development
|
69
|
+
prerelease: false
|
70
|
+
version_requirements: !ruby/object:Gem::Requirement
|
71
|
+
requirements:
|
72
|
+
- - ">="
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: '0'
|
75
|
+
- !ruby/object:Gem::Dependency
|
76
|
+
name: capybara
|
77
|
+
requirement: !ruby/object:Gem::Requirement
|
78
|
+
requirements:
|
79
|
+
- - ">="
|
80
|
+
- !ruby/object:Gem::Version
|
81
|
+
version: '0'
|
82
|
+
type: :development
|
83
|
+
prerelease: false
|
84
|
+
version_requirements: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - ">="
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '0'
|
89
|
+
- !ruby/object:Gem::Dependency
|
90
|
+
name: launchy
|
91
|
+
requirement: !ruby/object:Gem::Requirement
|
92
|
+
requirements:
|
93
|
+
- - ">="
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: '0'
|
96
|
+
type: :development
|
97
|
+
prerelease: false
|
98
|
+
version_requirements: !ruby/object:Gem::Requirement
|
99
|
+
requirements:
|
100
|
+
- - ">="
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: '0'
|
103
|
+
- !ruby/object:Gem::Dependency
|
104
|
+
name: appraisal
|
105
|
+
requirement: !ruby/object:Gem::Requirement
|
106
|
+
requirements:
|
107
|
+
- - ">="
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '0'
|
110
|
+
type: :development
|
111
|
+
prerelease: false
|
112
|
+
version_requirements: !ruby/object:Gem::Requirement
|
113
|
+
requirements:
|
114
|
+
- - ">="
|
115
|
+
- !ruby/object:Gem::Version
|
116
|
+
version: '0'
|
61
117
|
description: Opal compatible rspec library
|
62
118
|
email: adam.beynon@gmail.com
|
63
119
|
executables: []
|
@@ -291,8 +347,6 @@ files:
|
|
291
347
|
- rspec-core/spec/support/sandboxing.rb
|
292
348
|
- rspec-core/spec/support/shared_example_groups.rb
|
293
349
|
- rspec-core/spec/support/spec_files.rb
|
294
|
-
- rspec-core/tmp/aruba/spec/file_1_spec.rb
|
295
|
-
- rspec-core/tmp/aruba/spec/file_2_spec.rb
|
296
350
|
- rspec-expectations/benchmarks/2.x_vs_3.x_matcher_dsl_implementation.rb
|
297
351
|
- rspec-expectations/benchmarks/autoload_v_require.rb
|
298
352
|
- rspec-expectations/benchmarks/cloning_matchers.rb
|
@@ -562,6 +616,8 @@ files:
|
|
562
616
|
- spec/mri/integration/browser_spec.rb
|
563
617
|
- spec/mri/integration/rack/sprockets_runner_js_errors.rb.erb
|
564
618
|
- spec/mri/integration/spec_opts_spec.rb
|
619
|
+
- spec/mri/spec_helper.rb
|
620
|
+
- spec/mri/support/capybara.rb
|
565
621
|
- spec/mri/unit/opal/rspec/browser_formatter_spec.rb
|
566
622
|
- spec/mri/unit/opal/rspec/cached_environment_spec.rb
|
567
623
|
- spec/mri/unit/opal/rspec/opal/browser_formatter_spec.rb
|
@@ -744,7 +800,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
744
800
|
version: '0'
|
745
801
|
requirements: []
|
746
802
|
rubyforge_project:
|
747
|
-
rubygems_version: 2.
|
803
|
+
rubygems_version: 2.6.8
|
748
804
|
signing_key:
|
749
805
|
specification_version: 4
|
750
806
|
summary: RSpec for Opal
|