paperclip-meta 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +0 -2
- data/LICENSE.txt +22 -0
- data/lib/paperclip-meta/version.rb +1 -1
- data/paperclip-meta.gemspec +10 -9
- metadata +6 -4
- data/.rspec +0 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 09bf77a5e70ee81ee3351672d693240dbd66f77a
|
4
|
+
data.tar.gz: 9c39a349cbd84204781a34f2543233cc87237c2f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d772a6566f2aad7f0fe991f5a33dd5dfeea6bdeae9dd8153f450719b3965e1e958b92ff9f0f952dab0ffde8ccd0bf1d8b55c38eb667bac1dead97d07857a5e2f
|
7
|
+
data.tar.gz: 3cdf009ec88e3495c2bb82ce0f446648fb2345c15b8435f443abac7e339531ea560404b89fa7e76fca409b6449a05f11710733fd82a2b9b707e6a12eb81993e3
|
data/.gitignore
CHANGED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2014 Tee Parham, Alexey Bondar
|
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/paperclip-meta.gemspec
CHANGED
@@ -3,17 +3,18 @@ $:.push File.expand_path("../lib", __FILE__)
|
|
3
3
|
require "paperclip-meta/version"
|
4
4
|
|
5
5
|
Gem::Specification.new do |s|
|
6
|
-
s.name
|
7
|
-
s.version
|
8
|
-
s.authors
|
9
|
-
s.email
|
10
|
-
s.homepage
|
11
|
-
s.summary
|
12
|
-
s.description
|
6
|
+
s.name = "paperclip-meta"
|
7
|
+
s.version = Paperclip::Meta::VERSION
|
8
|
+
s.authors = ["Alexey Bondar", "Tee Parham"]
|
9
|
+
s.email = ["y8@ya.ru", "tee@neighborland.com"]
|
10
|
+
s.homepage = "http://github.com/teeparham/paperclip-meta"
|
11
|
+
s.summary = %q{Add width, height, and size to paperclip images}
|
12
|
+
s.description = %q{Add width, height and size methods to paperclip images}
|
13
|
+
s.license = "MIT"
|
13
14
|
|
14
15
|
s.files = `git ls-files`.split("\n")
|
15
|
-
s.test_files = `git ls-files -- {test,spec
|
16
|
-
s.executables =
|
16
|
+
s.test_files = `git ls-files -- {test,spec}/*`.split("\n")
|
17
|
+
s.executables = []
|
17
18
|
s.require_paths = ["lib"]
|
18
19
|
|
19
20
|
s.required_ruby_version = ">= 1.9.3"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: paperclip-meta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alexey Bondar
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-02-
|
12
|
+
date: 2014-02-20 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: paperclip
|
@@ -124,10 +124,10 @@ extensions: []
|
|
124
124
|
extra_rdoc_files: []
|
125
125
|
files:
|
126
126
|
- ".gitignore"
|
127
|
-
- ".rspec"
|
128
127
|
- ".ruby-version"
|
129
128
|
- ".travis.yml"
|
130
129
|
- Gemfile
|
130
|
+
- LICENSE.txt
|
131
131
|
- README.md
|
132
132
|
- Rakefile
|
133
133
|
- lib/paperclip-meta.rb
|
@@ -144,7 +144,8 @@ files:
|
|
144
144
|
- spec/schema.rb
|
145
145
|
- spec/spec_helper.rb
|
146
146
|
homepage: http://github.com/teeparham/paperclip-meta
|
147
|
-
licenses:
|
147
|
+
licenses:
|
148
|
+
- MIT
|
148
149
|
metadata: {}
|
149
150
|
post_install_message:
|
150
151
|
rdoc_options: []
|
@@ -175,3 +176,4 @@ test_files:
|
|
175
176
|
- spec/gemfiles/Gemfile.paperclip-4
|
176
177
|
- spec/schema.rb
|
177
178
|
- spec/spec_helper.rb
|
179
|
+
has_rdoc:
|
data/.rspec
DELETED