mongomapper-paperclip 0.0.8
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.
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/README.md +33 -0
- data/Rakefile +2 -0
- data/lib/mongomapper-paperclip/base.rb +69 -0
- data/lib/mongomapper-paperclip/version.rb +5 -0
- data/lib/mongomapper-paperclip.rb +7 -0
- data/mongomapper-paperclip.gemspec +18 -0
- metadata +70 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2012 Sylvain Niles
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
# Mongomapper::Paperclip
|
2
|
+
|
3
|
+
This gem gets Paperclip playing nicely with MongoMapper.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'mongomapper-paperclip'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install mongomapper-paperclip
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
In any model you want to use paperclip simply:
|
22
|
+
```
|
23
|
+
include MMPaperclip
|
24
|
+
```
|
25
|
+
Then use paperclip as usual.
|
26
|
+
|
27
|
+
## Contributing
|
28
|
+
|
29
|
+
1. Fork it
|
30
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
31
|
+
3. Commit your changes (`git commit -am 'Added some feature'`)
|
32
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
33
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1,69 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
begin
|
4
|
+
require "paperclip"
|
5
|
+
rescue LoadError
|
6
|
+
puts "MongoMapper::Paperclip requires that you install the Paperclip gem."
|
7
|
+
exit
|
8
|
+
end
|
9
|
+
|
10
|
+
Paperclip.interpolates :id_partition do |attachment, style|
|
11
|
+
attachment.instance.id.to_s.scan(/.{4}/).join("/")
|
12
|
+
end
|
13
|
+
|
14
|
+
module MMPaperclip
|
15
|
+
def self.included(base)
|
16
|
+
base.extend(ClassMethods)
|
17
|
+
end
|
18
|
+
|
19
|
+
module ClassMethods
|
20
|
+
def has_mm_attached_file(field, options = {})
|
21
|
+
|
22
|
+
unless self.ancestors.include?(::Paperclip)
|
23
|
+
include ::Paperclip
|
24
|
+
include ::Paperclip::Glue
|
25
|
+
end
|
26
|
+
|
27
|
+
has_attached_file(field, options)
|
28
|
+
|
29
|
+
key :"#{field}_file_name", String
|
30
|
+
key :"#{field}_content_type", String
|
31
|
+
key :"#{field}_file_size", Integer
|
32
|
+
key :"#{field}_updated_at", Time
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
module MongoMapper
|
38
|
+
module Plugins
|
39
|
+
module EmbeddedCallbacks
|
40
|
+
module InstanceMethods
|
41
|
+
def run_callbacks(callback, opts = nil, &block)
|
42
|
+
embedded_docs = []
|
43
|
+
|
44
|
+
embedded_associations.each do |association|
|
45
|
+
embedded_docs += Array(get_proxy(association).send(:load_target))
|
46
|
+
end
|
47
|
+
|
48
|
+
block = embedded_docs.inject(block) do |chain, doc|
|
49
|
+
if doc.class.respond_to?("_#{callback}_callbacks")
|
50
|
+
lambda { doc.run_callbacks(callback, &chain) }
|
51
|
+
else
|
52
|
+
chain
|
53
|
+
end
|
54
|
+
end
|
55
|
+
super callback, &block
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
module Paperclip
|
63
|
+
class Attachment
|
64
|
+
def updated_at
|
65
|
+
time = instance_read(:updated_at)
|
66
|
+
time && time.to_time.to_f.to_i
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
require File.expand_path('../lib/mongomapper-paperclip/version', __FILE__)
|
3
|
+
|
4
|
+
Gem::Specification.new do |gem|
|
5
|
+
gem.authors = ["Sylvain Niles"]
|
6
|
+
gem.email = ["sylvain.niles@gmail.com"]
|
7
|
+
gem.description = %q{Makes paperclip work with mongomapper}
|
8
|
+
gem.summary = %q{fixes all the things!}
|
9
|
+
gem.homepage = "https://github.com/sylvainsf/mongomapper-paperclip/"
|
10
|
+
|
11
|
+
gem.files = `git ls-files`.split($\)
|
12
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
13
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
14
|
+
gem.name = "mongomapper-paperclip"
|
15
|
+
gem.require_paths = ["lib"]
|
16
|
+
gem.version = Mongomapper::Paperclip::VERSION
|
17
|
+
gem.add_dependency 'paperclip'
|
18
|
+
end
|
metadata
ADDED
@@ -0,0 +1,70 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: mongomapper-paperclip
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.8
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Sylvain Niles
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-08-14 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: paperclip
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0'
|
30
|
+
description: Makes paperclip work with mongomapper
|
31
|
+
email:
|
32
|
+
- sylvain.niles@gmail.com
|
33
|
+
executables: []
|
34
|
+
extensions: []
|
35
|
+
extra_rdoc_files: []
|
36
|
+
files:
|
37
|
+
- .gitignore
|
38
|
+
- Gemfile
|
39
|
+
- LICENSE
|
40
|
+
- README.md
|
41
|
+
- Rakefile
|
42
|
+
- lib/mongomapper-paperclip.rb
|
43
|
+
- lib/mongomapper-paperclip/base.rb
|
44
|
+
- lib/mongomapper-paperclip/version.rb
|
45
|
+
- mongomapper-paperclip.gemspec
|
46
|
+
homepage: https://github.com/sylvainsf/mongomapper-paperclip/
|
47
|
+
licenses: []
|
48
|
+
post_install_message:
|
49
|
+
rdoc_options: []
|
50
|
+
require_paths:
|
51
|
+
- lib
|
52
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
53
|
+
none: false
|
54
|
+
requirements:
|
55
|
+
- - ! '>='
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
version: '0'
|
58
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
59
|
+
none: false
|
60
|
+
requirements:
|
61
|
+
- - ! '>='
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: '0'
|
64
|
+
requirements: []
|
65
|
+
rubyforge_project:
|
66
|
+
rubygems_version: 1.8.24
|
67
|
+
signing_key:
|
68
|
+
specification_version: 3
|
69
|
+
summary: fixes all the things!
|
70
|
+
test_files: []
|