paperclip_redis 0.0.7 → 0.0.8.pre
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +8 -8
- data/.travis.yml +22 -0
- data/README.rdoc +3 -1
- data/Rakefile +8 -9
- data/VERSION +1 -1
- data/lib/paperclip/version.rb +12 -0
- data/paperclip_redis.gemspec +8 -5
- data/spec/paperclip_redis_spec.rb +7 -0
- data/spec/spec_helper.rb +29 -0
- metadata +7 -4
- data/paperclip_redis-0.0.6.gem +0 -0
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NWIyNDBhOTNmMjI2MmNmMGJiZWRhYTI1YWFkOWY2ZmJlZjExOTM3Zg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
Mzc3Y2ViZTIxN2Y1MGRlMWQ3MGMwNzA5MzMxZjRhODRmNGE2MDA3NA==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MjMzNzdiMGVjMTM4MmRmNjgzMzFjYzI4ZDUyZmQwY2JhY2I4ZDJkYWIyZTQ3
|
10
|
+
OGI3NDc1NjYwOTE4ZWNiYzMyZDA0ZGQ3NzNhYWEzMDg3NmRjNzdmMGM5MmZl
|
11
|
+
Y2UzMzYzNjdjOWQzMzQ5NDZhYTNiNzNkNzJlOTI2NTRlMWIyZjc=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NWQ5OGRlZWU4NDMwZDFjM2U0NjZlZjBlMjAzY2M4MzNjYWYyNDhkMjU3NzA5
|
14
|
+
MjliNTI5ZTk0MjdlNTg0OWQyMmIzMGViZGNjOTIwNTIyNWFiZTU4MGIzNjJl
|
15
|
+
NzczZTZkMTBkM2Y0OTQ5ODgzODllNWVhMTQ1YTI3OWFkYTY2ZDE=
|
data/.travis.yml
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
language: ruby
|
2
|
+
rvm:
|
3
|
+
- 2.0.0
|
4
|
+
- 1.9.3
|
5
|
+
- jruby-19mode
|
6
|
+
- rbx-19mode
|
7
|
+
- ruby-head
|
8
|
+
matrix:
|
9
|
+
fast_finish: true
|
10
|
+
allow_failures:
|
11
|
+
- rvm:
|
12
|
+
- jruby-19mode
|
13
|
+
- rbx-19mode
|
14
|
+
- ruby-head
|
15
|
+
deploy:
|
16
|
+
provider: rubygems
|
17
|
+
api_key:
|
18
|
+
secure: fOxL5TmqeXQWp3rxxQLX9h1r1wRPVC9JizKhycQgMvxaUR3TztiLRjmNQplPlseIsBtdua3jtcT87v0/j3p3BUjTz3wazvKlRNHc73GQ1XGrSYQAsImdVAnRwRvT1d8NH0+f9lHCRuGj7kRTsqHKm7DkAmsqR/PhqvNKzKnKs8g=
|
19
|
+
gem: paperclip_redis
|
20
|
+
on:
|
21
|
+
tags: true
|
22
|
+
repo: webhat/paperclip_redis
|
data/README.rdoc
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
= paperclip_redis
|
2
2
|
|
3
|
-
|
3
|
+
A storage backed written as a {gist}[https://gist.github.com/unnu/4253524] by {Norman Timmler}[https://github.com/unnu].
|
4
|
+
|
5
|
+
{<img src="https://badge.fury.io/rb/paperclip_redis.png" alt="Gem Version" />}[http://badge.fury.io/rb/paperclip_redis]
|
4
6
|
|
5
7
|
== Contributing to paperclip_redis
|
6
8
|
|
data/Rakefile
CHANGED
@@ -12,8 +12,8 @@ end
|
|
12
12
|
require 'rake'
|
13
13
|
|
14
14
|
require 'jeweler'
|
15
|
+
require './lib/paperclip/version.rb'
|
15
16
|
Jeweler::Tasks.new do |gem|
|
16
|
-
# gem is a Gem::Specification... see http://guides.rubygems.org/specification-reference/ for more options
|
17
17
|
gem.name = "paperclip_redis"
|
18
18
|
gem.homepage = "http://github.com/webhat/paperclip_redis"
|
19
19
|
gem.license = "LGPLv2"
|
@@ -21,24 +21,23 @@ Jeweler::Tasks.new do |gem|
|
|
21
21
|
gem.description = "This module stores the image files in Redis"
|
22
22
|
gem.authors = ["Daniel W. Crompton", "Norman Timmler"]
|
23
23
|
gem.email = ['paperclip+redis@specialbrands.net', '']
|
24
|
-
|
24
|
+
gem.version = Paperclip::Version::STRING
|
25
25
|
end
|
26
26
|
Jeweler::RubygemsDotOrgTasks.new
|
27
27
|
|
28
|
-
require '
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
test.verbose = true
|
28
|
+
require 'rspec/core'
|
29
|
+
require 'rspec/core/rake_task'
|
30
|
+
RSpec::Core::RakeTask.new(:spec) do |spec|
|
31
|
+
spec.pattern = FileList['spec/**/*_spec.rb']
|
33
32
|
end
|
34
33
|
|
35
34
|
desc "Code coverage detail"
|
36
35
|
task :simplecov do
|
37
36
|
ENV['COVERAGE'] = "true"
|
38
|
-
Rake::Task['
|
37
|
+
Rake::Task['spec'].execute
|
39
38
|
end
|
40
39
|
|
41
|
-
task :default => :
|
40
|
+
task :default => :spec
|
42
41
|
|
43
42
|
require 'rdoc/task'
|
44
43
|
Rake::RDocTask.new do |rdoc|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.8
|
data/paperclip_redis.gemspec
CHANGED
@@ -2,13 +2,13 @@
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
|
-
# stub: paperclip_redis 0.0.
|
5
|
+
# stub: paperclip_redis 0.0.8.pre ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "paperclip_redis"
|
9
|
-
s.version = "0.0.
|
9
|
+
s.version = "0.0.8.pre"
|
10
10
|
|
11
|
-
s.required_rubygems_version = Gem::Requirement.new("
|
11
|
+
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
|
12
12
|
s.require_paths = ["lib"]
|
13
13
|
s.authors = ["Daniel W. Crompton", "Norman Timmler"]
|
14
14
|
s.date = "2014-03-19"
|
@@ -20,6 +20,7 @@ Gem::Specification.new do |s|
|
|
20
20
|
]
|
21
21
|
s.files = [
|
22
22
|
".document",
|
23
|
+
".travis.yml",
|
23
24
|
"Gemfile",
|
24
25
|
"Gemfile.lock",
|
25
26
|
"LICENSE",
|
@@ -28,9 +29,11 @@ Gem::Specification.new do |s|
|
|
28
29
|
"VERSION",
|
29
30
|
"lib/paperclip/storage.rb",
|
30
31
|
"lib/paperclip/storage/redis.rb",
|
32
|
+
"lib/paperclip/version.rb",
|
31
33
|
"lib/paperclip_redis.rb",
|
32
|
-
"paperclip_redis
|
33
|
-
"
|
34
|
+
"paperclip_redis.gemspec",
|
35
|
+
"spec/paperclip_redis_spec.rb",
|
36
|
+
"spec/spec_helper.rb"
|
34
37
|
]
|
35
38
|
s.homepage = "http://github.com/webhat/paperclip_redis"
|
36
39
|
s.licenses = ["LGPLv2"]
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
require 'simplecov'
|
2
|
+
|
3
|
+
module SimpleCov::Configuration
|
4
|
+
def clean_filters
|
5
|
+
@filters = []
|
6
|
+
end
|
7
|
+
end
|
8
|
+
|
9
|
+
SimpleCov.configure do
|
10
|
+
clean_filters
|
11
|
+
load_adapter 'test_frameworks'
|
12
|
+
end
|
13
|
+
|
14
|
+
ENV["COVERAGE"] && SimpleCov.start do
|
15
|
+
add_filter "/.rvm/"
|
16
|
+
end
|
17
|
+
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
18
|
+
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
19
|
+
|
20
|
+
require 'rspec'
|
21
|
+
require 'paperclip_redis'
|
22
|
+
|
23
|
+
# Requires supporting files with custom matchers and macros, etc,
|
24
|
+
# in ./support/ and its subdirectories.
|
25
|
+
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}
|
26
|
+
|
27
|
+
RSpec.configure do |config|
|
28
|
+
|
29
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: paperclip_redis
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.8.pre
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel W. Crompton
|
@@ -134,6 +134,7 @@ extra_rdoc_files:
|
|
134
134
|
- README.rdoc
|
135
135
|
files:
|
136
136
|
- .document
|
137
|
+
- .travis.yml
|
137
138
|
- Gemfile
|
138
139
|
- Gemfile.lock
|
139
140
|
- LICENSE
|
@@ -142,9 +143,11 @@ files:
|
|
142
143
|
- VERSION
|
143
144
|
- lib/paperclip/storage.rb
|
144
145
|
- lib/paperclip/storage/redis.rb
|
146
|
+
- lib/paperclip/version.rb
|
145
147
|
- lib/paperclip_redis.rb
|
146
|
-
- paperclip_redis-0.0.6.gem
|
147
148
|
- paperclip_redis.gemspec
|
149
|
+
- spec/paperclip_redis_spec.rb
|
150
|
+
- spec/spec_helper.rb
|
148
151
|
homepage: http://github.com/webhat/paperclip_redis
|
149
152
|
licenses:
|
150
153
|
- LGPLv2
|
@@ -160,9 +163,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
160
163
|
version: '0'
|
161
164
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
162
165
|
requirements:
|
163
|
-
- - ! '
|
166
|
+
- - ! '>'
|
164
167
|
- !ruby/object:Gem::Version
|
165
|
-
version:
|
168
|
+
version: 1.3.1
|
166
169
|
requirements: []
|
167
170
|
rubyforge_project:
|
168
171
|
rubygems_version: 2.2.2
|
data/paperclip_redis-0.0.6.gem
DELETED
Binary file
|