Skip to content

Commit

Permalink
Regenerated gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
solnic committed Sep 20, 2010
1 parent 01f70f0 commit 2b32b3c
Showing 1 changed file with 6 additions and 24 deletions.
30 changes: 6 additions & 24 deletions dm-paperclip.gemspec
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -6,43 +6,25 @@ Gem::Specification.new do |s|


s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Ken Robertson"] s.authors = ["Ken Robertson"]
s.date = %q{2010-04-21} s.date = %q{2010-09-20}
s.email = %q{ken@invalidlogic.com} s.email = %q{ken@invalidlogic.com}
s.extra_rdoc_files = ["README.rdoc"] s.extra_rdoc_files = ["README.rdoc"]
s.files = ["README.rdoc", "LICENSE", "Rakefile", "init.rb", "lib/dm-paperclip", "lib/dm-paperclip/attachment.rb", "lib/dm-paperclip/callback_compatability.rb", "lib/dm-paperclip/geometry.rb", "lib/dm-paperclip/interpolations.rb", "lib/dm-paperclip/iostream.rb", "lib/dm-paperclip/processor.rb", "lib/dm-paperclip/storage.rb", "lib/dm-paperclip/thumbnail.rb", "lib/dm-paperclip/upfile.rb", "lib/dm-paperclip/validations.rb", "lib/dm-paperclip.rb", "tasks/paperclip_tasks.rake", "test/attachment_test.rb", "test/fixtures", "test/fixtures/12k.png", "test/fixtures/50x50.png", "test/fixtures/5k.png", "test/fixtures/bad.png", "test/fixtures/text.txt", "test/geometry_test.rb", "test/helper.rb", "test/integration_test.rb", "test/iostream_test.rb", "test/paperclip_test.rb", "test/storage_test.rb", "test/thumbnail_test.rb"] s.files = ["README.rdoc", "LICENSE", "Rakefile", "init.rb", "lib/dm-paperclip.rb", "lib/dm-paperclip", "lib/dm-paperclip/geometry.rb", "lib/dm-paperclip/attachment.rb", "lib/dm-paperclip/storage.rb", "lib/dm-paperclip/iostream.rb", "lib/dm-paperclip/upfile.rb", "lib/dm-paperclip/callback_compatability.rb", "lib/dm-paperclip/interpolations.rb", "lib/dm-paperclip/validations.rb", "lib/dm-paperclip/thumbnail.rb", "lib/dm-paperclip/processor.rb", "tasks/paperclip_tasks.rake", "test/iostream_test.rb", "test/attachment_test.rb", "test/storage_test.rb", "test/thumbnail_test.rb", "test/integration_test.rb", "test/geometry_test.rb", "test/paperclip_test.rb", "test/fixtures", "test/fixtures/s3.yml", "test/fixtures/12k.png", "test/fixtures/text.txt", "test/fixtures/bad.png", "test/fixtures/50x50.png", "test/fixtures/5k.png", "test/helper.rb"]
s.homepage = %q{http://github.com/krobertson/dm-paperclip} s.homepage = %q{http://invalidlogic.com/dm-paperclip/}
s.rdoc_options = ["--line-numbers", "--inline-source"] s.rdoc_options = ["--line-numbers", "--inline-source"]
s.require_paths = ["lib"] s.require_paths = ["lib"]
s.requirements = ["ImageMagick"] s.requirements = ["ImageMagick", "data_mapper"]
s.rubyforge_project = %q{dm-paperclip} s.rubyforge_project = %q{dm-paperclip}
s.rubygems_version = %q{1.3.6} s.rubygems_version = %q{1.3.7}
s.summary = %q{File attachments as attributes for DataMapper, based on the original Paperclip by Jon Yurek at Thoughtbot} s.summary = %q{File attachments as attributes for DataMapper, based on the original Paperclip by Jon Yurek at Thoughtbot}


if s.respond_to? :specification_version then if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3 s.specification_version = 3


if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<extlib>, [">= 0"])
s.add_runtime_dependency(%q<datamapper>, [">= 0"])
s.add_development_dependency(%q<shoulda>, [">= 0"])
s.add_development_dependency(%q<mocha>, ["= 0.9.8"])
s.add_development_dependency(%q<aws-s3>, [">= 0"])
s.add_development_dependency(%q<do_sqlite3>, [">= 0"])
else else
s.add_dependency(%q<extlib>, [">= 0"])
s.add_dependency(%q<datamapper>, [">= 0"])
s.add_dependency(%q<shoulda>, [">= 0"])
s.add_dependency(%q<mocha>, ["= 0.9.8"])
s.add_dependency(%q<aws-s3>, [">= 0"])
s.add_dependency(%q<do_sqlite3>, [">= 0"])
end end
else else
s.add_dependency(%q<extlib>, [">= 0"])
s.add_dependency(%q<datamapper>, [">= 0"])
s.add_dependency(%q<shoulda>, [">= 0"])
s.add_dependency(%q<mocha>, ["= 0.9.8"])
s.add_dependency(%q<aws-s3>, [">= 0"])
s.add_dependency(%q<do_sqlite3>, [">= 0"])
end end
end end

0 comments on commit 2b32b3c

Please sign in to comment.