transloadit 1.1.4 → 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/.gitignore +2 -0
- data/.travis.yml +2 -0
- data/CHANGELOG.md +4 -0
- data/LICENSE +9 -0
- data/README.md +1 -1
- data/lib/transloadit/assembly.rb +1 -1
- data/lib/transloadit/version.rb +1 -1
- data/test/unit/transloadit/test_assembly.rb +1 -1
- data/transloadit.gemspec +1 -1
- metadata +6 -5
- data/LICENSE.txt +0 -22
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ZTY2M2FlNjUwMWY0M2Q4MDFkNzZiYzdmZWExOTFhZDZlM2U3ODE5OQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
ZGYzNGU5ODZhNWE4N2ZkZGU4YWJjYWViMTE0MmE3MTdlMmNhMTljNA==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ZTc3OWI0ZTM5NzRkNTQzOTExODZlOTFiMzExMTM3NjAwYWRhMDllZjI5ODYx
|
10
|
+
NjU0OWUxOWMzYzJhZGRmYzM0MzNlMTIxZTZiNDgzNmQ5ZjE2NDFhYzM4NDNh
|
11
|
+
NDFmODExYmIxZTMyNDc3NmRjNmExOTAwZDJjMmY1ZjI0OWM1ZDA=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MTEwNWJjNjEyNGFhYWI4M2IxMWEyYzgwNzBiMzE1YWZiZjk5ZjQyNmViMmY2
|
14
|
+
NGM0ZDg0OTVjOTE5YzE0NDNjOTgxODk0NGUyZDU0MmVhNzk0NjE2M2I0Nzlh
|
15
|
+
Yjg4ZGFjNWFiMDMzNDgxMDQ5YjE3OGQ1ZmE4M2E5Yjk3YTEwYmQ=
|
data/.gitignore
CHANGED
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
data/LICENSE
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
The MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2015 Transloadit Ltd.
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
6
|
+
|
7
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
8
|
+
|
9
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
CHANGED
@@ -214,7 +214,7 @@ for the latest [git master](http://rubydoc.info/github/transloadit/ruby-sdk/mast
|
|
214
214
|
|
215
215
|
## Compatibility
|
216
216
|
|
217
|
-
At a minimum, this gem should work on MRI 2.2.0, 2.1.0, 2.0.0, 1.9.3, 1.9.2, Rubinius,
|
217
|
+
At a minimum, this gem should work on MRI 2.3.0, 2.2.0, 2.1.0, 2.0.0, 1.9.3, 1.9.2, Rubinius,
|
218
218
|
and JRuby in 1.9 mode. It may also work on older ruby versions, but support for those
|
219
219
|
Rubies is not guaranteed. If it doesn't work on one of the officially supported Rubies, please file a
|
220
220
|
[bug report](https://github.com/transloadit/ruby-sdk/issues). Compatibility patches for other Rubies
|
data/lib/transloadit/assembly.rb
CHANGED
data/lib/transloadit/version.rb
CHANGED
@@ -104,7 +104,7 @@ describe Transloadit::Assembly do
|
|
104
104
|
assert_requested(:post, 'jane.transloadit.com/assemblies') do |req|
|
105
105
|
values = values_from_post_body(req.body)
|
106
106
|
values['tag'].must_equal 'ninja-cat'
|
107
|
-
MultiJson.load(values['params'])['fields'].
|
107
|
+
MultiJson.load(values['params'])['fields']['tag'].must_equal 'ninja-cat'
|
108
108
|
end
|
109
109
|
end
|
110
110
|
end
|
data/transloadit.gemspec
CHANGED
@@ -10,13 +10,13 @@ Gem::Specification.new do |gem|
|
|
10
10
|
gem.authors = [ "Stephen Touset", "Robin Mehner" ]
|
11
11
|
gem.email = %w{ stephen@touset.org robin@coding-robin.de }
|
12
12
|
gem.homepage = 'http://github.com/transloadit/ruby-sdk/'
|
13
|
+
gem.license = 'MIT'
|
13
14
|
|
14
15
|
gem.summary = 'Official Ruby gem for Transloadit'
|
15
16
|
gem.description = 'The transloadit gem allows you to automate uploading files through the Transloadit REST API'
|
16
17
|
|
17
18
|
gem.required_rubygems_version = '>= 1.3.6'
|
18
19
|
gem.required_ruby_version = '>= 1.9.2'
|
19
|
-
gem.rubyforge_project = 'transloadit'
|
20
20
|
|
21
21
|
gem.files = `git ls-files`.split("\n")
|
22
22
|
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: transloadit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stephen Touset
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2015-12-
|
12
|
+
date: 2015-12-28 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rest-client
|
@@ -164,7 +164,7 @@ files:
|
|
164
164
|
- .travis.yml
|
165
165
|
- CHANGELOG.md
|
166
166
|
- Gemfile
|
167
|
-
- LICENSE
|
167
|
+
- LICENSE
|
168
168
|
- README.md
|
169
169
|
- Rakefile
|
170
170
|
- lib/transloadit.rb
|
@@ -191,7 +191,8 @@ files:
|
|
191
191
|
- test/unit/transloadit/test_step.rb
|
192
192
|
- transloadit.gemspec
|
193
193
|
homepage: http://github.com/transloadit/ruby-sdk/
|
194
|
-
licenses:
|
194
|
+
licenses:
|
195
|
+
- MIT
|
195
196
|
metadata: {}
|
196
197
|
post_install_message:
|
197
198
|
rdoc_options: []
|
@@ -208,7 +209,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
208
209
|
- !ruby/object:Gem::Version
|
209
210
|
version: 1.3.6
|
210
211
|
requirements: []
|
211
|
-
rubyforge_project:
|
212
|
+
rubyforge_project:
|
212
213
|
rubygems_version: 2.5.1
|
213
214
|
signing_key:
|
214
215
|
specification_version: 4
|
data/LICENSE.txt
DELETED
@@ -1,22 +0,0 @@
|
|
1
|
-
Copyright (c) 2013 Debuggable, Inc.
|
2
|
-
|
3
|
-
MIT License
|
4
|
-
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
-
a copy of this software and associated documentation files (the
|
7
|
-
"Software"), to deal in the Software without restriction, including
|
8
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
-
permit persons to whom the Software is furnished to do so, subject to
|
11
|
-
the following conditions:
|
12
|
-
|
13
|
-
The above copyright notice and this permission notice shall be
|
14
|
-
included in all copies or substantial portions of the Software.
|
15
|
-
|
16
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|