anaconda 1.0.7 → 1.0.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.markdown +7 -1
- data/lib/anaconda/anaconda_for.rb +2 -2
- data/lib/anaconda/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: fcdfc41731cca82960efe0729eb959f68fa68382
|
4
|
+
data.tar.gz: a5bc6f137eaa79f7461e963b932d938afab6fd3d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 30fd7ba00bb6f9cb8abc0efdae7032442b7e2cb5612701ff247206623b20d3b3cc541d8fb057938a3021342b32d4416aef60301316358f69f81c1c0b0e20a2fc
|
7
|
+
data.tar.gz: 618e1686f763a220d1a35382f4aacc64a62b644ef617aee61656102d51fd8682c3d614627e62d1ddb3f26e7876c938da4bf3cb7b223cdb2e8e8ada0159665959
|
data/README.markdown
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Dead simple direct-to-s3 file uploading for your rails app.
|
4
4
|
|
5
|
-
Current Version: 1.0.
|
5
|
+
Current Version: 1.0.9
|
6
6
|
|
7
7
|
## Installation
|
8
8
|
|
@@ -219,6 +219,12 @@ If you return false to the following events it will prevent the default behavior
|
|
219
219
|
From version 1.0.0 on we have used [Semantic Versioning](http://semver.org/).
|
220
220
|
|
221
221
|
## Changelog
|
222
|
+
* 1.0.9
|
223
|
+
* Fix _another_ bug breaking the `asset_download_url` method.
|
224
|
+
|
225
|
+
* 1.0.8 (yanked)
|
226
|
+
* Fix bug breaking the `asset_download_url` method.
|
227
|
+
|
222
228
|
* 1.0.7
|
223
229
|
* Add support for `expires` option in signed AWS URLs.
|
224
230
|
* Add option for setting default `expiry_length` for signed AWS URLs.
|
@@ -78,7 +78,7 @@ module Anaconda
|
|
78
78
|
when :url
|
79
79
|
anaconda_url(checking_column, *args)
|
80
80
|
when :download_url
|
81
|
-
anaconda_download_url(checking_column)
|
81
|
+
anaconda_download_url(checking_column, *args)
|
82
82
|
when :anaconda_default_base_key
|
83
83
|
anaconda_default_base_key_for(checking_column)
|
84
84
|
else
|
@@ -129,7 +129,7 @@ module Anaconda
|
|
129
129
|
end
|
130
130
|
end
|
131
131
|
|
132
|
-
def anaconda_download_url(column_name)
|
132
|
+
def anaconda_download_url(column_name, *args)
|
133
133
|
return nil unless send("#{column_name}_file_path").present?
|
134
134
|
options = args.extract_options!
|
135
135
|
logger.debug "Extracted Options:"
|
data/lib/anaconda/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: anaconda
|
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
|
- Ben McFadden
|
@@ -121,7 +121,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
121
121
|
version: '0'
|
122
122
|
requirements: []
|
123
123
|
rubyforge_project:
|
124
|
-
rubygems_version: 2.
|
124
|
+
rubygems_version: 2.4.5
|
125
125
|
signing_key:
|
126
126
|
specification_version: 4
|
127
127
|
summary: Dead simple file uploading to S3
|