solidus_support 0.1.5 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Rakefile +0 -1
- data/lib/solidus_support/extension/rails_helper.rb +1 -1
- data/lib/solidus_support/version.rb +1 -1
- data/solidus_support.gemspec +1 -5
- metadata +3 -5
- data/bin/console +0 -14
- data/bin/setup +0 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c61ea6181a19ea4907e19792ddd598104a01a910
|
4
|
+
data.tar.gz: 7cd7e011d290050799473bf0ece44f3e319401f1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 43fcc47c48a0d40bf5aecb990a84eb063e1c4c0b2c206f021525bcc0663d5d9bc283134096c7ac22b5df7575101d1422a1777b5adcb69c02fdf856ed87baff9e
|
7
|
+
data.tar.gz: '070972977f0f406aed576d0a3ead8e1d2dd98b0d5c237e5fbf74c9ea808fdaf6c0d98b19794e01cb06e9aeb3735839c816cd9c4a6916637c8c6a4b617d5475e6'
|
data/Rakefile
CHANGED
@@ -17,7 +17,7 @@ require 'spree/testing_support/url_helpers'
|
|
17
17
|
require 'spree/testing_support/preferences'
|
18
18
|
|
19
19
|
RSpec.configure do |config|
|
20
|
-
config.include
|
20
|
+
config.include FactoryBot::Syntax::Methods
|
21
21
|
|
22
22
|
# visit spree.admin_path
|
23
23
|
# current_path.should eql(spree.products_path)
|
data/solidus_support.gemspec
CHANGED
@@ -13,11 +13,7 @@ Gem::Specification.new do |spec|
|
|
13
13
|
spec.description = %q{Collection of common functionality for solidus extensions}
|
14
14
|
spec.homepage = "https://solidus.io"
|
15
15
|
|
16
|
-
spec.files = `git ls-files -z`.split("\x0")
|
17
|
-
f.match(%r{^(test|spec|features)/})
|
18
|
-
end
|
19
|
-
spec.bindir = "exe"
|
20
|
-
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
16
|
+
spec.files = `git ls-files -z`.split("\x0")
|
21
17
|
spec.require_paths = ["lib"]
|
22
18
|
|
23
19
|
spec.add_development_dependency "bundler", "~> 1.14"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: solidus_support
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- John Hawthorn
|
8
8
|
autorequire:
|
9
|
-
bindir:
|
9
|
+
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-10-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -49,8 +49,6 @@ files:
|
|
49
49
|
- Gemfile
|
50
50
|
- README.md
|
51
51
|
- Rakefile
|
52
|
-
- bin/console
|
53
|
-
- bin/setup
|
54
52
|
- lib/solidus_support.rb
|
55
53
|
- lib/solidus_support/extension/feature_helper.rb
|
56
54
|
- lib/solidus_support/extension/rails_helper.rb
|
data/bin/console
DELETED
@@ -1,14 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
|
3
|
-
require "bundler/setup"
|
4
|
-
require "solidus_support"
|
5
|
-
|
6
|
-
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
-
# with your gem easier. You can also use a different console, if you like.
|
8
|
-
|
9
|
-
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
-
# require "pry"
|
11
|
-
# Pry.start
|
12
|
-
|
13
|
-
require "irb"
|
14
|
-
IRB.start(__FILE__)
|