Merge remote branch 'upstream/master'
Conflicts: lib/paperclip/upfile.rb paperclip.gemspec
Showing
.travis.yml
0 → 100644
Appraisals
0 → 100644
CONTRIBUTING.md
0 → 100644
Gemfile
0 → 100644
source "http://rubygems.org" | ||
gem "activerecord", :require => "active_record" | ||
gem "appraisal" | ||
gem "aws-s3", :require => "aws/s3" | ||
gem "bundler" | ||
gem "cocaine", "~>0.2" | ||
gem "fog" | ||
gem "jruby-openssl", :platform => :jruby | ||
gem "mime-types" | ||
gem "mocha" | ||
gem "rake" | ||
gem "rdoc", :require => false | ||
gem "shoulda" | ||
gem "sqlite3", "~>1.3.4" | ||
# This is for Rails 3.1 | ||
gem "sprockets", "~> 2.0.0.beta.13", :require => false | ||
# gem "ruby-debug", :platform => :ruby_18 | ||
# gem "ruby-debug19", :platform => :ruby_19 |
Gemfile.lock
0 → 100644
This diff is collapsed.
Click to expand it.
features/basic.feature
0 → 100644
features/s3.feature
0 → 100644
features/step_definitions/html_steps.rb
0 → 100644
features/step_definitions/rails_steps.rb
0 → 100644
features/step_definitions/s3_steps.rb
0 → 100644
features/step_definitions/web_steps.rb
0 → 100644
features/support/env.rb
0 → 100644
features/support/paths.rb
0 → 100644
features/support/rails.rb
0 → 100644
features/support/s3.rb
0 → 100644
gemfiles/rails2.gemfile
0 → 100644
gemfiles/rails2.gemfile.lock
0 → 100644
gemfiles/rails3.gemfile
0 → 100644
gemfiles/rails3.gemfile.lock
0 → 100644
gemfiles/rails3_1.gemfile
0 → 100644
gemfiles/rails3_1.gemfile.lock
0 → 100644
lib/generators/paperclip/USAGE
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
lib/paperclip/callback_compatibility.rb
0 → 100644
lib/paperclip/railtie.rb
0 → 100644
This diff is collapsed.
Click to expand it.
lib/paperclip/storage/filesystem.rb
0 → 100644
lib/paperclip/storage/fog.rb
0 → 100644
lib/paperclip/storage/s3.rb
0 → 100644
This diff is collapsed.
Click to expand it.
lib/paperclip/version.rb
0 → 100644
# -*- encoding: utf-8 -*- | ||
$LOAD_PATH << File.join(File.dirname(__FILE__), 'lib') | ||
require 'paperclip/version' | ||
Gem::Specification.new do |s| | ||
s.name = %q{monde-paperclip} | ||
s.version = "2.3.1.1" | ||
include_files = ["README*", "LICENSE", "Rakefile", "init.rb", "{lib,tasks,test,rails,generators,shoulda_macros}/**/*"].map do |glob| | ||
Dir[glob] | ||
end.flatten | ||
exclude_files = ["**/*.rbc", "test/s3.yml", "test/debug.log", "test/paperclip.db", "test/doc", "test/doc/*", "test/pkg", "test/pkg/*", "test/tmp", "test/tmp/*"].map do |glob| | ||
Dir[glob] | ||
end.flatten | ||
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= | ||
s.authors = ["Jon Yurek"] | ||
s.date = %q{2009-10-09} | ||
s.email = %q{jyurek@thoughtbot.com} | ||
s.extra_rdoc_files = ["README.rdoc"] | ||
s.files = ["README.rdoc", "LICENSE", "Rakefile", "init.rb", "generators/paperclip", "generators/paperclip/paperclip_generator.rb", "generators/paperclip/templates", "generators/paperclip/templates/paperclip_migration.rb.erb", "generators/paperclip/USAGE", "lib/paperclip", "lib/paperclip/attachment.rb", "lib/paperclip/callback_compatability.rb", "lib/paperclip/geometry.rb", "lib/paperclip/interpolations.rb", "lib/paperclip/iostream.rb", "lib/paperclip/matchers", "lib/paperclip/matchers/have_attached_file_matcher.rb", "lib/paperclip/matchers/validate_attachment_content_type_matcher.rb", "lib/paperclip/matchers/validate_attachment_presence_matcher.rb", "lib/paperclip/matchers/validate_attachment_size_matcher.rb", "lib/paperclip/matchers.rb", "lib/paperclip/processor.rb", "lib/paperclip/storage.rb", "lib/paperclip/thumbnail.rb", "lib/paperclip/upfile.rb", "lib/paperclip.rb", "tasks/paperclip_tasks.rake", "test/attachment_test.rb", "test/database.yml", "test/fixtures", "test/fixtures/12k.png", "test/fixtures/50x50.png", "test/fixtures/5k.png", "test/fixtures/bad.png", "test/fixtures/s3.yml", "test/fixtures/text.txt", "test/fixtures/twopage.pdf", "test/geometry_test.rb", "test/helper.rb", "test/integration_test.rb", "test/interpolations_test.rb", "test/iostream_test.rb", "test/matchers", "test/matchers/have_attached_file_matcher_test.rb", "test/matchers/validate_attachment_content_type_matcher_test.rb", "test/matchers/validate_attachment_presence_matcher_test.rb", "test/matchers/validate_attachment_size_matcher_test.rb", "test/paperclip_test.rb", "test/processor_test.rb", "test/storage_test.rb", "test/thumbnail_test.rb", "test/upfile_test.rb", "shoulda_macros/paperclip.rb"] | ||
s.homepage = %q{http://www.thoughtbot.com/projects/paperclip} | ||
s.rdoc_options = ["--line-numbers", "--inline-source"] | ||
s.require_paths = ["lib"] | ||
s.requirements = ["ImageMagick"] | ||
s.rubyforge_project = %q{paperclip} | ||
s.rubygems_version = %q{1.3.5} | ||
s.summary = %q{File attachments as attributes for ActiveRecord} | ||
if s.respond_to? :specification_version then | ||
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION | ||
s.specification_version = 3 | ||
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then | ||
s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"]) | ||
s.add_development_dependency(%q<jferris-mocha>, ["= 0.9.5.0.1241126838"]) | ||
s.add_development_dependency(%q<aws-s3>, [">= 0"]) | ||
s.add_development_dependency(%q<sqlite3-ruby>, [">= 0"]) | ||
s.add_development_dependency(%q<activerecord>, [">= 0"]) | ||
s.add_development_dependency(%q<activesupport>, [">= 0"]) | ||
else | ||
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"]) | ||
s.add_dependency(%q<jferris-mocha>, ["= 0.9.5.0.1241126838"]) | ||
s.add_dependency(%q<aws-s3>, [">= 0"]) | ||
s.add_dependency(%q<sqlite3-ruby>, [">= 0"]) | ||
s.add_dependency(%q<activerecord>, [">= 0"]) | ||
s.add_dependency(%q<activesupport>, [">= 0"]) | ||
end | ||
else | ||
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"]) | ||
s.add_dependency(%q<jferris-mocha>, ["= 0.9.5.0.1241126838"]) | ||
s.add_dependency(%q<aws-s3>, [">= 0"]) | ||
s.add_dependency(%q<sqlite3-ruby>, [">= 0"]) | ||
s.add_dependency(%q<activerecord>, [">= 0"]) | ||
s.add_dependency(%q<activesupport>, [">= 0"]) | ||
end | ||
spec = Gem::Specification.new do |s| | ||
s.name = "paperclip" | ||
s.version = Paperclip::VERSION | ||
s.author = "Jon Yurek" | ||
s.email = "jyurek@thoughtbot.com" | ||
s.homepage = "https://github.com/thoughtbot/paperclip" | ||
s.description = "Easy upload management for ActiveRecord" | ||
s.platform = Gem::Platform::RUBY | ||
s.summary = "File attachments as attributes for ActiveRecord" | ||
s.files = include_files - exclude_files | ||
s.require_path = "lib" | ||
s.test_files = Dir["test/**/test_*.rb"] | ||
s.rubyforge_project = "paperclip" | ||
s.extra_rdoc_files = Dir["README*"] | ||
s.rdoc_options << '--line-numbers' << '--inline-source' | ||
s.requirements << "ImageMagick" | ||
s.add_dependency 'activerecord', '>=2.3.0' | ||
s.add_dependency 'activesupport', '>=2.3.2' | ||
s.add_dependency 'cocaine', '>=0.0.2' | ||
s.add_dependency 'mime-types' | ||
s.add_development_dependency 'shoulda' | ||
s.add_development_dependency 'appraisal' | ||
s.add_development_dependency 'mocha' | ||
s.add_development_dependency 'aws-s3' | ||
s.add_development_dependency 'sqlite3' | ||
end |
rails/init.rb
0 → 100644
This diff is collapsed.
Click to expand it.
test/fixtures/animated.gif
0 → 100644
8.04 KB
test/fixtures/uppercase.PNG
0 → 100644
4.35 KB
test/fog_test.rb
0 → 100644
This diff is collapsed.
Click to expand it.
Please
register
or
sign in
to comment