short_circu_it 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: 8e7f261ac6aaee08daa2c0e9f9aff3e81d6a82dd19f71b8be5f5d6ff590b02cf
4
- data.tar.gz: 0b0a0069e63dc99f7e471bdb6c53370a3fc1103b3212e0bdf58d0ff2a07ddcd8
3
+ metadata.gz: edc7e053645fe7ba7ae72a6c34398b139288bb8c6230153d5a9d798e67818e4e
4
+ data.tar.gz: e75b1bf6dd27c7324855d41e72e9b6c436a28ecfb8c15545d57275a8330400a5
5
5
  SHA512:
6
- metadata.gz: da812e637b60671e65164524f41103f2a96b850bede88267d870a6c28eef0c27067b6817af5773832100efcde5cc5548c394fb5589ae1773cc5a37bac78c0491
7
- data.tar.gz: 88347985f0e8a7441f18fc675dfbbfd2846b26e964b2fe8ced22eb90f7b8152eecd4a4542783be9a6c6a13b01deae916a23926de037ba870543d57fc6880f0f3
6
+ metadata.gz: 4e9d16c262a00ff2bafb6081a910600ce70c9df3a4da56c193e48e967297e0a3bb050cb8a5433fc4f8d9b566f8f777e2fd5b44aa22b5d61803bc6e1928b6b0df
7
+ data.tar.gz: 51c1fdd047bb25315a75eaa376f96a9441b9f80df75a168300c8ec6e95d310868d3702610bec62f30759dafd5409e30777ae61179ad780b90565e03e1dbcaf00
data/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # [ShortCircuIt](https://www.youtube.com/watch?v=XtP88AGsslo)
2
2
 
3
+ Memoize methods safely with parameter and dependency observation
4
+
3
5
  [![Build Status](https://semaphoreci.com/api/v1/freshly/spicerack/branches/master/badge.svg)](https://semaphoreci.com/freshly/spicerack)
4
6
  [![Maintainability](https://api.codeclimate.com/v1/badges/7e089c2617c530a85b17/maintainability)](https://codeclimate.com/github/Freshly/spicerack/maintainability)
5
7
  [![Test Coverage](https://api.codeclimate.com/v1/badges/7e089c2617c530a85b17/test_coverage)](https://codeclimate.com/github/Freshly/spicerack/test_coverage)
@@ -142,9 +144,7 @@ antist.how_much_ants_can_carry
142
144
 
143
145
  ## Development
144
146
 
145
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
146
-
147
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
147
+ Consult Spicerack's [development instructions](../README.md#development) for more info.
148
148
 
149
149
  ## Contributing
150
150
 
@@ -1,5 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ShortCircuIt
4
- VERSION = "0.6.4"
4
+ # This constant is managed by spicerack
5
+ VERSION = "0.7.0"
5
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: short_circu_it
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
  - Allen Rettberg
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-04-12 00:00:00.000000000 Z
11
+ date: 2019-04-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - '='
32
32
  - !ruby/object:Gem::Version
33
- version: 0.6.4
33
+ version: 0.7.0
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - '='
39
39
  - !ruby/object:Gem::Version
40
- version: 0.6.4
40
+ version: 0.7.0
41
41
  description: Memoize methods safely with parameter and dependency observation
42
42
  email:
43
43
  - allen.rettberg@freshly.com
@@ -74,5 +74,5 @@ rubyforge_project:
74
74
  rubygems_version: 2.7.6
75
75
  signing_key:
76
76
  specification_version: 4
77
- summary: Effortless memoization
77
+ summary: An intelligent and feature rich memoization gem
78
78
  test_files: []