clipboard_manager 1.0.2 → 1.0.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9d15ad1a4cb7b8e9c785a3cd485d4b477cd8016e
4
- data.tar.gz: 394fcf2189bdbf7773b8733eb72a236bd2590336
3
+ metadata.gz: fd7c96d3337a32596aa3c9edca847d3e0ee754fa
4
+ data.tar.gz: 5888c6a36f93e53f6935b2cb579bf62c9d26575f
5
5
  SHA512:
6
- metadata.gz: 7f17023fb4a17596d96497b75e07ff13edef85525318f32770697b405cfd35f4fc488957be5d1db7cb137c840ca3be07a7f8b3c26e89c1cd4395833284505563
7
- data.tar.gz: 972cf3488a31da6684bebccb359c4e4d7eb9b0c9f75b8e4547747d9e81aa8daf992c8fe368543dd459540a69aa09150f77976df2b92c111db29030da48e3385f
6
+ metadata.gz: 04e76712c9daca7a30a6976f639e5fb13043da6566cb863b3237e2300821081f98c1744d9a0ff47fcfe7f996a997afe94ac444d28bfe50ad276ed096340d8609
7
+ data.tar.gz: f9bb737b8636e1162002528e1b24aaad294f958dbc21ac24b57c096bae40d4e9fa4d40647e7ff2b6cc94a017ba3205af0dceb4513cda0c762c0de32f4d1e7ad1
data/data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.2
1
+ 1.0.3
@@ -1,3 +1,3 @@
1
1
  module ClipboardManager
2
- VERSION = '1.0.2'
2
+ VERSION = '1.0.3'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: clipboard_manager
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - carlosjhr64
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-12-13 00:00:00.000000000 Z
11
+ date: 2014-12-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gtk3app
@@ -16,20 +16,20 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '1.0'
19
+ version: '1.2'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 1.0.0
22
+ version: 1.2.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
27
  - - "~>"
28
28
  - !ruby/object:Gem::Version
29
- version: '1.0'
29
+ version: '1.2'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 1.0.0
32
+ version: 1.2.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: helpema
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -39,7 +39,7 @@ dependencies:
39
39
  version: '0.0'
40
40
  - - ">="
41
41
  - !ruby/object:Gem::Version
42
- version: 0.0.0
42
+ version: 0.0.1
43
43
  type: :runtime
44
44
  prerelease: false
45
45
  version_requirements: !ruby/object:Gem::Requirement
@@ -49,7 +49,7 @@ dependencies:
49
49
  version: '0.0'
50
50
  - - ">="
51
51
  - !ruby/object:Gem::Version
52
- version: 0.0.0
52
+ version: 0.0.1
53
53
  description: |
54
54
  Ruby Gtk3App Clipboard Manager.
55
55
  email: carlosjhr64@gmail.com
@@ -59,7 +59,6 @@ extra_rdoc_files:
59
59
  - README.rdoc
60
60
  files:
61
61
  - README.rdoc
62
- - config/config.yml
63
62
  - data/VERSION
64
63
  - data/logo.png
65
64
  - data/nope.png
data/config/config.yml DELETED
@@ -1,123 +0,0 @@
1
- ---
2
- :Help: |
3
- Usage: gtk3app clipboardmanager [options]
4
- Options:
5
- --ask Ask for confirmation.
6
- --running Start in active mode.
7
- Default for options is true,
8
- use no-ask and no-running for false.
9
- :StatusTimeOut: 3
10
- :Sleep: 750
11
- :MaxHistory: 13
12
- :MaxString: 60
13
- :QrcTimeOut: 3
14
- :IsPwd: |-
15
- \A
16
- (?!\w+:\/\/) # not like url
17
- (?!\/[a-z]+\/[a-z]) # not like linux path
18
- (?![a-z]+\/[a-z]+\/) # not like relative path
19
- (?=.*\d) # at least on diget
20
- (?=.*[a-z]) # at least one lower case letter
21
- (?=.*[A-Z]) # at least one upper case letter
22
- (?=.*[^\w\s]) # at least one special character
23
- .{4,43}$ # 4 to 43 in length
24
- \Z
25
- :Working: "/home/fox/.local/share/gtk3app/clipboardmanager/working.png"
26
- :Ok: "/home/fox/.local/share/gtk3app/clipboardmanager/ok.png"
27
- :Nope: "/home/fox/.local/share/gtk3app/clipboardmanager/nope.png"
28
- :Ready: "/home/fox/.local/share/gtk3app/clipboardmanager/ready.png"
29
- :Off: "/home/fox/.local/share/gtk3app/clipboardmanager/off.png"
30
- :thing:
31
- :HelpFile: https://github.com/carlosjhr64/clipboard_manager
32
- :Logo: "/home/fox/.local/share/gtk3app/clipboardmanager/logo.png"
33
- :about_dialog:
34
- :set_program_name: Clipboard Manager
35
- :set_version: 1.0.2
36
- :set_copyright: "(c) 2014 CarlosJHR64"
37
- :set_comments: 'A Ruby Gtk3App Clipboard Manager '
38
- :set_website: https://github.com/carlosjhr64/clipboard_manager
39
- :set_website_label: See it at GitHub!
40
- :DO_TOGGLE:
41
- - Toggle On/Off
42
- :do_toggle!:
43
- - :DO_TOGGLE
44
- - activate
45
- :DO_HISTORY:
46
- - History
47
- :do_history!:
48
- - :DO_HISTORY
49
- - activate
50
- :DO_QRCODE:
51
- - QR-Code
52
- :do_qrcode!:
53
- - :DO_QRCODE
54
- - activate
55
- :window:
56
- :set_title: Clipboard Manager
57
- :set_window_position: :center
58
- :VBOX:
59
- - :vertical
60
- :vbox: &1 {}
61
- :vbox!:
62
- - :VBOX
63
- - :vbox
64
- :ASK:
65
- - Ask For Confirmation
66
- :ask: *1
67
- :ask!:
68
- - :ASK
69
- - :ask
70
- :RUNNING:
71
- - On/Off
72
- :running: *1
73
- :running!:
74
- - :RUNNING
75
- - :running
76
- :TASKS:
77
- - 'Tasks:'
78
- :tasks: *1
79
- :tasks!:
80
- - :TASKS
81
- - :tasks
82
- :HISTORY_BUTTON:
83
- - :label: History
84
- :history_button: *1
85
- :history_button!:
86
- - :HISTORY_BUTTON
87
- - :history_button
88
- :HISTORY_DIALOG: &2 []
89
- :history_dialog:
90
- :set_window_position: :center
91
- :history_dialog!:
92
- - :HISTORY_DIALOG
93
- - :history_dialog
94
- :HISTORY_COMBO: *2
95
- :history_combo: *1
96
- :history_combo!:
97
- - :HISTORY_COMBO
98
- - :history_combo
99
- :QRCODE_BUTTON:
100
- - :label: QR-Code
101
- :qrcode_button: *1
102
- :qrcode_button!:
103
- - :QRCODE_BUTTON
104
- - :qrcode_button
105
- :QUESTION_DIALOG: *2
106
- :question_dialog:
107
- :set_window_position: :center
108
- :set_keep_above: true
109
- :question_dialog!:
110
- - :question_dialog
111
- - :QUESTION_DIALOG
112
- :tasks:
113
- :mplayer:
114
- - "(https?://www\\.youtube\\.com/watch\\?v=[\\w\\-]+)"
115
- - :bashit
116
- - wget --quiet -O - $(youtube-dl -f 5/36/17/18 -g '$1') | mplayer -really-quiet
117
- -cache 8192 -cache-min 1 -
118
- :firefox:
119
- - "^https?://www.amazon.com/"
120
- - :firefox
121
- :espeak:
122
- - ".{80,}"
123
- - :espeak