- 10 May, 2016 3 commits
 - 
- 
Correct validators spec
Tute Costa committed - 
This is part of the effort started at https://github.com/thoughtbot/paperclip/issues/2199 to ensure the test suite is green locally. The validators spec was failing since the setup required was missing a call to 'rebuild_class' and leaving the Dummy class in a bad state. This PR adds the call to the before block setup.
Pedro Moreira committed - 
This is part of the effort started at https://github.com/thoughtbot/paperclip/issues/2199) to ensure the test suite is green locally. This spec was failing on obtaining a S3 instance with an `nil` region key. Since `Aws::Resource` does a regex match against the region key passed in, we would fail on `NoMethodError`. This corrects the issue by setting a region key to an empty string in the test setup.
Pedro Moreira committed 
 - 
 - 09 May, 2016 2 commits
 - 
- 
[fixes #1932]
Piotr Szal committed - 
Capistrano won't symlink the `public/system` folder by default anymore. Capistrano needs to be configured accordingly. See related issues: * https://github.com/capistrano/capistrano/commit/033bf8ee492936787cd0744e69b3df8a5ad5b6e6#diff-348edd3e734eaeed0fe97af037f3c647 * https://github.com/capistrano/rails/issues/104 * https://github.com/capistrano/rails#symlinks [fixes #2141] [fixes #2166]
wynksaiddestroy committed 
 - 
 - 06 May, 2016 1 commit
 - 
- 
Clarify semantics of the only_process option (documentation-only)
Tute Costa committed 
 - 
 - 05 May, 2016 1 commit
 - 
- 
This was really confusing to me, and I think this small change would help to clarify what's going on without having to trace through the code.
Cameron Finucane committed 
 - 
 - 30 Apr, 2016 11 commits
 - 
- 
Tute Costa committed
 - 
README elucidation for Ruby beginners
Tute Costa committed - 
change 'show view' to 'view helpers'
jmsoper committed - 
Clarifying contributions.
Tute Costa committed - 
Update README.md
Tute Costa committed - 
Dan Phillips committed
 - 
Fixes #2130.
Ralin Chimev committed - 
Added FactoryGirl configuration details
Andrew Saganda committed - 
Fix outdated method description in helper module
Tute Costa committed - 
Fixes #2130.
Ralin Chimev committed 
 - 
 - 29 Apr, 2016 2 commits
 - 
- 
link in Readme to source code of Paperclip::Processor
Tute Costa committed - 
for better visibility and better User experience of documentation
Tomas Valent committed 
 - 
 - 28 Apr, 2016 2 commits
 - 
- 
Most contributors don't know to update the NEWS file when submitting code.
Tute Costa committed - 
Currently paperclip fails with `NoMethodError` on `nil` when file is not present. Since `nil` is proper response from fog on missing files, and this method already returns `false` if any error happen (see line 178), returning `false` here would be properly handled on client code. [closes #2173]
Mark Guk committed 
 - 
 - 12 Apr, 2016 2 commits
 - 
- 
Update NEWS. [ci skip]
Tute Costa committed - 
Adds failing spec to command line dup check [fixes #1670] [fixes #2169]
Christophe Chong committed 
 - 
 - 04 Apr, 2016 1 commit
 - 
- 
[fixes #2164]
Melissa Wahnish committed 
 - 
 - 30 Mar, 2016 3 commits
 - 
- 
Bugfix: Dynamic fog directory
Tute Costa committed - 
`Paperclip::Storage::Fog#host_name_for_directory` assumes a String-like object is set and doesn't check if `@options[:fog_directory]` is callable, while `Paperclip::Storage::Fog#directory` does. This extracts a new method with the condition and refactors the other two methods to call it. Fixes #2018, #2093.
Thomas Ingram committed - 
@melissawahnish noticed that while we are on beta v5 will not be found. [ci skip]
Tute Costa committed 
 - 
 - 24 Mar, 2016 5 commits
 - 
- 
This configuration constant was useful for supporting different versions of AWS SDK. We don't any longer, and we can set the value directly. [fixes #2148]
Tute Costa committed - 
* `AWS::Core` is an AWS SDK v1 API, we can drop it * We don't use the "I attach a" cucumber step
Tute Costa committed - 
Brings back warning on not supported SDK versions. Related: https://github.com/thoughtbot/paperclip/commit/25be0b25d67923e28419c6146e8f8307741a974b#commitcomment-16831800
Tute Costa committed - 
We don't support AWS SDK v1 any longer.
Tute Costa committed - 
Drops Rails 3 branches. [fixes #2101]
Lucas Caton committed 
 - 
 - 23 Mar, 2016 7 commits
 - 
- 
Update example to add mime-types to file extensions
Tute Costa committed - 
Remove Rails 3 snippets
Tute Costa committed - 
Rails 3 is not supported anymore. We can safely remove mentions and snippets for it. Drop unused variable definition (`options`).
Tute Costa committed - 
The old example gives deprecation warnings from recent 2.x versions of mime-types. As of f0bd25ad the Gemfile also allows version 3.0 or newer. The new example should work regardless of the version of the mime-types gem. [skip ci]
Bart de Water committed - 
`>= 2.0.34` is the proper restriction. We weren't allowing `2.0.33` before.
Esteban Pastorino committed - 
Paperclip 5 no longer supports aws-sdk v1. Having a lot of constraints in one gem dependency caused issues when pushing the gem (ref: https://github.com/rubygems/rubygems/issues/1564). This commit simplifies the dependency restriction to `>= 2.0.33`.
Esteban Pastorino committed - 
Pairing with @kitop
Tute Costa committed 
 -