diff options
| author | erdgeist <erdgeist@erdgeist.org> | 2026-06-24 04:13:16 +0200 |
|---|---|---|
| committer | erdgeist <erdgeist@erdgeist.org> | 2026-06-24 04:13:16 +0200 |
| commit | e0a7e0fec760ba12c8067a37e10c96f1f05876e2 (patch) | |
| tree | d0cf745592a46aee4d4913911fd34c7c24515220 /vendor/plugins/paperclip/paperclip.gemspec | |
| parent | 6424e10be5a89f175a74c71c55660412a169b8b8 (diff) | |
Stage 1 complete: Rails 2.3.5 to Rails 3.2.22.5 upgrade
- Converted plugins to gems (Gemfile)
- Updated config structure (application.rb, boot.rb, environment.rb)
- Converted routes to Rails 3 DSL
- Converted named_scope to scope throughout models
- Converted find(:all, :conditions) to where() chains
- Fixed has_many :order to use ordering scope
- Updated session store and secret token configuration
- Fixed exception_notification middleware configuration
- Patched Ruby 2.4 / Rails 3.2 incompatibilities:
- Integer/Float duration arithmetic (ActiveSupport)
- Arel visit_Integer for PostgreSQL adapter
- create_database String/Integer coercion
- ActionController consider_all_requests_local
- Migrated taggings schema for acts-as-taggable-on
- Replaced dynamic_form gem with custom form_error_messages helper
- Fixed Rails 3 block helper syntax (form_for, form_tag, fields_for)
- Fixed admin layout yield
- Updated test suite for Rails 3 APIs
Diffstat (limited to 'vendor/plugins/paperclip/paperclip.gemspec')
| -rw-r--r-- | vendor/plugins/paperclip/paperclip.gemspec | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/vendor/plugins/paperclip/paperclip.gemspec b/vendor/plugins/paperclip/paperclip.gemspec deleted file mode 100644 index 12ce4c2b..00000000 --- a/vendor/plugins/paperclip/paperclip.gemspec +++ /dev/null | |||
| @@ -1,40 +0,0 @@ | |||
| 1 | # -*- encoding: utf-8 -*- | ||
| 2 | |||
| 3 | Gem::Specification.new do |s| | ||
| 4 | s.name = %q{paperclip} | ||
| 5 | s.version = "2.2.8" | ||
| 6 | |||
| 7 | s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= | ||
| 8 | s.authors = ["Jon Yurek"] | ||
| 9 | s.date = %q{2009-04-02} | ||
| 10 | s.email = %q{jyurek@thoughtbot.com} | ||
| 11 | s.extra_rdoc_files = ["README.rdoc"] | ||
| 12 | 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/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/debug.log", "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/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/s3.yml", "test/storage_test.rb", "test/thumbnail_test.rb", "test/tmp", "test/tmp/storage.txt", "shoulda_macros/paperclip.rb"] | ||
| 13 | s.has_rdoc = true | ||
| 14 | s.homepage = %q{http://www.thoughtbot.com/projects/paperclip} | ||
| 15 | s.rdoc_options = ["--line-numbers", "--inline-source"] | ||
| 16 | s.require_paths = ["lib"] | ||
| 17 | s.requirements = ["ImageMagick"] | ||
| 18 | s.rubyforge_project = %q{paperclip} | ||
| 19 | s.rubygems_version = %q{1.3.1} | ||
| 20 | s.summary = %q{File attachments as attributes for ActiveRecord} | ||
| 21 | |||
| 22 | if s.respond_to? :specification_version then | ||
| 23 | current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION | ||
| 24 | s.specification_version = 2 | ||
| 25 | |||
| 26 | if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then | ||
| 27 | s.add_runtime_dependency(%q<right_aws>, [">= 0"]) | ||
| 28 | s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"]) | ||
| 29 | s.add_development_dependency(%q<mocha>, [">= 0"]) | ||
| 30 | else | ||
| 31 | s.add_dependency(%q<right_aws>, [">= 0"]) | ||
| 32 | s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"]) | ||
| 33 | s.add_dependency(%q<mocha>, [">= 0"]) | ||
| 34 | end | ||
| 35 | else | ||
| 36 | s.add_dependency(%q<right_aws>, [">= 0"]) | ||
| 37 | s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"]) | ||
| 38 | s.add_dependency(%q<mocha>, [">= 0"]) | ||
| 39 | end | ||
| 40 | end | ||
