- 16 Jun, 2016 1 commit
-
-
* Add `read_timeout` option to `UriAdapter#download_content` method * Default `read_timeout` is `nil` * Update NEWS
Sergey Novikov committed
-
- 14 Jun, 2016 3 commits
-
-
Victor Ng KP committed
-
Victor Ng KP committed
-
* replaced if-not-blank with if-present an instance of code was testing presence via `!a.blank?`. this is now replaced with a more readable version: `a.present?` * replaced 2 if-not-blank checks with if-present checks * temporarily restrict travis * reverted travis changes * readded whitespace
S. Humza Shah committed
-
- 10 Jun, 2016 1 commit
-
-
Add test to prevent regression regarding excessive logging
Tute Costa committed
-
- 24 May, 2016 4 commits
-
-
Fix a nil error in failure_message of content type validation matcher
Tute Costa committed -
[ci skip]
Emil Sågfors committed -
When a matcher uses both `allowing` and `rejecting`, and validation fails, `@missing_rejected_types` might still be `nil`. When a matcher only uses either of the two, a part of the message is `nil`.
Emil Sågfors committed -
Note: this is most likely not the way we want to test our matchers, but it demonstrates the current issue.
Emil Sågfors committed
-
- 18 May, 2016 1 commit
-
-
Excessive logging can fill up disk space and become a denial of service attack, see https://cwe.mitre.org/data/definitions/779.html
Bart de Water committed
-
- 10 May, 2016 6 commits
-
-
[fixes #2016]
Tute Costa committed -
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 attachment processing spec was failing since the setup required done in a before block, namely a call to `rebuild_class`, was running restricted to one of two contexts in the test file. This was leaving the `Dummy` class in a bad state and affected other tests. This PR moves the `before` block to run for the both of the contexts.
Pedro Moreira committed -
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 2 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
-