pinpress 1.3.0 → 1.3.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/HISTORY.md +4 -0
- data/lib/pinpress/constants.rb +1 -1
- data/lib/pinpress.rb +8 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bfe947ad09fb8eeb8f5fadbaa49c76655dc435dc
|
4
|
+
data.tar.gz: af23be52bb1e1e7ca49a3170c7016a1e92805650
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3052d9f73da751df0cd2f37fd117e22790c0767923b23ffa8bbd96ff304501d8658281abeb8dad30451e20a42fcece938fa4eb9e8127a1a394c14131c7a83cc4
|
7
|
+
data.tar.gz: 33d65f16f60c27637aebce97cba005cadb8e0792fae3055052aac1ffd8108035bafbc38e5ff357c25122ff7918eeef01a61b0cc4a169e046f8e3bec5150c8dc9
|
data/HISTORY.md
CHANGED
data/lib/pinpress/constants.rb
CHANGED
data/lib/pinpress.rb
CHANGED
@@ -144,7 +144,10 @@ module PinPress
|
|
144
144
|
messenger.section('AVAILABLE PIN TEMPLATES:')
|
145
145
|
if pin_templates
|
146
146
|
pin_templates.each_with_index do |template, index|
|
147
|
-
|
147
|
+
puts "#{ index + 1 }.\tName: ".blue + "#{ template[:name] }"
|
148
|
+
puts "Opener:".blue.rjust(22) + "\t#{ template[:opener] }".truncate(80)
|
149
|
+
puts "Item:".blue.rjust(22) + "\t#{ template[:item] }".truncate(80)
|
150
|
+
puts "Closer:".blue.rjust(22) + "\t#{ template[:closer] }".truncate(80)
|
148
151
|
end
|
149
152
|
else
|
150
153
|
messenger.warn('No templates defined...')
|
@@ -153,7 +156,10 @@ module PinPress
|
|
153
156
|
messenger.section('AVAILABLE TAG TEMPLATES:')
|
154
157
|
if tag_templates
|
155
158
|
tag_templates.each_with_index do |template, index|
|
156
|
-
|
159
|
+
puts "#{ index + 1 }.\tName: ".blue + "#{ template[:name] }"
|
160
|
+
puts "Opener:".blue.rjust(22) + "\t#{ template[:opener] }".truncate(80)
|
161
|
+
puts "Item:".blue.rjust(22) + "\t#{ template[:item] }".truncate(80)
|
162
|
+
puts "Closer:".blue.rjust(22) + "\t#{ template[:closer] }".truncate(80)
|
157
163
|
end
|
158
164
|
else
|
159
165
|
messenger.warn('No templates defined...')
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pinpress
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aaron Bach
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-05-
|
11
|
+
date: 2014-05-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aruba
|