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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 26f6874af5f0ccd6241f7bfb4377733e5ac3c0a3
4
- data.tar.gz: 0fec2a2421336b03906be6ed5e8ddcf738fa744e
3
+ metadata.gz: 09bf77a5e70ee81ee3351672d693240dbd66f77a
4
+ data.tar.gz: 9c39a349cbd84204781a34f2543233cc87237c2f
5
5
  SHA512:
6
- metadata.gz: c9309a1f582b6065ea645b3baa731c2a554b4f3ff13efeb21c6daaba00bbb6deab35376545b184e089cc3658812b6f20b5e3fa83a1dd808e65a6710f478efd3d
7
- data.tar.gz: 750638ff3e27067e02adc6782643d3fe83d64afd4100ee6b685846204dc02442c7e2b4982d896a95e1a0649cf7ed3ffe6ecc2131ed7432325f14a7995d922911
6
+ metadata.gz: d772a6566f2aad7f0fe991f5a33dd5dfeea6bdeae9dd8153f450719b3965e1e958b92ff9f0f952dab0ffde8ccd0bf1d8b55c38eb667bac1dead97d07857a5e2f
7
+ data.tar.gz: 3cdf009ec88e3495c2bb82ce0f446648fb2345c15b8435f443abac7e339531ea560404b89fa7e76fca409b6449a05f11710733fd82a2b9b707e6a12eb81993e3
data/.gitignore CHANGED
@@ -1,6 +1,4 @@
1
- *.gem
2
1
  .bundle
3
- .rvmrc
4
2
  Gemfile.lock
5
3
  pkg/*
6
4
  spec/gemfiles/*.lock
@@ -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.
@@ -1,5 +1,5 @@
1
1
  module Paperclip
2
2
  module Meta
3
- VERSION = "1.0.0"
3
+ VERSION = "1.0.1"
4
4
  end
5
5
  end
@@ -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 = "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}
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,features}/*`.split("\n")
16
- s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
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.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-02 00:00:00.000000000 Z
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
@@ -1,2 +0,0 @@
1
- --color
2
- --backtrace