spicerack 0.6.3 → 0.6.4
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/README.md +19 -6
- data/lib/spicerack/version.rb +1 -1
- metadata +12 -12
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 54ec553790d5cc426648c6bc0d0369bd3df2443a08da8ddb324fef4c7045f010
|
|
4
|
+
data.tar.gz: 28d4af1f867371e3d63277c8ea729d6c2eb6195cd82f40d9a8005c657b88f59a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 31d4671ffc36159b82cf35addf147198c4309c936982c36bf5be7d339b766462c0ec079ad19fa7ef029eee62a6c6e2a45b51a42325cc1bc187f38fc8a9952f3f
|
|
7
|
+
data.tar.gz: cbfbabea2a3d96a0669470a76b161ec8ede2f8a8a30f78a259dfeb5a962df330b593f6bd91fb96a4d1ec659b178bd409d9e1d193ad052a6434eb77d124986a04
|
data/README.md
CHANGED
|
@@ -5,7 +5,14 @@
|
|
|
5
5
|
[](https://codeclimate.com/github/Freshly/spicerack/maintainability)
|
|
6
6
|
[](https://codeclimate.com/github/Freshly/spicerack/test_coverage)
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
* [Installation](#installation)
|
|
9
|
+
* [Included Gems](#included-gems)
|
|
10
|
+
* [Development](#development)
|
|
11
|
+
* [Contributing](#contributing)
|
|
12
|
+
* [Adding a New Spicerack Gem](#adding-a-new-spicerack-gem)
|
|
13
|
+
* [Release](#release)
|
|
14
|
+
* [Versions](#versions)
|
|
15
|
+
* [License](#license)
|
|
9
16
|
|
|
10
17
|
## Installation
|
|
11
18
|
|
|
@@ -23,9 +30,15 @@ Or install it yourself as:
|
|
|
23
30
|
|
|
24
31
|
$ gem install spicerack
|
|
25
32
|
|
|
26
|
-
##
|
|
33
|
+
## Included Gems
|
|
34
|
+
|
|
35
|
+
This collection of gems will spice up your rails and kick your rubies up a notch. Bam!
|
|
27
36
|
|
|
28
|
-
|
|
37
|
+
* [AroundTheWorld](around_the_world/README.md) allows you to easily wrap methods with custom logic on any class.
|
|
38
|
+
* [RSpice](rspice/README.md) is an `RSpec` utility gem of custom matchers, shared contexts and examples.
|
|
39
|
+
* [ShortCircuIt](short_circu_it/README.md) is an intelligent and feature rich memoization gem.
|
|
40
|
+
* [Spicerack::Styleguide](spicerack-styleguide/README.md) is [Freshly](https://www.freshly.com/)'s Rubocop Styleguide for Rails and RSpec.
|
|
41
|
+
* [Technologic](technologic/README.md) is a logging system built on an extensible event triggering system requiring minimal implementation.
|
|
29
42
|
|
|
30
43
|
## Development
|
|
31
44
|
|
|
@@ -39,11 +52,11 @@ This Open Source is supported by [Freshly](https://freshly.com), a company commi
|
|
|
39
52
|
|
|
40
53
|
We're basically [always hiring](https://jobs.lever.co/freshly).
|
|
41
54
|
|
|
42
|
-
Come join us in our New York City or
|
|
55
|
+
Come join us in our New York City, Phoenix, or Minsk offices and write some awesome software!
|
|
43
56
|
|
|
44
57
|
Community support is always appreciated! Bug reports and pull requests are welcome on [GitHub](https://github.com/Freshly/spicerack).
|
|
45
58
|
|
|
46
|
-
###
|
|
59
|
+
### Adding a New Spicerack Gem
|
|
47
60
|
|
|
48
61
|
To add a new gem to the spicerack:
|
|
49
62
|
|
|
@@ -92,7 +105,7 @@ Once that gets merged into master, run:
|
|
|
92
105
|
|
|
93
106
|
This is a monorepo which contains several gems designed to build and release together.
|
|
94
107
|
|
|
95
|
-
To perform release, set the new canonical version in the `SPICERACK_VERSION` file then run the task.
|
|
108
|
+
To perform release, set the new canonical version in the .4.4`SPICERACK_VERSION` file then run the task.
|
|
96
109
|
|
|
97
110
|
```ruby
|
|
98
111
|
echo "0.1.0" > SPICERACK_VERSION
|
data/lib/spicerack/version.rb
CHANGED
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
|
+
version: 0.6.4
|
|
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-
|
|
12
|
+
date: 2019-04-12 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: around_the_world
|
|
@@ -17,42 +17,42 @@ dependencies:
|
|
|
17
17
|
requirements:
|
|
18
18
|
- - '='
|
|
19
19
|
- !ruby/object:Gem::Version
|
|
20
|
-
version: 0.6.
|
|
20
|
+
version: 0.6.4
|
|
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.
|
|
27
|
+
version: 0.6.4
|
|
28
28
|
- !ruby/object:Gem::Dependency
|
|
29
29
|
name: short_circu_it
|
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
|
31
31
|
requirements:
|
|
32
32
|
- - '='
|
|
33
33
|
- !ruby/object:Gem::Version
|
|
34
|
-
version: 0.6.
|
|
34
|
+
version: 0.6.4
|
|
35
35
|
type: :runtime
|
|
36
36
|
prerelease: false
|
|
37
37
|
version_requirements: !ruby/object:Gem::Requirement
|
|
38
38
|
requirements:
|
|
39
39
|
- - '='
|
|
40
40
|
- !ruby/object:Gem::Version
|
|
41
|
-
version: 0.6.
|
|
41
|
+
version: 0.6.4
|
|
42
42
|
- !ruby/object:Gem::Dependency
|
|
43
43
|
name: technologic
|
|
44
44
|
requirement: !ruby/object:Gem::Requirement
|
|
45
45
|
requirements:
|
|
46
46
|
- - '='
|
|
47
47
|
- !ruby/object:Gem::Version
|
|
48
|
-
version: 0.6.
|
|
48
|
+
version: 0.6.4
|
|
49
49
|
type: :runtime
|
|
50
50
|
prerelease: false
|
|
51
51
|
version_requirements: !ruby/object:Gem::Requirement
|
|
52
52
|
requirements:
|
|
53
53
|
- - '='
|
|
54
54
|
- !ruby/object:Gem::Version
|
|
55
|
-
version: 0.6.
|
|
55
|
+
version: 0.6.4
|
|
56
56
|
- !ruby/object:Gem::Dependency
|
|
57
57
|
name: bundler
|
|
58
58
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -185,28 +185,28 @@ dependencies:
|
|
|
185
185
|
requirements:
|
|
186
186
|
- - '='
|
|
187
187
|
- !ruby/object:Gem::Version
|
|
188
|
-
version: 0.6.
|
|
188
|
+
version: 0.6.4
|
|
189
189
|
type: :development
|
|
190
190
|
prerelease: false
|
|
191
191
|
version_requirements: !ruby/object:Gem::Requirement
|
|
192
192
|
requirements:
|
|
193
193
|
- - '='
|
|
194
194
|
- !ruby/object:Gem::Version
|
|
195
|
-
version: 0.6.
|
|
195
|
+
version: 0.6.4
|
|
196
196
|
- !ruby/object:Gem::Dependency
|
|
197
197
|
name: spicerack-styleguide
|
|
198
198
|
requirement: !ruby/object:Gem::Requirement
|
|
199
199
|
requirements:
|
|
200
200
|
- - '='
|
|
201
201
|
- !ruby/object:Gem::Version
|
|
202
|
-
version: 0.6.
|
|
202
|
+
version: 0.6.4
|
|
203
203
|
type: :development
|
|
204
204
|
prerelease: false
|
|
205
205
|
version_requirements: !ruby/object:Gem::Requirement
|
|
206
206
|
requirements:
|
|
207
207
|
- - '='
|
|
208
208
|
- !ruby/object:Gem::Version
|
|
209
|
-
version: 0.6.
|
|
209
|
+
version: 0.6.4
|
|
210
210
|
description: This collection of gems will spice up your rails and kick your rubies
|
|
211
211
|
up a notch. Bam!
|
|
212
212
|
email:
|