Skip to content

Commit

Permalink
release version 0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
webhat committed Mar 19, 2014
1 parent 26cffd8 commit c4c2757
Show file tree
Hide file tree
Showing 4 changed files with 71 additions and 15 deletions.
4 changes: 3 additions & 1 deletion README.rdoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
= paperclip_redis

Description goes here.
A storage backed written as a {gist}[https://gist.github.com/unnu/4253524] by {Norman Timmler}[https://github.com/unnu].

{<img src="https://badge.fury.io/rb/paperclip_redis.png" alt="Gem Version" />}[http://badge.fury.io/rb/paperclip_redis]

== Contributing to paperclip_redis

Expand Down
82 changes: 68 additions & 14 deletions paperclip_redis.gemspec
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 added pkg/paperclip_redis-0.0.7.gem
Binary file not shown.

0 comments on commit c4c2757

Please sign in to comment.