-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
71 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,73 @@ | ||
# Generated by jeweler | ||
# DO NOT EDIT THIS FILE DIRECTLY | ||
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec' | ||
# -*- encoding: utf-8 -*- | ||
# stub: paperclip_redis 0.0.7 ruby lib | ||
|
||
Gem::Specification.new do |gem| | ||
gem.name = 'paperclip_redis' | ||
gem.version = '0.0.6' | ||
gem.summary = "Store Images in Redis" | ||
gem.description = "This module stores the image files in Redis" | ||
gem.authors = ["Daniel W. Crompton", "Norman Timmler"] | ||
gem.email = ['[email protected]', ''] | ||
gem.files = `git ls-files`.split($\) | ||
gem.executables = gem.files.grep('.').map { |f| File.basename(f) } | ||
gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) | ||
gem.require_paths = ["lib"] | ||
Gem::Specification.new do |s| | ||
s.name = "paperclip_redis" | ||
s.version = "0.0.7" | ||
|
||
gem.add_dependency "paperclip", ">= 3.1", "< 5" | ||
gem.add_dependency "redis" | ||
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= | ||
s.require_paths = ["lib"] | ||
s.authors = ["Daniel W. Crompton", "Norman Timmler"] | ||
s.date = "2014-03-19" | ||
s.description = "This module stores the image files in Redis" | ||
s.email = ["[email protected]", ""] | ||
s.extra_rdoc_files = [ | ||
"LICENSE", | ||
"README.rdoc" | ||
] | ||
s.files = [ | ||
".document", | ||
"Gemfile", | ||
"Gemfile.lock", | ||
"LICENSE", | ||
"README.rdoc", | ||
"Rakefile", | ||
"VERSION", | ||
"lib/paperclip/storage.rb", | ||
"lib/paperclip/storage/redis.rb", | ||
"lib/paperclip_redis.rb", | ||
"paperclip_redis-0.0.6.gem", | ||
"paperclip_redis.gemspec" | ||
] | ||
s.homepage = "http://github.com/webhat/paperclip_redis" | ||
s.licenses = ["LGPLv2"] | ||
s.rubygems_version = "2.2.2" | ||
s.summary = "Store Images in Redis" | ||
|
||
gem.add_development_dependency "rspec" | ||
if s.respond_to? :specification_version then | ||
s.specification_version = 4 | ||
|
||
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then | ||
s.add_runtime_dependency(%q<paperclip>, [">= 0"]) | ||
s.add_runtime_dependency(%q<redis>, [">= 0"]) | ||
s.add_development_dependency(%q<shoulda>, [">= 0"]) | ||
s.add_development_dependency(%q<rdoc>, ["~> 3.12"]) | ||
s.add_development_dependency(%q<bundler>, ["~> 1.0"]) | ||
s.add_development_dependency(%q<jeweler>, ["~> 2.0.1"]) | ||
s.add_development_dependency(%q<simplecov>, [">= 0"]) | ||
s.add_development_dependency(%q<rspec>, [">= 0"]) | ||
else | ||
s.add_dependency(%q<paperclip>, [">= 0"]) | ||
s.add_dependency(%q<redis>, [">= 0"]) | ||
s.add_dependency(%q<shoulda>, [">= 0"]) | ||
s.add_dependency(%q<rdoc>, ["~> 3.12"]) | ||
s.add_dependency(%q<bundler>, ["~> 1.0"]) | ||
s.add_dependency(%q<jeweler>, ["~> 2.0.1"]) | ||
s.add_dependency(%q<simplecov>, [">= 0"]) | ||
s.add_dependency(%q<rspec>, [">= 0"]) | ||
end | ||
else | ||
s.add_dependency(%q<paperclip>, [">= 0"]) | ||
s.add_dependency(%q<redis>, [">= 0"]) | ||
s.add_dependency(%q<shoulda>, [">= 0"]) | ||
s.add_dependency(%q<rdoc>, ["~> 3.12"]) | ||
s.add_dependency(%q<bundler>, ["~> 1.0"]) | ||
s.add_dependency(%q<jeweler>, ["~> 2.0.1"]) | ||
s.add_dependency(%q<simplecov>, [">= 0"]) | ||
s.add_dependency(%q<rspec>, [">= 0"]) | ||
end | ||
end | ||
|
File renamed without changes.
Binary file not shown.