Skip to content

Commit 8ae5677

Browse files
committed
I have not submitted a gem in a long time
1 parent 5494c05 commit 8ae5677

3 files changed

Lines changed: 10 additions & 5 deletions

File tree

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
cacheable (1.0.0)
4+
cacheable (1.0.2)
55

66
GEM
77
remote: https://rubygems.org/

cacheable.gemspec

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
1+
# -*- encoding: utf-8 -*-
12
# frozen_string_literal: true
23

4+
$LOAD_PATH.push File.expand_path("../lib", __FILE__)
5+
require 'cacheable/version'
6+
37
Gem::Specification.new do |s|
48
s.name = 'cacheable'
5-
s.version = '1.0.1'
9+
s.version = Cacheable::VERSION
610
s.date = '2018-07-31'
711
s.summary = 'Add caching to any Ruby method in a aspect orientated programming approach.'
812
s.description = 'Add caching simply without modifying your existing code. Inlcudes configurable options for simple cache invalidation. See README on github for more information.'
913
s.authors = ['Jess Hottenstein', 'Ryan Laughlin', 'Aaron Rosenberg']
1014
s.email = 'support@splitwise.com'
11-
s.files = ['lib/cacheable.rb']
15+
s.files = Dir['lib/**/*', 'README.md', 'cache-adapters.md']
1216
s.homepage = 'https://github.com/splitwise/cacheable'
13-
s.licenses = ['MIT']
17+
s.licenses = 'MIT'
18+
s.required_ruby_version = '>= 2.0.0'
1419
end

lib/cacheable/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ module Cacheable
44
module VERSION
55
MAJOR = 1
66
MINOR = 0
7-
TINY = 1
7+
TINY = 2
88
PRE = nil
99

1010
STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.').freeze

0 commit comments

Comments
 (0)