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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 911805ae124cc803fe5b8b0bb0a83d33f57bffe8
4
- data.tar.gz: 9d0dab201af413c396fd6dd8f2a2bb53e4f67d12
3
+ metadata.gz: fcdfc41731cca82960efe0729eb959f68fa68382
4
+ data.tar.gz: a5bc6f137eaa79f7461e963b932d938afab6fd3d
5
5
  SHA512:
6
- metadata.gz: c419a1acb382d201e2e92094cbfc06a075ca96bd7297dcf1e82c96e5b167dbf5c501874ffb4343aa7a3161b556a6074f71721bd9de6e122b777a63dc4679ab7d
7
- data.tar.gz: 8638e2cc7119df3e65e3b1a8daff553d2e1862e2bf2d43333e158c962e1dc272182c014db1a19ef872f77ae6152c3c9b584b0d3412bd9c5b6fd2f8a281073285
6
+ metadata.gz: 30fd7ba00bb6f9cb8abc0efdae7032442b7e2cb5612701ff247206623b20d3b3cc541d8fb057938a3021342b32d4416aef60301316358f69f81c1c0b0e20a2fc
7
+ data.tar.gz: 618e1686f763a220d1a35382f4aacc64a62b644ef617aee61656102d51fd8682c3d614627e62d1ddb3f26e7876c938da4bf3cb7b223cdb2e8e8ada0159665959
@@ -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.4
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:"
@@ -1,5 +1,5 @@
1
1
  module Anaconda
2
2
  module Rails
3
- VERSION = "1.0.7"
3
+ VERSION = "1.0.9"
4
4
  end
5
5
  end
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.7
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.2.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