spicerack 0.6.4 → 0.7.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
  SHA256:
3
- metadata.gz: 54ec553790d5cc426648c6bc0d0369bd3df2443a08da8ddb324fef4c7045f010
4
- data.tar.gz: 28d4af1f867371e3d63277c8ea729d6c2eb6195cd82f40d9a8005c657b88f59a
3
+ metadata.gz: 108657387b7e26b9deaf3911a46aac3bcdc17c6782bd742bcbc3828bc73bae02
4
+ data.tar.gz: 8bc99cd75593e588e2585324368a6602dff35ad5a469362044cbcff4d7eb6818
5
5
  SHA512:
6
- metadata.gz: 31d4671ffc36159b82cf35addf147198c4309c936982c36bf5be7d339b766462c0ec079ad19fa7ef029eee62a6c6e2a45b51a42325cc1bc187f38fc8a9952f3f
7
- data.tar.gz: cbfbabea2a3d96a0669470a76b161ec8ede2f8a8a30f78a259dfeb5a962df330b593f6bd91fb96a4d1ec659b178bd409d9e1d193ad052a6434eb77d124986a04
6
+ metadata.gz: 65bfdc62c86ab0fae3571eb7e34133537dfd8995317e4ff6fc23a1111b4177a1c0d46245d9d5d7f809f121a089fa2ae38179e4ce5866b14a8c907c618fce011a
7
+ data.tar.gz: fbfdb1a920f1adc9e3fa431c45178ce6ebd45615c49f5d190501df5b0bd027fcf8da2173ca8aead394521082b1dbdc6b77f162a84940187a5bd2ccd9728be25f
data/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # Spicerack
2
2
 
3
+ This collection of gems will spice up your rails and kick your rubies up a notch. Bam!
4
+
3
5
  [![Gem Version](https://badge.fury.io/rb/spicerack.svg)](https://badge.fury.io/rb/spicerack)
4
6
  [![Build Status](https://semaphoreci.com/api/v1/freshly/spicerack/branches/master/badge.svg)](https://semaphoreci.com/freshly/spicerack)
5
7
  [![Maintainability](https://api.codeclimate.com/v1/badges/7e089c2617c530a85b17/maintainability)](https://codeclimate.com/github/Freshly/spicerack/maintainability)
@@ -32,9 +34,8 @@ Or install it yourself as:
32
34
 
33
35
  ## Included Gems
34
36
 
35
- This collection of gems will spice up your rails and kick your rubies up a notch. Bam!
36
-
37
37
  * [AroundTheWorld](around_the_world/README.md) allows you to easily wrap methods with custom logic on any class.
38
+ * [Callforth](callforth/README.md) allows you to call, with data, any class or instance methods.
38
39
  * [RSpice](rspice/README.md) is an `RSpec` utility gem of custom matchers, shared contexts and examples.
39
40
  * [ShortCircuIt](short_circu_it/README.md) is an intelligent and feature rich memoization gem.
40
41
  * [Spicerack::Styleguide](spicerack-styleguide/README.md) is [Freshly](https://www.freshly.com/)'s Rubocop Styleguide for Rails and RSpec.
@@ -77,12 +78,12 @@ Here's a checklist of some other tasks (see another gem as reference):
77
78
  - Delete `Gemfile`
78
79
  - Create a `CHANGELOG.md` and make the first entry
79
80
  - Edit `lib/GEM/version.rb` to add the comment line
80
- - Edit `README.md` to add badges and update contributor
81
- - Edit `Rakefile` to add GEM to the `SPICERACK_GEMS` constant
82
- - Remove the failing spec in `spec/GEM_spec.rb`
81
+ - Edit `README.md` to add badges, update development & contributor sections, generate ToC
82
+ - Edit `./Rakefile` to add GEM to the `SPICERACK_GEMS` constant
83
+ - Copy over `GEM/Rakefile` from any other gem
84
+ - Remove the failing spec in `spec/GEM_spec.rb` and replace it with the rspice shared example
83
85
  - Edit `spec/spec_helper.rb` to use the shared spec helper
84
86
  - Edit `GEM.gemspec` and clean up the boilerplate
85
- - Copy over `GEM/Rakefile` from any other gem
86
87
 
87
88
  Then in the base directory:
88
89
 
data/lib/spicerack.rb CHANGED
@@ -3,6 +3,8 @@
3
3
  require "spicerack/version"
4
4
 
5
5
  require "around_the_world"
6
+ require "callforth"
7
+ require "short_circu_it"
6
8
  require "technologic"
7
9
 
8
10
  module Spicerack; end
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Spicerack
4
4
  # This constant is managed by spicerack
5
- VERSION = "0.6.4"
5
+ VERSION = "0.7.0"
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spicerack
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.4
4
+ version: 0.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Garside
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-04-12 00:00:00.000000000 Z
12
+ date: 2019-04-14 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: around_the_world
@@ -17,42 +17,56 @@ dependencies:
17
17
  requirements:
18
18
  - - '='
19
19
  - !ruby/object:Gem::Version
20
- version: 0.6.4
20
+ version: 0.7.0
21
21
  type: :runtime
22
22
  prerelease: false
23
23
  version_requirements: !ruby/object:Gem::Requirement
24
24
  requirements:
25
25
  - - '='
26
26
  - !ruby/object:Gem::Version
27
- version: 0.6.4
27
+ version: 0.7.0
28
+ - !ruby/object:Gem::Dependency
29
+ name: callforth
30
+ requirement: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - '='
33
+ - !ruby/object:Gem::Version
34
+ version: 0.7.0
35
+ type: :runtime
36
+ prerelease: false
37
+ version_requirements: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - '='
40
+ - !ruby/object:Gem::Version
41
+ version: 0.7.0
28
42
  - !ruby/object:Gem::Dependency
29
43
  name: short_circu_it
30
44
  requirement: !ruby/object:Gem::Requirement
31
45
  requirements:
32
46
  - - '='
33
47
  - !ruby/object:Gem::Version
34
- version: 0.6.4
48
+ version: 0.7.0
35
49
  type: :runtime
36
50
  prerelease: false
37
51
  version_requirements: !ruby/object:Gem::Requirement
38
52
  requirements:
39
53
  - - '='
40
54
  - !ruby/object:Gem::Version
41
- version: 0.6.4
55
+ version: 0.7.0
42
56
  - !ruby/object:Gem::Dependency
43
57
  name: technologic
44
58
  requirement: !ruby/object:Gem::Requirement
45
59
  requirements:
46
60
  - - '='
47
61
  - !ruby/object:Gem::Version
48
- version: 0.6.4
62
+ version: 0.7.0
49
63
  type: :runtime
50
64
  prerelease: false
51
65
  version_requirements: !ruby/object:Gem::Requirement
52
66
  requirements:
53
67
  - - '='
54
68
  - !ruby/object:Gem::Version
55
- version: 0.6.4
69
+ version: 0.7.0
56
70
  - !ruby/object:Gem::Dependency
57
71
  name: bundler
58
72
  requirement: !ruby/object:Gem::Requirement
@@ -185,28 +199,28 @@ dependencies:
185
199
  requirements:
186
200
  - - '='
187
201
  - !ruby/object:Gem::Version
188
- version: 0.6.4
202
+ version: 0.7.0
189
203
  type: :development
190
204
  prerelease: false
191
205
  version_requirements: !ruby/object:Gem::Requirement
192
206
  requirements:
193
207
  - - '='
194
208
  - !ruby/object:Gem::Version
195
- version: 0.6.4
209
+ version: 0.7.0
196
210
  - !ruby/object:Gem::Dependency
197
211
  name: spicerack-styleguide
198
212
  requirement: !ruby/object:Gem::Requirement
199
213
  requirements:
200
214
  - - '='
201
215
  - !ruby/object:Gem::Version
202
- version: 0.6.4
216
+ version: 0.7.0
203
217
  type: :development
204
218
  prerelease: false
205
219
  version_requirements: !ruby/object:Gem::Requirement
206
220
  requirements:
207
221
  - - '='
208
222
  - !ruby/object:Gem::Version
209
- version: 0.6.4
223
+ version: 0.7.0
210
224
  description: This collection of gems will spice up your rails and kick your rubies
211
225
  up a notch. Bam!
212
226
  email: