dragonfly 1.0.8 → 1.0.9
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.
- checksums.yaml +4 -4
- data/.travis.yml +2 -0
- data/History.md +6 -0
- data/README.md +2 -2
- data/lib/dragonfly/server.rb +1 -1
- data/lib/dragonfly/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 02f20eccc1d86bf996f08161608ad73638233923
|
|
4
|
+
data.tar.gz: 6e7a890b717ae596ebe78563b7f560c40fcd61a0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a0ac983a943033572f7bdcf6d4e00676d1af95c77202ca433e4cccb7d912ba97b751ec608ea624f088150a5d6ba9ea7de2dcedaa63c6f4ba6bf6170fe886b0dc
|
|
7
|
+
data.tar.gz: 7ad341424eaf01b4656694dbad4313b2f245e93b328462b703668d7a56987b235c8e02ad4718ab28afb7bc7e4acda1c37ca284a99897862d70d81abadea30bf7
|
data/.travis.yml
CHANGED
data/History.md
CHANGED
data/README.md
CHANGED
|
@@ -44,7 +44,7 @@ Installation
|
|
|
44
44
|
|
|
45
45
|
or in your Gemfile
|
|
46
46
|
```ruby
|
|
47
|
-
gem 'dragonfly', '~> 1.0.
|
|
47
|
+
gem 'dragonfly', '~> 1.0.9'
|
|
48
48
|
```
|
|
49
49
|
|
|
50
50
|
Require with
|
|
@@ -73,7 +73,7 @@ Suggestions/Questions
|
|
|
73
73
|
|
|
74
74
|
Ruby Versions
|
|
75
75
|
=============
|
|
76
|
-
Dragonfly has been tested with ruby versions 1.8.7, 1.9.2, 1.9.3, 2.0.0, jruby 1.7.8 and rubinius 2.2.
|
|
76
|
+
Dragonfly has been tested with ruby versions 1.8.7, 1.9.2, 1.9.3, 2.0.0, 2.1.x, 2.2.x, jruby 1.7.8 and rubinius 2.2.
|
|
77
77
|
|
|
78
78
|
Upgrading from v0.9 to v1.0
|
|
79
79
|
===========================
|
data/lib/dragonfly/server.rb
CHANGED
|
@@ -68,7 +68,7 @@ module Dragonfly
|
|
|
68
68
|
rescue Job::NoSHAGiven => e
|
|
69
69
|
[400, {"Content-Type" => 'text/plain'}, ["You need to give a SHA parameter"]]
|
|
70
70
|
rescue Job::IncorrectSHA => e
|
|
71
|
-
[400, {"Content-Type" => 'text/plain'}, ["The SHA parameter you gave
|
|
71
|
+
[400, {"Content-Type" => 'text/plain'}, ["The SHA parameter you gave is incorrect"]]
|
|
72
72
|
rescue JobNotAllowed => e
|
|
73
73
|
Dragonfly.warn(e.message)
|
|
74
74
|
[403, {"Content-Type" => 'text/plain'}, ["Forbidden"]]
|
data/lib/dragonfly/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dragonfly
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mark Evans
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-04-
|
|
11
|
+
date: 2015-04-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rack
|