zencoder-fetcher 0.1.3 → 0.1.4
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 +1 -0
- data/VERSION +1 -1
- data/zencoder-fetcher.gemspec +5 -2
- metadata +15 -3
data/Rakefile
CHANGED
|
@@ -13,6 +13,7 @@ begin
|
|
|
13
13
|
gem.add_development_dependency "thoughtbot-shoulda", ">= 0"
|
|
14
14
|
gem.add_dependency 'httparty'
|
|
15
15
|
gem.add_dependency 'json'
|
|
16
|
+
gem.add_dependency 'trollop'
|
|
16
17
|
gem.executables = %w( zencoder_fetcher)
|
|
17
18
|
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
|
18
19
|
end
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.4
|
data/zencoder-fetcher.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{zencoder-fetcher}
|
|
8
|
-
s.version = "0.1.
|
|
8
|
+
s.version = "0.1.4"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["chriswarren"]
|
|
12
|
-
s.date = %q{2010-05-
|
|
12
|
+
s.date = %q{2010-05-13}
|
|
13
13
|
s.default_executable = %q{zencoder_fetcher}
|
|
14
14
|
s.description = %q{Fetches notifications from Zencoder for local development where Zencoder is unable to communicate to the server, usually because it's localhost.}
|
|
15
15
|
s.email = %q{chris@zencoder.com}
|
|
@@ -49,15 +49,18 @@ Gem::Specification.new do |s|
|
|
|
49
49
|
s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
|
50
50
|
s.add_runtime_dependency(%q<httparty>, [">= 0"])
|
|
51
51
|
s.add_runtime_dependency(%q<json>, [">= 0"])
|
|
52
|
+
s.add_runtime_dependency(%q<trollop>, [">= 0"])
|
|
52
53
|
else
|
|
53
54
|
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
|
54
55
|
s.add_dependency(%q<httparty>, [">= 0"])
|
|
55
56
|
s.add_dependency(%q<json>, [">= 0"])
|
|
57
|
+
s.add_dependency(%q<trollop>, [">= 0"])
|
|
56
58
|
end
|
|
57
59
|
else
|
|
58
60
|
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
|
59
61
|
s.add_dependency(%q<httparty>, [">= 0"])
|
|
60
62
|
s.add_dependency(%q<json>, [">= 0"])
|
|
63
|
+
s.add_dependency(%q<trollop>, [">= 0"])
|
|
61
64
|
end
|
|
62
65
|
end
|
|
63
66
|
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 1
|
|
8
|
-
-
|
|
9
|
-
version: 0.1.
|
|
8
|
+
- 4
|
|
9
|
+
version: 0.1.4
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- chriswarren
|
|
@@ -14,7 +14,7 @@ autorequire:
|
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
16
|
|
|
17
|
-
date: 2010-05-
|
|
17
|
+
date: 2010-05-13 00:00:00 -05:00
|
|
18
18
|
default_executable: zencoder_fetcher
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
@@ -53,6 +53,18 @@ dependencies:
|
|
|
53
53
|
version: "0"
|
|
54
54
|
type: :runtime
|
|
55
55
|
version_requirements: *id003
|
|
56
|
+
- !ruby/object:Gem::Dependency
|
|
57
|
+
name: trollop
|
|
58
|
+
prerelease: false
|
|
59
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
|
60
|
+
requirements:
|
|
61
|
+
- - ">="
|
|
62
|
+
- !ruby/object:Gem::Version
|
|
63
|
+
segments:
|
|
64
|
+
- 0
|
|
65
|
+
version: "0"
|
|
66
|
+
type: :runtime
|
|
67
|
+
version_requirements: *id004
|
|
56
68
|
description: Fetches notifications from Zencoder for local development where Zencoder is unable to communicate to the server, usually because it's localhost.
|
|
57
69
|
email: chris@zencoder.com
|
|
58
70
|
executables:
|