bouncer 0.0.1 → 0.0.2
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/Rakefile +2 -0
- data/bouncer.gemspec +7 -1
- data/lib/bouncer/version.rb +1 -1
- metadata +37 -5
data/Rakefile
CHANGED
|
@@ -13,6 +13,8 @@ begin
|
|
|
13
13
|
gem.email = "andrewnez@gmail.com"
|
|
14
14
|
gem.homepage = "http://github.com/andrew/bouncer"
|
|
15
15
|
gem.authors = ["Andrew Nesbitt"]
|
|
16
|
+
gem.add_dependency("json", '>= 1.4.3')
|
|
17
|
+
gem.add_dependency("curb", '>= 0.7.3')
|
|
16
18
|
gem.add_development_dependency "thoughtbot-shoulda", ">= 0"
|
|
17
19
|
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
|
18
20
|
end
|
data/bouncer.gemspec
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{bouncer}
|
|
8
|
-
s.version = "0.0.
|
|
8
|
+
s.version = "0.0.2"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Andrew Nesbitt"]
|
|
@@ -46,11 +46,17 @@ Gem::Specification.new do |s|
|
|
|
46
46
|
s.specification_version = 3
|
|
47
47
|
|
|
48
48
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
49
|
+
s.add_runtime_dependency(%q<json>, [">= 1.4.3"])
|
|
50
|
+
s.add_runtime_dependency(%q<curb>, [">= 0.7.3"])
|
|
49
51
|
s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
|
50
52
|
else
|
|
53
|
+
s.add_dependency(%q<json>, [">= 1.4.3"])
|
|
54
|
+
s.add_dependency(%q<curb>, [">= 0.7.3"])
|
|
51
55
|
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
|
52
56
|
end
|
|
53
57
|
else
|
|
58
|
+
s.add_dependency(%q<json>, [">= 1.4.3"])
|
|
59
|
+
s.add_dependency(%q<curb>, [">= 0.7.3"])
|
|
54
60
|
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
|
55
61
|
end
|
|
56
62
|
end
|
data/lib/bouncer/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bouncer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 27
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 0.0.
|
|
9
|
+
- 2
|
|
10
|
+
version: 0.0.2
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Andrew Nesbitt
|
|
@@ -19,9 +19,41 @@ date: 2010-06-04 00:00:00 +01:00
|
|
|
19
19
|
default_executable: bouncer
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|
|
22
|
-
name:
|
|
22
|
+
name: json
|
|
23
23
|
prerelease: false
|
|
24
24
|
requirement: &id001 !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
26
|
+
requirements:
|
|
27
|
+
- - ">="
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
hash: 1
|
|
30
|
+
segments:
|
|
31
|
+
- 1
|
|
32
|
+
- 4
|
|
33
|
+
- 3
|
|
34
|
+
version: 1.4.3
|
|
35
|
+
type: :runtime
|
|
36
|
+
version_requirements: *id001
|
|
37
|
+
- !ruby/object:Gem::Dependency
|
|
38
|
+
name: curb
|
|
39
|
+
prerelease: false
|
|
40
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
|
41
|
+
none: false
|
|
42
|
+
requirements:
|
|
43
|
+
- - ">="
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
hash: 5
|
|
46
|
+
segments:
|
|
47
|
+
- 0
|
|
48
|
+
- 7
|
|
49
|
+
- 3
|
|
50
|
+
version: 0.7.3
|
|
51
|
+
type: :runtime
|
|
52
|
+
version_requirements: *id002
|
|
53
|
+
- !ruby/object:Gem::Dependency
|
|
54
|
+
name: thoughtbot-shoulda
|
|
55
|
+
prerelease: false
|
|
56
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
|
25
57
|
none: false
|
|
26
58
|
requirements:
|
|
27
59
|
- - ">="
|
|
@@ -31,7 +63,7 @@ dependencies:
|
|
|
31
63
|
- 0
|
|
32
64
|
version: "0"
|
|
33
65
|
type: :development
|
|
34
|
-
version_requirements: *
|
|
66
|
+
version_requirements: *id003
|
|
35
67
|
description: Bouncer makes it easy to remove a collabroator's access to all of your github projects, perfect for when someone leaves your company or team and you don't want them to have access to your projects anymore.
|
|
36
68
|
email: andrewnez@gmail.com
|
|
37
69
|
executables:
|