c80_catoffers 0.1.0.1 → 0.1.0.2

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: 2904023e8ffae22e7fba1cbc7d31001a3a9971dd
4
- data.tar.gz: 9b89351c5229c814fed16378f0a3fb10f43a5acf
3
+ metadata.gz: 4978d4f9ad6c30c3120a1f20f7e9b291051cd875
4
+ data.tar.gz: f3bbb51a38af6e9b37001c322014bd8a6fa179ca
5
5
  SHA512:
6
- metadata.gz: 97125706ab687f010331a72de5f662c5a004f62d0212fbfec1d46679576705e474d887a3e9f1f12d8365ca6bf189c383fef3f06599988967b0cb54e5d711bf6a
7
- data.tar.gz: fc6ee5387a778ba10505f547b6585d8e0ffdf109c7bd077e8d7d868a57468c90f337f21117dee7a6f65620d0b9c405acde0f8e49852b07462494dce0cef10053
6
+ metadata.gz: e963b8dd01b67113be7f656ccd29fde83dec1e83b0ce8a0873a1f7466093f12a47a41a3cb61598816b479d45f5dd32e55b5b54265b2d4545c4ad9e2314c2436e
7
+ data.tar.gz: 1dbad5650b777ac78dabb936f366de059501e70563beaa77b4b6e549b2cba0e2ad8f15886187b030b3d25c26ea765357091bd2fd3d51ade148d83ab5a1c6c713
data/.gitignore CHANGED
@@ -8,3 +8,4 @@
8
8
  /pkg/
9
9
  /spec/reports/
10
10
  /tmp/
11
+ *.gem
@@ -6,18 +6,24 @@ module C80Catoffers
6
6
  process :resize_to_limit => [1024,768]
7
7
 
8
8
  version :thumb_big_one do
9
- p = C80Catoffers::Prop.first
10
- process :resize_to_fill => [p.big_one_width, p.big_one_height]
9
+ Proc.new {
10
+ p = C80Catoffers::Prop.first
11
+ process :resize_to_fill => [p.big_one_width, p.big_one_height]
12
+ }
11
13
  end
12
14
 
13
15
  version :thumb_preview do
14
- p = C80Catoffers::Prop.first
15
- process :resize_to_fill => [p.preview_width, p.preview_height]
16
+ Proc.new {
17
+ p = C80Catoffers::Prop.first
18
+ process :resize_to_fill => [p.preview_width, p.preview_height]
19
+ }
16
20
  end
17
21
 
18
22
  version :thumb_sm do
19
- p = C80Catoffers::Prop.first
20
- process :resize_to_fill => [p.thumb_sm_width, p.thumb_sm_height]
23
+ Proc.new {
24
+ p = C80Catoffers::Prop.first
25
+ process :resize_to_fill => [p.thumb_sm_width, p.thumb_sm_height]
26
+ }
21
27
  end
22
28
 
23
29
  def store_dir
@@ -1,3 +1,3 @@
1
1
  module C80Catoffers
2
- VERSION = "0.1.0.1"
2
+ VERSION = "0.1.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: c80_catoffers
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.1
4
+ version: 0.1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - C80609A