pinpress 1.2.1 → 1.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/HISTORY.md +4 -0
- data/README.md +5 -7
- data/lib/pinpress/constants.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 83ccc8144066f655e2b17a30f05ce1f9e0d3802a
|
|
4
|
+
data.tar.gz: bacd08125f3c4f14638598c40436605680966614
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c0cad134fa4ee12431114767df32c935e2a936e642b1984d0d122201d8f9e2581346cdb6c7b18a50b846e4708e9f7fe4b2f8bd98135f0ab7bca59f045bc06802
|
|
7
|
+
data.tar.gz: 6551a7cb8d75cd7310110d1fe72c2a177c142a7bb01650c117f1e2483be6c25bd52ee25d4909b6effa3c83172ff65d9b35f210d9c79c1019ee06ed7beb9ec14d
|
data/HISTORY.md
CHANGED
data/README.md
CHANGED
|
@@ -34,7 +34,7 @@ SYNOPSIS
|
|
|
34
34
|
pinpress [global options] command [command options] [arguments...]
|
|
35
35
|
|
|
36
36
|
VERSION
|
|
37
|
-
1.2.
|
|
37
|
+
1.2.2
|
|
38
38
|
|
|
39
39
|
GLOBAL OPTIONS
|
|
40
40
|
--help - Show this message
|
|
@@ -122,13 +122,11 @@ $ pinpress pins -t "ruby,cli"
|
|
|
122
122
|
|
|
123
123
|
## Getting Pins Created Since Last Run
|
|
124
124
|
|
|
125
|
-
Every time you run `pinpress pins`, the current date is added to `~/.pinpress`. Because of this, running:
|
|
126
|
-
|
|
127
125
|
```bash
|
|
128
126
|
$ pinpress pins last
|
|
129
127
|
```
|
|
130
128
|
|
|
131
|
-
...will get all the pins created since that
|
|
129
|
+
...will get all the pins created since you last ran that command (e.g., if you'd last run `pinpress pins` on 2014-01-01, this command would return all pins created from 2014-01-02 onward).
|
|
132
130
|
|
|
133
131
|
# Getting Tags
|
|
134
132
|
|
|
@@ -178,13 +176,11 @@ $ pinpress tags -t 'tag1,tag2' -s 2014-01-01
|
|
|
178
176
|
|
|
179
177
|
## Getting Tags Used Since Last Run
|
|
180
178
|
|
|
181
|
-
Every time you run `pinpress tags`, the current date is added to `~/.pinpress`. Because of this, running:
|
|
182
|
-
|
|
183
179
|
```bash
|
|
184
180
|
$ pinpress tags last
|
|
185
181
|
```
|
|
186
182
|
|
|
187
|
-
...will get all the tags used since
|
|
183
|
+
...will get all the tags used since you last ran the command (e.g., if you'd last run `pinpress tags` on 2014-01-01, this command would return all tags used from 2014-01-02 onward).
|
|
188
184
|
|
|
189
185
|
# Templates
|
|
190
186
|
|
|
@@ -405,6 +401,8 @@ pinpress:
|
|
|
405
401
|
log_level: WARN
|
|
406
402
|
version: 1.1.1
|
|
407
403
|
api_token: bachya:b819312cf9ccee799b87
|
|
404
|
+
last_pins_run: 2014-04-29
|
|
405
|
+
last_tags_run: 2014-04-29
|
|
408
406
|
pin_templates:
|
|
409
407
|
- name: pinpress_default
|
|
410
408
|
opener: >
|
data/lib/pinpress/constants.rb
CHANGED
|
@@ -12,7 +12,7 @@ module PinPress
|
|
|
12
12
|
pin and tag templates in almost any conceivable format.)
|
|
13
13
|
|
|
14
14
|
# The last version to require a config update
|
|
15
|
-
NEWEST_CONFIG_VERSION = '1.1
|
|
15
|
+
NEWEST_CONFIG_VERSION = '1.2.1'
|
|
16
16
|
|
|
17
17
|
# Hash of preference files
|
|
18
18
|
PREF_FILES = {
|
|
@@ -28,5 +28,5 @@ module PinPress
|
|
|
28
28
|
SUMMARY = 'A simple CLI to create HTML templates of Pinboard data.'
|
|
29
29
|
|
|
30
30
|
# The Gem's version
|
|
31
|
-
VERSION = '1.2.
|
|
31
|
+
VERSION = '1.2.2'
|
|
32
32
|
end
|