cypress_rails 0.8.0 → 0.9.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: 0d85a821b5d2cd0e8370187b1bcc020547cee90c
4
- data.tar.gz: e01f2dc6b03c29e3e16d42dc0a10d5e48b48bdc1
2
+ SHA256:
3
+ metadata.gz: 4fca533aef9e0c914453f031732a352fcd70ee96677b4662f0d7e07b4d634c70
4
+ data.tar.gz: 4ca86b8185a86923d24d435e5441fe89f5d1870e686d9a1395200c43575f0fc9
5
5
  SHA512:
6
- metadata.gz: 87ba415d1d19059b5eaa5a78aed1558b7d0d61cb32660a85783976a1d3805c8061a98861f5ba74663bf2c4756641174d909a70db3dfdaba460fe0764c0700c48
7
- data.tar.gz: 31ed0e3fbf37f01f4f7d201e0e0b22ea4b5ca295a985adf55dff26e902b098bf22d06e7b64537e85ef37f6a79dfdfb8354d683945dc517655efa7242dd8db38e
6
+ metadata.gz: 74867fe71964b27b11652f216976e9c932d927ad73c6e2f4ca454074178854c23bbd43ecc93cced108b957327a455313cab9178c0b56fb636290a6dd1d2fbc51
7
+ data.tar.gz: ac5060f73b90bb604d34eb7c51c1e0de991ab141550d9a82b30d6401e97570360e3097d15892b3237f077ddbb7297b5eeee8e0612ea3473eca2ee48a6f9ce81b
data/ChangeLog.md CHANGED
@@ -1,3 +1,7 @@
1
+ ### 0.9.0 / 2019-09-24
2
+
3
+ * don't pass -P flag to set tests path, instead rely on the config inside cypress.json
4
+
1
5
  ### 0.7.0 / 2018-07-12
2
6
 
3
7
  * add --browser option and pass the selected browser to the run method
@@ -11,7 +11,7 @@ module CypressRails
11
11
  end
12
12
 
13
13
  def run(browser = "chrome")
14
- command = [bin_path, "run", "-P #{tests_path}"]
14
+ command = [bin_path, "run"]
15
15
  command << "--browser #{browser}" if %w(chrome electron).include?(browser)
16
16
  command << "--record" if ENV.fetch("CYPRESS_RECORD_KEY", false)
17
17
  command << "--parallel" if ENV.fetch("CYPRESS_PARALLEL", false)
@@ -2,5 +2,5 @@
2
2
 
3
3
  module CypressRails
4
4
  # cypress_rails version
5
- VERSION = "0.8.0"
5
+ VERSION = "0.9.0"
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cypress_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Szymon Szeliga
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-08-22 00:00:00.000000000 Z
11
+ date: 2019-09-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
@@ -248,7 +248,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
248
248
  version: '0'
249
249
  requirements: []
250
250
  rubyforge_project:
251
- rubygems_version: 2.6.13
251
+ rubygems_version: 2.7.6
252
252
  signing_key:
253
253
  specification_version: 4
254
254
  summary: Integrate cypress.io with your rails app