zencoder 2.3.2 → 2.3.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/README.markdown +1 -1
- data/Rakefile +1 -1
- data/lib/zencoder/extensions.rb +0 -8
- data/lib/zencoder/http/net_http.rb +2 -2
- data/lib/zencoder/version.rb +1 -1
- metadata +4 -4
data/README.markdown
CHANGED
|
@@ -51,7 +51,7 @@ Or you can specify them as a string, which we'll just pass along as the request
|
|
|
51
51
|
|
|
52
52
|
## Jobs
|
|
53
53
|
|
|
54
|
-
There's more you can do on jobs than anything else in the API. The following methods are available: `list`, `create`, `details`, `
|
|
54
|
+
There's more you can do on jobs than anything else in the API. The following methods are available: `list`, `create`, `details`, `resubmit`, `cancel`, `delete`.
|
|
55
55
|
|
|
56
56
|
### create
|
|
57
57
|
|
data/Rakefile
CHANGED
data/lib/zencoder/extensions.rb
CHANGED
|
@@ -29,11 +29,3 @@ unless Array.method_defined?(:recursive_with_indifferent_access)
|
|
|
29
29
|
end
|
|
30
30
|
end
|
|
31
31
|
end
|
|
32
|
-
|
|
33
|
-
unless String.method_defined?(:shell_escape)
|
|
34
|
-
class String
|
|
35
|
-
def shell_escape
|
|
36
|
-
empty? ? "''" : gsub(/([^A-Za-z0-9_\-.,:\/@\n])/n, '\\\\\\1').gsub(/\n/, "'\n'")
|
|
37
|
-
end
|
|
38
|
-
end
|
|
39
|
-
end
|
|
@@ -7,8 +7,8 @@ module Zencoder
|
|
|
7
7
|
|
|
8
8
|
attr_accessor :method, :url, :uri, :body, :params, :headers, :timeout, :skip_ssl_verify, :options
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
cattr_accessor :root_cert_paths
|
|
11
|
+
cattr_accessor :skip_setting_root_cert_path
|
|
12
12
|
|
|
13
13
|
self.root_cert_paths = ['/etc/ssl/certs',
|
|
14
14
|
'/var/ssl',
|
data/lib/zencoder/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: zencoder
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 5
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 2
|
|
8
8
|
- 3
|
|
9
|
-
-
|
|
10
|
-
version: 2.3.
|
|
9
|
+
- 3
|
|
10
|
+
version: 2.3.3
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Nathan Sutton
|
|
@@ -16,7 +16,7 @@ autorequire:
|
|
|
16
16
|
bindir: bin
|
|
17
17
|
cert_chain: []
|
|
18
18
|
|
|
19
|
-
date: 2011-11
|
|
19
|
+
date: 2011-12-11 00:00:00 Z
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|
|
22
22
|
name: activesupport
|