resqutils 1.3.1 → 1.3.2

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
2
  SHA256:
3
- metadata.gz: d74a810541298ddae197a8974a3692e831bc19d9ac6df79d71fccd8eef1c50e0
4
- data.tar.gz: bc0703b4aa243520b5be70286567f48af94356002a344c0897b60adc3cb3bc51
3
+ metadata.gz: d53702cbe4999bae6f991dc455ec7a44c1b381c99dc2c38aaa42005556e3fb45
4
+ data.tar.gz: dcea9b8eba095695e22c3af93412cd8b86d5331ca0d1565d423aaef33d14aa8d
5
5
  SHA512:
6
- metadata.gz: 374022b7d27b8f1c007291b9bf4794f7432d0e8fd78d7ed27f9206fc2814f295d56e7815c4931696a3e2b4214f85c9b8bfa5e337ffd5e1506447306292e7936c
7
- data.tar.gz: ae02360a588b26541bccc6437a9c84a3239caae85749a77d8bea2b52ced3f7780fc838c8a8f9407058b04fd118a70ddbea1501ec024813055cc4390384644ff2
6
+ metadata.gz: 36b72c053de4e2ef7ee87eb97cbaad3669a0eeb830addee6c1beb4ac99a49994d15fb2a4260ef64cbc61a103af6a64f4377adae1edbf69ca63cecfddfb9a8b13
7
+ data.tar.gz: e951a915ced35ddd5204df1e98d081d1c316aa305578c669c635c9bbe97667a84cc12141a0e0d8a28f0ef3204f9ea96781d9faf99ca9eb8dc47ad79db6e1bfa4
data/.gitignore CHANGED
@@ -10,3 +10,4 @@ db
10
10
  .jhw-cache
11
11
  **.orig
12
12
  Gemfile.lock
13
+ bin
@@ -1,3 +1,3 @@
1
1
  module Resqutils
2
- VERSION='1.3.1'
2
+ VERSION='1.3.2'
3
3
  end
@@ -15,7 +15,7 @@ Gem::Specification.new do |s|
15
15
 
16
16
  s.files = `git ls-files`.split("\n")
17
17
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
18
- s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
18
+ s.executables = []
19
19
  s.require_paths = ["lib"]
20
20
  s.add_runtime_dependency("resque")
21
21
  s.add_development_dependency("rake")
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: resqutils
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.1
4
+ version: 1.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stitch Fix Engineering
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2020-01-03 00:00:00.000000000 Z
13
+ date: 2020-03-27 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: resque
@@ -87,9 +87,7 @@ email:
87
87
  - opensource@stitchfix.com
88
88
  - davetron5000@gmail.com
89
89
  - simeon@simeons.net
90
- executables:
91
- - rake
92
- - rspec
90
+ executables: []
93
91
  extensions: []
94
92
  extra_rdoc_files: []
95
93
  files:
@@ -104,8 +102,6 @@ files:
104
102
  - LICENSE.txt
105
103
  - README.md
106
104
  - Rakefile
107
- - bin/rake
108
- - bin/rspec
109
105
  - build-matrix.json
110
106
  - gemfiles/rspec2.gemfile
111
107
  - gemfiles/rspec2.gemfile.lock
data/bin/rake DELETED
@@ -1,17 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # frozen_string_literal: true
3
- #
4
- # This file was generated by Bundler.
5
- #
6
- # The application 'rake' is installed as part of a gem, and
7
- # this file is here to facilitate running it.
8
- #
9
-
10
- require "pathname"
11
- ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
12
- Pathname.new(__FILE__).realpath)
13
-
14
- require "rubygems"
15
- require "bundler/setup"
16
-
17
- load Gem.bin_path("rake", "rake")
data/bin/rspec DELETED
@@ -1,17 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # frozen_string_literal: true
3
- #
4
- # This file was generated by Bundler.
5
- #
6
- # The application 'rspec' is installed as part of a gem, and
7
- # this file is here to facilitate running it.
8
- #
9
-
10
- require "pathname"
11
- ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
12
- Pathname.new(__FILE__).realpath)
13
-
14
- require "rubygems"
15
- require "bundler/setup"
16
-
17
- load Gem.bin_path("rspec-core", "rspec")