rollout 0.3.0 → 1.0.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.
- data/VERSION +1 -1
- data/rollout.gemspec +19 -26
- metadata +10 -12
- data/.gitignore +0 -21
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.
|
|
1
|
+
1.0.0
|
data/rollout.gemspec
CHANGED
|
@@ -1,46 +1,39 @@
|
|
|
1
1
|
# Generated by jeweler
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
|
-
s.name =
|
|
8
|
-
s.version = "0.
|
|
7
|
+
s.name = "rollout"
|
|
8
|
+
s.version = "1.0.0"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["James Golick"]
|
|
12
|
-
s.date =
|
|
13
|
-
s.description =
|
|
14
|
-
s.email =
|
|
12
|
+
s.date = "2011-10-06"
|
|
13
|
+
s.description = "Conditionally roll out features with redis."
|
|
14
|
+
s.email = "jamesgoick@gmail.com"
|
|
15
15
|
s.extra_rdoc_files = [
|
|
16
16
|
"LICENSE",
|
|
17
|
-
|
|
17
|
+
"README.rdoc"
|
|
18
18
|
]
|
|
19
19
|
s.files = [
|
|
20
20
|
".document",
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
"rollout.gemspec",
|
|
28
|
-
"spec/rollout_spec.rb",
|
|
29
|
-
"spec/spec.opts",
|
|
30
|
-
"spec/spec_helper.rb"
|
|
31
|
-
]
|
|
32
|
-
s.homepage = %q{http://github.com/jamesgolick/rollout}
|
|
33
|
-
s.rdoc_options = ["--charset=UTF-8"]
|
|
34
|
-
s.require_paths = ["lib"]
|
|
35
|
-
s.rubygems_version = %q{1.3.7}
|
|
36
|
-
s.summary = %q{Conditionally roll out features with redis.}
|
|
37
|
-
s.test_files = [
|
|
21
|
+
"LICENSE",
|
|
22
|
+
"README.rdoc",
|
|
23
|
+
"Rakefile",
|
|
24
|
+
"VERSION",
|
|
25
|
+
"lib/rollout.rb",
|
|
26
|
+
"rollout.gemspec",
|
|
38
27
|
"spec/rollout_spec.rb",
|
|
39
|
-
|
|
28
|
+
"spec/spec.opts",
|
|
29
|
+
"spec/spec_helper.rb"
|
|
40
30
|
]
|
|
31
|
+
s.homepage = "http://github.com/jamesgolick/rollout"
|
|
32
|
+
s.require_paths = ["lib"]
|
|
33
|
+
s.rubygems_version = "1.3.9.3"
|
|
34
|
+
s.summary = "Conditionally roll out features with redis."
|
|
41
35
|
|
|
42
36
|
if s.respond_to? :specification_version then
|
|
43
|
-
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
44
37
|
s.specification_version = 3
|
|
45
38
|
|
|
46
39
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rollout
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
5
|
-
prerelease:
|
|
4
|
+
hash: 23
|
|
5
|
+
prerelease:
|
|
6
6
|
segments:
|
|
7
|
+
- 1
|
|
7
8
|
- 0
|
|
8
|
-
- 3
|
|
9
9
|
- 0
|
|
10
|
-
version: 0.
|
|
10
|
+
version: 1.0.0
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- James Golick
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date:
|
|
18
|
+
date: 2011-10-06 00:00:00 -07:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|
|
@@ -76,7 +76,6 @@ extra_rdoc_files:
|
|
|
76
76
|
- README.rdoc
|
|
77
77
|
files:
|
|
78
78
|
- .document
|
|
79
|
-
- .gitignore
|
|
80
79
|
- LICENSE
|
|
81
80
|
- README.rdoc
|
|
82
81
|
- Rakefile
|
|
@@ -91,8 +90,8 @@ homepage: http://github.com/jamesgolick/rollout
|
|
|
91
90
|
licenses: []
|
|
92
91
|
|
|
93
92
|
post_install_message:
|
|
94
|
-
rdoc_options:
|
|
95
|
-
|
|
93
|
+
rdoc_options: []
|
|
94
|
+
|
|
96
95
|
require_paths:
|
|
97
96
|
- lib
|
|
98
97
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
@@ -116,10 +115,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
116
115
|
requirements: []
|
|
117
116
|
|
|
118
117
|
rubyforge_project:
|
|
119
|
-
rubygems_version: 1.3.
|
|
118
|
+
rubygems_version: 1.3.9.3
|
|
120
119
|
signing_key:
|
|
121
120
|
specification_version: 3
|
|
122
121
|
summary: Conditionally roll out features with redis.
|
|
123
|
-
test_files:
|
|
124
|
-
|
|
125
|
-
- spec/spec_helper.rb
|
|
122
|
+
test_files: []
|
|
123
|
+
|