spicerack 0.15.2 → 0.16.0

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: 6e1ad3db959a1d80db6bce43379524825681ca7a82d50a6012a4b1220c234136
4
- data.tar.gz: 517769ef2464e7b023b569f50b49f01e949de1090b8c4e31cc7aae0592762c83
3
+ metadata.gz: f5da538907c8f4413543d68a1fb583de5ff370bccae269d2d0a6722ad9a751bb
4
+ data.tar.gz: 80d8065964f703af530750e9eb997543b5fd11cf7fd7e00b12818e848404deb0
5
5
  SHA512:
6
- metadata.gz: 32c2bdf51ba06a99bcfd66572a484ee441c721b3fb669d010b68e579ec8e40a79efff5ac253fd30329e06fac6853adb93de9aad6df3eaf64caa4db4bbcc2209b
7
- data.tar.gz: a9278aaf2194fc964277ce2931d6f98fc42b0f5994f158f400d8cf53bd33fb69f6e0f2dd8b1336bf13ffb48b45e7ecdf03103499cd71d93602834d51eb3dae93
6
+ metadata.gz: 751eb5fa1289cd4a594f9977914139cc235dd1ba518e833005f9e98ec91d13aca7f12aec0899336e7e8af4221e3fa435d493afe13b3106c80c133e856e8701bd
7
+ data.tar.gz: 6ed79d6167107527c462f66fa2491d87e64754575481abab4cf3ab03187a8be072e66f6c3c4bf897933c42730bcd3f374b5e5b5b69811f872e2d3862f219334a
data/README.md CHANGED
@@ -36,6 +36,7 @@ Or install it yourself as:
36
36
 
37
37
  * [AroundTheWorld](around_the_world/README.md) allows you to easily wrap methods with custom logic on any class.
38
38
  * [Collectible](collectible/README.md) provides an extensible framework for building array-like object collections.
39
+ * [Facet](facet/README.md) is a filterable, sortable, pageable, and Rails cacheable `ActiveRecord::Relation`.
39
40
  * [RedisHash](redis_hash/README.md) provides a class that matches the Hash api by wrapping Redis.
40
41
  * [RSpice](rspice/README.md) is an `RSpec` utility gem of custom matchers, shared contexts and examples.
41
42
  * [ShortCircuIt](short_circu_it/README.md) is an intelligent and feature rich memoization gem.
@@ -85,6 +86,7 @@ Here's a checklist of some other tasks (see another gem as reference):
85
86
  - Copy over `GEM/Rakefile` from any other gem
86
87
  - Remove the failing spec in `spec/GEM_spec.rb` and replace it with the rspice shared example
87
88
  - Edit `spec/spec_helper.rb` to use the shared spec helper
89
+ - Remove the default error in `lib/GEM/GEM.rb`
88
90
  - Edit `GEM.gemspec` and clean up the boilerplate
89
91
 
90
92
  Then in the base directory:
data/lib/spicerack.rb CHANGED
@@ -16,6 +16,8 @@ require "redis_hash"
16
16
 
17
17
  require "collectible"
18
18
 
19
+ require "facet"
20
+
19
21
  require "spicerack/array_index"
20
22
  require "spicerack/hash_model"
21
23
  require "spicerack/redis_model"
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Spicerack
4
4
  # This constant is managed by spicerack
5
- VERSION = "0.15.2"
5
+ VERSION = "0.16.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.15.2
4
+ version: 0.16.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Garside
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2019-08-15 00:00:00.000000000 Z
14
+ date: 2019-08-27 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: around_the_world
@@ -19,84 +19,84 @@ dependencies:
19
19
  requirements:
20
20
  - - '='
21
21
  - !ruby/object:Gem::Version
22
- version: 0.15.2
22
+ version: 0.16.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
27
  - - '='
28
28
  - !ruby/object:Gem::Version
29
- version: 0.15.2
29
+ version: 0.16.0
30
30
  - !ruby/object:Gem::Dependency
31
31
  name: collectible
32
32
  requirement: !ruby/object:Gem::Requirement
33
33
  requirements:
34
34
  - - '='
35
35
  - !ruby/object:Gem::Version
36
- version: 0.15.2
36
+ version: 0.16.0
37
37
  type: :runtime
38
38
  prerelease: false
39
39
  version_requirements: !ruby/object:Gem::Requirement
40
40
  requirements:
41
41
  - - '='
42
42
  - !ruby/object:Gem::Version
43
- version: 0.15.2
43
+ version: 0.16.0
44
44
  - !ruby/object:Gem::Dependency
45
45
  name: redis_hash
46
46
  requirement: !ruby/object:Gem::Requirement
47
47
  requirements:
48
48
  - - '='
49
49
  - !ruby/object:Gem::Version
50
- version: 0.15.2
50
+ version: 0.16.0
51
51
  type: :runtime
52
52
  prerelease: false
53
53
  version_requirements: !ruby/object:Gem::Requirement
54
54
  requirements:
55
55
  - - '='
56
56
  - !ruby/object:Gem::Version
57
- version: 0.15.2
57
+ version: 0.16.0
58
58
  - !ruby/object:Gem::Dependency
59
59
  name: short_circu_it
60
60
  requirement: !ruby/object:Gem::Requirement
61
61
  requirements:
62
62
  - - '='
63
63
  - !ruby/object:Gem::Version
64
- version: 0.15.2
64
+ version: 0.16.0
65
65
  type: :runtime
66
66
  prerelease: false
67
67
  version_requirements: !ruby/object:Gem::Requirement
68
68
  requirements:
69
69
  - - '='
70
70
  - !ruby/object:Gem::Version
71
- version: 0.15.2
71
+ version: 0.16.0
72
72
  - !ruby/object:Gem::Dependency
73
73
  name: technologic
74
74
  requirement: !ruby/object:Gem::Requirement
75
75
  requirements:
76
76
  - - '='
77
77
  - !ruby/object:Gem::Version
78
- version: 0.15.2
78
+ version: 0.16.0
79
79
  type: :runtime
80
80
  prerelease: false
81
81
  version_requirements: !ruby/object:Gem::Requirement
82
82
  requirements:
83
83
  - - '='
84
84
  - !ruby/object:Gem::Version
85
- version: 0.15.2
85
+ version: 0.16.0
86
86
  - !ruby/object:Gem::Dependency
87
87
  name: tablesalt
88
88
  requirement: !ruby/object:Gem::Requirement
89
89
  requirements:
90
90
  - - '='
91
91
  - !ruby/object:Gem::Version
92
- version: 0.15.2
92
+ version: 0.16.0
93
93
  type: :runtime
94
94
  prerelease: false
95
95
  version_requirements: !ruby/object:Gem::Requirement
96
96
  requirements:
97
97
  - - '='
98
98
  - !ruby/object:Gem::Version
99
- version: 0.15.2
99
+ version: 0.16.0
100
100
  - !ruby/object:Gem::Dependency
101
101
  name: bundler
102
102
  requirement: !ruby/object:Gem::Requirement
@@ -221,28 +221,28 @@ dependencies:
221
221
  requirements:
222
222
  - - '='
223
223
  - !ruby/object:Gem::Version
224
- version: 0.15.2
224
+ version: 0.16.0
225
225
  type: :development
226
226
  prerelease: false
227
227
  version_requirements: !ruby/object:Gem::Requirement
228
228
  requirements:
229
229
  - - '='
230
230
  - !ruby/object:Gem::Version
231
- version: 0.15.2
231
+ version: 0.16.0
232
232
  - !ruby/object:Gem::Dependency
233
233
  name: spicerack-styleguide
234
234
  requirement: !ruby/object:Gem::Requirement
235
235
  requirements:
236
236
  - - '='
237
237
  - !ruby/object:Gem::Version
238
- version: 0.15.2
238
+ version: 0.16.0
239
239
  type: :development
240
240
  prerelease: false
241
241
  version_requirements: !ruby/object:Gem::Requirement
242
242
  requirements:
243
243
  - - '='
244
244
  - !ruby/object:Gem::Version
245
- version: 0.15.2
245
+ version: 0.16.0
246
246
  description: This collection of gems will spice up your rails and kick your rubies
247
247
  up a notch. Bam!
248
248
  email:
@@ -304,7 +304,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
304
304
  - !ruby/object:Gem::Version
305
305
  version: '0'
306
306
  requirements: []
307
- rubygems_version: 3.0.3
307
+ rubyforge_project:
308
+ rubygems_version: 2.7.6
308
309
  signing_key:
309
310
  specification_version: 4
310
311
  summary: A suite of utility gems for Ruby on Rails.