spree_cmd 3.1.5 → 3.1.6
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/spree_cmd/templates/extension/extension.gemspec +1 -2
- data/spree_cmd.gemspec +1 -2
- metadata +4 -6
- data/spec/spec_helper.rb +0 -30
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8f389f074f244a7735532291755968fa5a850425
|
|
4
|
+
data.tar.gz: '002784c643286270b91ec355514fdef4dd3ab76a'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8fea76ba49a57e53e6818cddbe1b96a0e053566bdbe284cbbb9e2e2fdb81ae2f7c3ab0a47194df4e1678928a9fcabc2b44ae8ade6995d86c28b0d372b561738c
|
|
7
|
+
data.tar.gz: ef9b7138996138a08315c2db428ce9288711e9972f52820da1426b09459fadd48d075d95121dcac35ece6b230c92de591a82c2883e773354e378b4978e6266d0
|
|
@@ -12,8 +12,7 @@ Gem::Specification.new do |s|
|
|
|
12
12
|
# s.homepage = 'http://www.spreecommerce.com'
|
|
13
13
|
s.license = 'BSD-3'
|
|
14
14
|
|
|
15
|
-
# s.files = `git ls-files`.split("\n")
|
|
16
|
-
# s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
15
|
+
# s.files = `git ls-files`.split("\n").reject { |f| f.match(/^spec/) }
|
|
17
16
|
s.require_path = 'lib'
|
|
18
17
|
s.requirements << 'none'
|
|
19
18
|
|
data/spree_cmd.gemspec
CHANGED
|
@@ -14,8 +14,7 @@ Gem::Specification.new do |s|
|
|
|
14
14
|
|
|
15
15
|
s.rubyforge_project = "spree_cmd"
|
|
16
16
|
|
|
17
|
-
s.files = `git ls-files`.split("\n")
|
|
18
|
-
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
17
|
+
s.files = `git ls-files`.split("\n").reject { |f| f.match(/^spec/) }
|
|
19
18
|
s.bindir = 'bin'
|
|
20
19
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
21
20
|
s.require_paths = ["lib"]
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: spree_cmd
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.1.
|
|
4
|
+
version: 3.1.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chris Mar
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-07-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rspec
|
|
@@ -76,7 +76,6 @@ files:
|
|
|
76
76
|
- lib/spree_cmd/templates/extension/rspec
|
|
77
77
|
- lib/spree_cmd/templates/extension/spec/spec_helper.rb.tt
|
|
78
78
|
- lib/spree_cmd/version.rb
|
|
79
|
-
- spec/spec_helper.rb
|
|
80
79
|
- spree_cmd.gemspec
|
|
81
80
|
homepage: http://spreecommerce.com
|
|
82
81
|
licenses:
|
|
@@ -98,9 +97,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
98
97
|
version: '0'
|
|
99
98
|
requirements: []
|
|
100
99
|
rubyforge_project: spree_cmd
|
|
101
|
-
rubygems_version: 2.6.
|
|
100
|
+
rubygems_version: 2.6.11
|
|
102
101
|
signing_key:
|
|
103
102
|
specification_version: 4
|
|
104
103
|
summary: Spree Commerce command line utility
|
|
105
|
-
test_files:
|
|
106
|
-
- spec/spec_helper.rb
|
|
104
|
+
test_files: []
|
data/spec/spec_helper.rb
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
if ENV["COVERAGE"]
|
|
2
|
-
# Run Coverage report
|
|
3
|
-
require 'simplecov'
|
|
4
|
-
SimpleCov.start do
|
|
5
|
-
add_group 'Controllers', 'app/controllers'
|
|
6
|
-
add_group 'Helpers', 'app/helpers'
|
|
7
|
-
add_group 'Mailers', 'app/mailers'
|
|
8
|
-
add_group 'Models', 'app/models'
|
|
9
|
-
add_group 'Views', 'app/views'
|
|
10
|
-
add_group 'Libraries', 'lib'
|
|
11
|
-
end
|
|
12
|
-
end
|
|
13
|
-
|
|
14
|
-
# This file is copied to ~/spec when you run 'ruby script/generate rspec'
|
|
15
|
-
# from the project root directory.
|
|
16
|
-
ENV["RAILS_ENV"] ||= 'test'
|
|
17
|
-
|
|
18
|
-
require 'spree/testing_support/shoulda_matcher_configuration'
|
|
19
|
-
|
|
20
|
-
RSpec.configure do |config|
|
|
21
|
-
config.color = true
|
|
22
|
-
config.mock_with :rspec
|
|
23
|
-
config.raise_errors_for_deprecations!
|
|
24
|
-
|
|
25
|
-
config.fixture_path = "#{::Rails.root}/spec/fixtures"
|
|
26
|
-
|
|
27
|
-
config.use_transactional_fixtures = false
|
|
28
|
-
|
|
29
|
-
config.fail_fast = ENV['FAIL_FAST'] || false
|
|
30
|
-
end
|