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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f8c7a506e957187a1c212f3836063b0322d23467
4
- data.tar.gz: ca248573f36344d1006d0a57b5f2a728588189b2
3
+ metadata.gz: c61ea6181a19ea4907e19792ddd598104a01a910
4
+ data.tar.gz: 7cd7e011d290050799473bf0ece44f3e319401f1
5
5
  SHA512:
6
- metadata.gz: 1ce90947e3b8bdf25b459e1b2af8324631c59f6aa7bedfea2786ce38ada9b04ffd5c7f90f505125c5d95956c931f779c6e49220aa1aeb1cd3dc406a1b5499708
7
- data.tar.gz: 543540d8f433896f8d5931193c988f48303751d23f1b5d8641728bd86425a048018f008674d8f302de865bacbe5d6ae7698f2926d850b6a568546c6a54d91169
6
+ metadata.gz: 43fcc47c48a0d40bf5aecb990a84eb063e1c4c0b2c206f021525bcc0663d5d9bc283134096c7ac22b5df7575101d1422a1777b5adcb69c02fdf856ed87baff9e
7
+ data.tar.gz: '070972977f0f406aed576d0a3ead8e1d2dd98b0d5c237e5fbf74c9ea808fdaf6c0d98b19794e01cb06e9aeb3735839c816cd9c4a6916637c8c6a4b617d5475e6'
data/Rakefile CHANGED
@@ -1,2 +1 @@
1
1
  require "bundler/gem_tasks"
2
- task :default => :spec
@@ -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 FactoryGirl::Syntax::Methods
20
+ config.include FactoryBot::Syntax::Methods
21
21
 
22
22
  # visit spree.admin_path
23
23
  # current_path.should eql(spree.products_path)
@@ -1,3 +1,3 @@
1
1
  module SolidusSupport
2
- VERSION = "0.1.5"
2
+ VERSION = "0.2.0"
3
3
  end
@@ -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").reject do |f|
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.1.5
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Hawthorn
8
8
  autorequire:
9
- bindir: exe
9
+ bindir: bin
10
10
  cert_chain: []
11
- date: 2017-07-27 00:00:00.000000000 Z
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
@@ -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__)
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here