isd-color-palette 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  ISDColorPalette is a color selection panel for the RubyMotion iOS app.
4
4
 
5
+ ![Screenshot](https://raw.github.com/ito-soft-design/isd-color-palette/master/screenshots/screenshot-0.1.1.png)
6
+
5
7
  ## Installation
6
8
 
7
9
  ```ruby
@@ -111,7 +111,7 @@ class ISDColorPaletteViewController < UIViewController
111
111
  def didChangeColor color
112
112
  self.selectedColor = color
113
113
  if self.selected_color_block
114
- color = nil if self.return_nil && color == :clear.uicolor
114
+ color = nil if self.return_nil && color.alpha == 0
115
115
  self.selected_color_block.call color
116
116
  end
117
117
  end
@@ -129,7 +129,7 @@ class ISDColorPaletteViewController < UIViewController
129
129
  self.solid_layer.backgroundColor = color.uicolor(1).cgcolor
130
130
  self.solid_layer.removeAllAnimations
131
131
 
132
- colorNameLabel.text = color == :clear.uicolor ? "Clear"._ : color.color_name._
132
+ colorNameLabel.text = color.color_name._
133
133
  colorNameLabel.textColor = color.monochrome.red >= 0.5 ? :black.uicolor : :white.uicolor
134
134
  end
135
135
 
@@ -26,6 +26,8 @@ class UIColor
26
26
  end
27
27
 
28
28
  def color_name
29
+ return "Clear"._ if self.alpha == 0
30
+
29
31
  name = system_name || css_name || hex
30
32
  name = name.to_s unless name.is_a? String
31
33
  name.underscore.gsub(/_color/, "").gsub(/_/, " ").capitalize
@@ -26,19 +26,31 @@ class ISDRgbaSliderView < UIView
26
26
  =end
27
27
 
28
28
  def awakeFromNib
29
+
29
30
  l = self.layer
30
31
  l.borderColor = :white.uicolor.cgcolor
31
32
  l.borderWidth = 3
32
33
  l.cornerRadius = 4
33
-
34
+
35
+ # setup slider
36
+
34
37
  @slider = UISlider.new
38
+ @slider.frame = CGRectInset sliderBaseView.bounds, 0, 8
35
39
  rad = -90 * Math::PI / 180
36
40
  @slider.transform = CGAffineTransformMakeRotation(rad)
37
- @slider.frame = CGRectInset sliderBaseView.bounds, 0, 8
41
+ sliderBaseView << @slider
42
+
38
43
  @slider.addTarget self, action:"didChangeValue:", forControlEvents:UIControlEventValueChanged
39
44
 
40
- sliderBaseView << @slider
41
45
  end
46
+
47
+ def layoutSubviews
48
+ super
49
+ return unless self.slider
50
+
51
+ self.slider.frame = CGRectInset self.sliderBaseView.bounds, 0, 8
52
+ end
53
+
42
54
 
43
55
  def color= color
44
56
  @color = color
@@ -250,17 +250,18 @@
250
250
  </view>
251
251
  </subviews>
252
252
  <constraints>
253
- <constraint firstItem="GyG-Pq-fWB" firstAttribute="leading" secondItem="bhT-mh-qOp" secondAttribute="leading" id="8hK-sc-YTm"/>
254
- <constraint firstAttribute="trailing" secondItem="gon-EP-ZNQ" secondAttribute="trailing" id="Ama-mI-BQ3"/>
255
- <constraint firstItem="gon-EP-ZNQ" firstAttribute="top" secondItem="1X6-Fn-GXc" secondAttribute="bottom" constant="4" id="Tat-gE-zFu"/>
256
- <constraint firstItem="1X6-Fn-GXc" firstAttribute="centerX" secondItem="gon-EP-ZNQ" secondAttribute="centerX" id="Ub8-iw-ff6"/>
257
- <constraint firstAttribute="bottom" secondItem="GyG-Pq-fWB" secondAttribute="bottom" id="ZsE-42-Q3K"/>
258
- <constraint firstItem="GyG-Pq-fWB" firstAttribute="top" secondItem="gon-EP-ZNQ" secondAttribute="bottom" constant="-1" id="eKd-Ve-whv"/>
259
- <constraint firstItem="GyG-Pq-fWB" firstAttribute="trailing" secondItem="gon-EP-ZNQ" secondAttribute="trailing" id="n9H-qH-74n"/>
260
- <constraint firstItem="1X6-Fn-GXc" firstAttribute="top" secondItem="bhT-mh-qOp" secondAttribute="top" constant="4" id="sAQ-84-QgG"/>
261
- <constraint firstItem="gon-EP-ZNQ" firstAttribute="leading" secondItem="GyG-Pq-fWB" secondAttribute="leading" id="zdm-qF-05L"/>
253
+ <constraint firstAttribute="trailing" secondItem="GyG-Pq-fWB" secondAttribute="trailing" id="BvJ-3j-4LZ"/>
254
+ <constraint firstItem="gon-EP-ZNQ" firstAttribute="trailing" secondItem="GyG-Pq-fWB" secondAttribute="trailing" id="J95-RI-W4i"/>
255
+ <constraint firstItem="GyG-Pq-fWB" firstAttribute="leading" secondItem="bhT-mh-qOp" secondAttribute="leading" id="JxX-ml-dUk"/>
256
+ <constraint firstItem="gon-EP-ZNQ" firstAttribute="leading" secondItem="GyG-Pq-fWB" secondAttribute="leading" id="Oi6-HF-aZk"/>
257
+ <constraint firstAttribute="bottom" secondItem="GyG-Pq-fWB" secondAttribute="bottom" id="SaR-Y1-9k8"/>
258
+ <constraint firstItem="gon-EP-ZNQ" firstAttribute="top" secondItem="1X6-Fn-GXc" secondAttribute="bottom" constant="4" id="Uzp-fN-KGK"/>
259
+ <constraint firstItem="1X6-Fn-GXc" firstAttribute="centerX" secondItem="gon-EP-ZNQ" secondAttribute="centerX" id="bfw-Hh-Afs"/>
260
+ <constraint firstItem="GyG-Pq-fWB" firstAttribute="top" secondItem="1X6-Fn-GXc" secondAttribute="bottom" constant="33" id="eIV-z7-2Yk"/>
261
+ <constraint firstItem="1X6-Fn-GXc" firstAttribute="top" secondItem="bhT-mh-qOp" secondAttribute="top" constant="4" id="tM9-bf-5vN"/>
262
262
  </constraints>
263
263
  <connections>
264
+ <outlet property="idLabel" destination="1X6-Fn-GXc" id="S1c-96-Rel"/>
264
265
  <outlet property="sliderBaseView" destination="GyG-Pq-fWB" id="pyB-gZ-bqi"/>
265
266
  <outlet property="valueTextField" destination="gon-EP-ZNQ" id="fEV-vA-2aZ"/>
266
267
  <outlet property="viewController" destination="Yhi-Ks-PNF" id="90O-gx-RuZ"/>
@@ -292,17 +293,18 @@
292
293
  </view>
293
294
  </subviews>
294
295
  <constraints>
295
- <constraint firstItem="DRT-5I-XgG" firstAttribute="top" secondItem="YVg-78-fdF" secondAttribute="top" constant="4" id="1OA-hd-LzU"/>
296
- <constraint firstItem="HXL-Gb-ssS" firstAttribute="top" secondItem="DRT-5I-XgG" secondAttribute="bottom" constant="4" id="Bc4-2H-nHA"/>
297
- <constraint firstItem="DRT-5I-XgG" firstAttribute="centerX" secondItem="HXL-Gb-ssS" secondAttribute="centerX" id="GW0-uc-995"/>
298
- <constraint firstItem="6y3-Pm-VQ8" firstAttribute="leading" secondItem="HXL-Gb-ssS" secondAttribute="leading" id="KHM-CB-gxV"/>
299
- <constraint firstItem="6y3-Pm-VQ8" firstAttribute="top" secondItem="HXL-Gb-ssS" secondAttribute="bottom" constant="-1" id="QhC-GB-7tT"/>
300
- <constraint firstAttribute="trailing" secondItem="6y3-Pm-VQ8" secondAttribute="trailing" id="agS-Qx-UHA"/>
301
- <constraint firstItem="HXL-Gb-ssS" firstAttribute="trailing" secondItem="6y3-Pm-VQ8" secondAttribute="trailing" id="b8A-YZ-obz"/>
302
- <constraint firstAttribute="bottom" secondItem="6y3-Pm-VQ8" secondAttribute="bottom" id="bGh-bJ-xNR"/>
303
- <constraint firstItem="6y3-Pm-VQ8" firstAttribute="leading" secondItem="YVg-78-fdF" secondAttribute="leading" id="v7F-Sa-Up7"/>
296
+ <constraint firstItem="6y3-Pm-VQ8" firstAttribute="top" secondItem="DRT-5I-XgG" secondAttribute="bottom" constant="33" id="6Nv-6M-T6i"/>
297
+ <constraint firstItem="6y3-Pm-VQ8" firstAttribute="leading" secondItem="YVg-78-fdF" secondAttribute="leading" id="81A-Gh-qfD"/>
298
+ <constraint firstItem="HXL-Gb-ssS" firstAttribute="trailing" secondItem="6y3-Pm-VQ8" secondAttribute="trailing" id="Mdc-PS-KTv"/>
299
+ <constraint firstItem="DRT-5I-XgG" firstAttribute="top" secondItem="YVg-78-fdF" secondAttribute="top" constant="4" id="ePA-WJ-DLR"/>
300
+ <constraint firstAttribute="bottom" secondItem="6y3-Pm-VQ8" secondAttribute="bottom" id="hrc-G9-vf8"/>
301
+ <constraint firstItem="HXL-Gb-ssS" firstAttribute="top" secondItem="DRT-5I-XgG" secondAttribute="bottom" constant="4" id="iTF-0C-ZvR"/>
302
+ <constraint firstAttribute="trailing" secondItem="6y3-Pm-VQ8" secondAttribute="trailing" id="kyc-Iz-NRg"/>
303
+ <constraint firstItem="HXL-Gb-ssS" firstAttribute="centerX" secondItem="DRT-5I-XgG" secondAttribute="centerX" id="vXs-mT-xfN"/>
304
+ <constraint firstItem="HXL-Gb-ssS" firstAttribute="leading" secondItem="6y3-Pm-VQ8" secondAttribute="leading" id="xiX-02-Kvp"/>
304
305
  </constraints>
305
306
  <connections>
307
+ <outlet property="idLabel" destination="DRT-5I-XgG" id="NT5-FP-OG6"/>
306
308
  <outlet property="sliderBaseView" destination="6y3-Pm-VQ8" id="hjv-3t-lv2"/>
307
309
  <outlet property="valueTextField" destination="HXL-Gb-ssS" id="7lx-Tb-0qm"/>
308
310
  <outlet property="viewController" destination="Yhi-Ks-PNF" id="64N-SO-Nt6"/>
@@ -334,15 +336,15 @@
334
336
  </view>
335
337
  </subviews>
336
338
  <constraints>
337
- <constraint firstAttribute="trailing" secondItem="OV8-zN-eBC" secondAttribute="trailing" id="85n-F9-PQa"/>
338
- <constraint firstItem="OV8-zN-eBC" firstAttribute="trailing" secondItem="GYK-Ya-tqt" secondAttribute="trailing" id="8kl-Q4-OK4"/>
339
- <constraint firstItem="OV8-zN-eBC" firstAttribute="leading" secondItem="GYK-Ya-tqt" secondAttribute="leading" id="CbC-kC-Zln"/>
340
- <constraint firstItem="GVX-lW-HfY" firstAttribute="top" secondItem="crf-eG-EzA" secondAttribute="top" constant="4" id="QUv-VF-fgW"/>
341
- <constraint firstItem="OV8-zN-eBC" firstAttribute="top" secondItem="GVX-lW-HfY" secondAttribute="bottom" constant="4" id="WmD-aI-NCh"/>
342
- <constraint firstAttribute="bottom" secondItem="GYK-Ya-tqt" secondAttribute="bottom" id="Yzd-mq-ub1"/>
343
- <constraint firstItem="GYK-Ya-tqt" firstAttribute="top" secondItem="OV8-zN-eBC" secondAttribute="bottom" constant="-1" id="cU4-Ey-zhh"/>
344
- <constraint firstItem="OV8-zN-eBC" firstAttribute="centerX" secondItem="GVX-lW-HfY" secondAttribute="centerX" id="cgh-hQ-pyM"/>
345
- <constraint firstItem="OV8-zN-eBC" firstAttribute="leading" secondItem="crf-eG-EzA" secondAttribute="leading" id="ndV-On-9rx"/>
339
+ <constraint firstItem="OV8-zN-eBC" firstAttribute="leading" secondItem="GYK-Ya-tqt" secondAttribute="leading" id="3o7-8a-7RS"/>
340
+ <constraint firstItem="GYK-Ya-tqt" firstAttribute="top" secondItem="GVX-lW-HfY" secondAttribute="bottom" constant="33" id="CCx-JR-u6A"/>
341
+ <constraint firstItem="GVX-lW-HfY" firstAttribute="centerX" secondItem="OV8-zN-eBC" secondAttribute="centerX" id="SIl-0t-M8I"/>
342
+ <constraint firstAttribute="bottom" secondItem="GYK-Ya-tqt" secondAttribute="bottom" id="W0e-e4-ufT"/>
343
+ <constraint firstItem="GVX-lW-HfY" firstAttribute="top" secondItem="crf-eG-EzA" secondAttribute="top" constant="4" id="Yid-Ex-OUh"/>
344
+ <constraint firstAttribute="trailing" secondItem="GYK-Ya-tqt" secondAttribute="trailing" id="bAy-VR-oPA"/>
345
+ <constraint firstItem="OV8-zN-eBC" firstAttribute="top" secondItem="GVX-lW-HfY" secondAttribute="bottom" constant="4" id="gmF-IM-sHE"/>
346
+ <constraint firstItem="OV8-zN-eBC" firstAttribute="trailing" secondItem="GYK-Ya-tqt" secondAttribute="trailing" id="s61-vN-x8W"/>
347
+ <constraint firstItem="GYK-Ya-tqt" firstAttribute="leading" secondItem="crf-eG-EzA" secondAttribute="leading" id="voM-RN-JoG"/>
346
348
  </constraints>
347
349
  <connections>
348
350
  <outlet property="idLabel" destination="GVX-lW-HfY" id="2ow-P4-Zzw"/>
@@ -377,17 +379,18 @@
377
379
  </view>
378
380
  </subviews>
379
381
  <constraints>
380
- <constraint firstItem="2if-yi-hbe" firstAttribute="trailing" secondItem="alY-XU-nZq" secondAttribute="trailing" id="3uA-bB-MEL"/>
381
- <constraint firstItem="2if-yi-hbe" firstAttribute="top" secondItem="alY-XU-nZq" secondAttribute="bottom" constant="-1" id="6jc-Ur-Zxm"/>
382
- <constraint firstAttribute="trailing" secondItem="2if-yi-hbe" secondAttribute="trailing" id="MBg-IM-GTe"/>
383
- <constraint firstItem="alY-XU-nZq" firstAttribute="top" secondItem="gjh-kq-Dj0" secondAttribute="bottom" constant="4" id="VKe-xu-9zS"/>
384
- <constraint firstItem="gjh-kq-Dj0" firstAttribute="top" secondItem="XJe-fJ-Lbo" secondAttribute="top" constant="4" id="VLV-Wa-Mrd"/>
385
- <constraint firstItem="alY-XU-nZq" firstAttribute="centerX" secondItem="gjh-kq-Dj0" secondAttribute="centerX" id="fYr-fj-I8b"/>
386
- <constraint firstAttribute="bottom" secondItem="2if-yi-hbe" secondAttribute="bottom" id="fhn-gL-oik"/>
387
- <constraint firstItem="alY-XU-nZq" firstAttribute="leading" secondItem="XJe-fJ-Lbo" secondAttribute="leading" id="oT8-Cl-S8Q"/>
388
- <constraint firstItem="2if-yi-hbe" firstAttribute="leading" secondItem="alY-XU-nZq" secondAttribute="leading" id="ske-F5-gO4"/>
382
+ <constraint firstAttribute="trailing" secondItem="2if-yi-hbe" secondAttribute="trailing" id="0bj-JV-yxU"/>
383
+ <constraint firstItem="gjh-kq-Dj0" firstAttribute="centerX" secondItem="alY-XU-nZq" secondAttribute="centerX" id="4CN-Fo-5sC"/>
384
+ <constraint firstAttribute="bottom" secondItem="2if-yi-hbe" secondAttribute="bottom" id="AwH-Y9-mYh"/>
385
+ <constraint firstItem="alY-XU-nZq" firstAttribute="top" secondItem="gjh-kq-Dj0" secondAttribute="bottom" constant="4" id="D1V-Uv-WKW"/>
386
+ <constraint firstItem="2if-yi-hbe" firstAttribute="top" secondItem="gjh-kq-Dj0" secondAttribute="bottom" constant="33" id="FWb-Vb-4zt"/>
387
+ <constraint firstItem="2if-yi-hbe" firstAttribute="leading" secondItem="XJe-fJ-Lbo" secondAttribute="leading" id="H2S-31-L6U"/>
388
+ <constraint firstItem="alY-XU-nZq" firstAttribute="trailing" secondItem="2if-yi-hbe" secondAttribute="trailing" id="NNu-0z-1eX"/>
389
+ <constraint firstItem="alY-XU-nZq" firstAttribute="leading" secondItem="2if-yi-hbe" secondAttribute="leading" id="iVB-cR-jhj"/>
390
+ <constraint firstItem="gjh-kq-Dj0" firstAttribute="top" secondItem="XJe-fJ-Lbo" secondAttribute="top" constant="4" id="mWq-hC-OFa"/>
389
391
  </constraints>
390
392
  <connections>
393
+ <outlet property="idLabel" destination="gjh-kq-Dj0" id="wvu-3I-eqF"/>
391
394
  <outlet property="sliderBaseView" destination="2if-yi-hbe" id="TNI-DO-7z7"/>
392
395
  <outlet property="valueTextField" destination="alY-XU-nZq" id="CmE-pk-FYi"/>
393
396
  <outlet property="viewController" destination="Yhi-Ks-PNF" id="5o6-vD-eJv"/>
@@ -396,22 +399,22 @@
396
399
  </subviews>
397
400
  <color key="backgroundColor" red="0.91372555489999996" green="0.91372555489999996" blue="0.91372555489999996" alpha="1" colorSpace="deviceRGB"/>
398
401
  <constraints>
399
- <constraint firstItem="XJe-fJ-Lbo" firstAttribute="height" secondItem="bhT-mh-qOp" secondAttribute="height" id="1IJ-It-SxQ"/>
400
- <constraint firstItem="bhT-mh-qOp" firstAttribute="leading" secondItem="YVg-78-fdF" secondAttribute="trailing" constant="41" id="EEA-kg-Era"/>
401
- <constraint firstAttribute="trailing" secondItem="crf-eG-EzA" secondAttribute="trailing" constant="18" id="NaZ-TI-9Mj"/>
402
- <constraint firstAttribute="bottom" secondItem="YVg-78-fdF" secondAttribute="bottom" constant="20" symbolic="YES" id="Nss-ZT-qCV"/>
403
- <constraint firstItem="YVg-78-fdF" firstAttribute="width" secondItem="bhT-mh-qOp" secondAttribute="width" id="TSC-7I-ZI4"/>
404
- <constraint firstItem="XJe-fJ-Lbo" firstAttribute="width" secondItem="bhT-mh-qOp" secondAttribute="width" id="YtN-WK-703"/>
405
- <constraint firstItem="YVg-78-fdF" firstAttribute="height" secondItem="bhT-mh-qOp" secondAttribute="height" id="Z6T-y7-BV8"/>
406
- <constraint firstItem="crf-eG-EzA" firstAttribute="top" secondItem="XJe-fJ-Lbo" secondAttribute="top" id="ZG8-yR-eob"/>
407
- <constraint firstItem="YVg-78-fdF" firstAttribute="leading" secondItem="DbN-fh-FRU" secondAttribute="leading" constant="20" id="bt8-6h-bnV"/>
408
- <constraint firstItem="crf-eG-EzA" firstAttribute="width" secondItem="XJe-fJ-Lbo" secondAttribute="width" id="ce8-S2-sZq"/>
409
- <constraint firstItem="YVg-78-fdF" firstAttribute="top" secondItem="DbN-fh-FRU" secondAttribute="top" constant="20" symbolic="YES" id="dcw-SR-Hlu"/>
410
- <constraint firstItem="XJe-fJ-Lbo" firstAttribute="leading" secondItem="bhT-mh-qOp" secondAttribute="trailing" constant="44" id="ehc-Cp-W07"/>
411
- <constraint firstItem="bhT-mh-qOp" firstAttribute="top" secondItem="XJe-fJ-Lbo" secondAttribute="top" id="fLu-pX-Nkg"/>
412
- <constraint firstItem="crf-eG-EzA" firstAttribute="height" secondItem="XJe-fJ-Lbo" secondAttribute="height" id="gC0-Ab-7y8"/>
413
- <constraint firstItem="YVg-78-fdF" firstAttribute="top" secondItem="bhT-mh-qOp" secondAttribute="top" id="sQn-3Q-FWp"/>
414
- <constraint firstItem="crf-eG-EzA" firstAttribute="leading" secondItem="XJe-fJ-Lbo" secondAttribute="trailing" constant="37" id="v1t-dB-ujj"/>
402
+ <constraint firstItem="YVg-78-fdF" firstAttribute="top" secondItem="crf-eG-EzA" secondAttribute="top" id="1o0-yS-UzW"/>
403
+ <constraint firstAttribute="trailing" secondItem="crf-eG-EzA" secondAttribute="trailing" constant="18" id="27D-yB-z26"/>
404
+ <constraint firstItem="YVg-78-fdF" firstAttribute="bottom" secondItem="XJe-fJ-Lbo" secondAttribute="bottom" id="Ecf-q2-cl6"/>
405
+ <constraint firstItem="YVg-78-fdF" firstAttribute="bottom" secondItem="crf-eG-EzA" secondAttribute="bottom" id="HL2-ts-bWL"/>
406
+ <constraint firstItem="bhT-mh-qOp" firstAttribute="leading" secondItem="YVg-78-fdF" secondAttribute="trailing" constant="41" id="IlQ-H5-BQg"/>
407
+ <constraint firstItem="YVg-78-fdF" firstAttribute="bottom" secondItem="bhT-mh-qOp" secondAttribute="bottom" id="R2P-kb-GgV"/>
408
+ <constraint firstItem="XJe-fJ-Lbo" firstAttribute="leading" secondItem="bhT-mh-qOp" secondAttribute="trailing" constant="44" id="aX8-5W-i7u"/>
409
+ <constraint firstAttribute="trailing" secondItem="bhT-mh-qOp" secondAttribute="trailing" constant="179" id="aym-yX-RmK"/>
410
+ <constraint firstItem="YVg-78-fdF" firstAttribute="top" secondItem="DbN-fh-FRU" secondAttribute="top" constant="20" symbolic="YES" id="fvD-v8-pol"/>
411
+ <constraint firstItem="YVg-78-fdF" firstAttribute="leading" secondItem="DbN-fh-FRU" secondAttribute="leading" constant="20" symbolic="YES" id="gh4-qi-yQ4"/>
412
+ <constraint firstAttribute="bottom" secondItem="YVg-78-fdF" secondAttribute="bottom" constant="20" symbolic="YES" id="hTR-21-I9S"/>
413
+ <constraint firstItem="YVg-78-fdF" firstAttribute="top" secondItem="bhT-mh-qOp" secondAttribute="top" id="lZd-Qf-uDf"/>
414
+ <constraint firstAttribute="trailing" secondItem="XJe-fJ-Lbo" secondAttribute="trailing" constant="95" id="s9G-Yh-aLv"/>
415
+ <constraint firstItem="crf-eG-EzA" firstAttribute="leading" secondItem="XJe-fJ-Lbo" secondAttribute="trailing" constant="37" id="tCO-Cl-9lk"/>
416
+ <constraint firstAttribute="trailing" secondItem="YVg-78-fdF" secondAttribute="trailing" constant="260" id="vVR-nE-FOZ"/>
417
+ <constraint firstItem="YVg-78-fdF" firstAttribute="top" secondItem="XJe-fJ-Lbo" secondAttribute="top" id="xIu-VL-cbu"/>
415
418
  </constraints>
416
419
  </view>
417
420
  <toolbarItems/>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: isd-color-palette
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-01-27 00:00:00.000000000 Z
12
+ date: 2014-01-29 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake
@@ -71,7 +71,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
71
71
  version: '0'
72
72
  segments:
73
73
  - 0
74
- hash: -3291040992016044698
74
+ hash: -413852194933584370
75
75
  required_rubygems_version: !ruby/object:Gem::Requirement
76
76
  none: false
77
77
  requirements: