moderation 0.0.2 → 0.0.3
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.
- data/lib/moderation/version.rb +1 -1
- data/moderation.gemspec +1 -0
- metadata +4 -4
data/lib/moderation/version.rb
CHANGED
data/moderation.gemspec
CHANGED
@@ -11,6 +11,7 @@ Gem::Specification.new do |gem|
|
|
11
11
|
gem.description = %q{Moderation stores only the most recent data based on a limit you set.}
|
12
12
|
gem.summary = %q{Certain types of data are good to keep around, but only in moderation. Moderation makes it easy to keep only the most recent amount of data you care about. Persistent storage is backed by Redis.}
|
13
13
|
gem.homepage = "http://github.com/leejones/moderation"
|
14
|
+
gem.license = "MIT"
|
14
15
|
|
15
16
|
gem.files = `git ls-files`.split($/)
|
16
17
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: moderation
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.0.
|
5
|
+
version: 0.0.3
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Lee Jones
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2013-
|
13
|
+
date: 2013-08-23 00:00:00 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: multi_json
|
@@ -81,8 +81,8 @@ files:
|
|
81
81
|
- spec/storage/in_memory_spec.rb
|
82
82
|
- spec/storage/redis_spec.rb
|
83
83
|
homepage: http://github.com/leejones/moderation
|
84
|
-
licenses:
|
85
|
-
|
84
|
+
licenses:
|
85
|
+
- MIT
|
86
86
|
post_install_message:
|
87
87
|
rdoc_options: []
|
88
88
|
|