retained 0.2.0 → 0.2.1

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
  SHA1:
3
- metadata.gz: 317887a657165bd4f98044452991c6c996caef5f
4
- data.tar.gz: fa9153b2f9baa6e7e3b1bb76a56b69f734fb5e10
3
+ metadata.gz: 2f5d6bcae30957db9c68732ac86d8ecaab0b87b8
4
+ data.tar.gz: 7f9cd05317be943e80db30d0400f2e846c3953c9
5
5
  SHA512:
6
- metadata.gz: 5938aa170f9c1833deb203a94f1a6a34e539dc6495f2f1a304ebc163ad87b8ae93bb96cefe5db05c2da76b6da706ff705198b940672694da4d09d8c1ea56b2fb
7
- data.tar.gz: 5de14e34ec6ae0bf2918ec6d3a7a583a561827f42e149aa8051a336133f1a796039c27b1b2e9d363297321839000bc27d03cc382d24a4969025a6e71f0dea54b
6
+ metadata.gz: 5d4b7f865769cf26c8cf23f6863d9fc297319d02a95e2fba2e9012b4189e73a7440ea7b259da38f30f3d42348735b4f8880f6ad5dab2a9fee9fcc03e3de0518c
7
+ data.tar.gz: da5f936e390f57a603f216c38dac7fb488b5cb81ecb46056b20b8500aea8a85edc90f0869ac8bd13693187184c2c9938360afa631a11a26c3102269eb4e6bba2
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 0.2.1
2
+
3
+ * Fixed ActiveSupport require declaration
4
+
1
5
  # 0.2.0
2
6
 
3
7
  * Added support for directly providing a Redis connection
@@ -1,5 +1,5 @@
1
1
  require 'redis/bitops'
2
- require 'active_support/core_ext/time'
2
+ require 'active_support/core_ext/time/calculations'
3
3
  require 'retained/configuration'
4
4
 
5
5
  module Retained
@@ -2,7 +2,7 @@ module Retained
2
2
  module Version
3
3
  MAJOR = 0
4
4
  MINOR = 2
5
- PATCH = 0
5
+ PATCH = 1
6
6
  BUILD = nil
7
7
 
8
8
  STRING = [MAJOR, MINOR, PATCH, BUILD].compact.join('.')
data/retained.gemspec CHANGED
@@ -2,16 +2,16 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: retained 0.2.0 ruby lib
5
+ # stub: retained 0.2.1 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "retained"
9
- s.version = "0.2.0"
9
+ s.version = "0.2.1"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib"]
13
13
  s.authors = ["Mike Saffitz"]
14
- s.date = "2014-09-29"
14
+ s.date = "2014-10-13"
15
15
  s.description = "\n Easy tracking of activity and retention at scale in daily, hourly, or minute intervals\n using sparse Redis bitmaps.\n "
16
16
  s.email = "m@saffitz.com"
17
17
  s.extra_rdoc_files = [
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: retained
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Saffitz
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-09-29 00:00:00.000000000 Z
11
+ date: 2014-10-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: redis