guard 1.5.1 → 1.5.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.
- data/CHANGELOG.md +8 -1
- data/README.md +1 -1
- data/bin/fsevent_watch_guard +0 -0
- data/lib/guard/notifiers/terminal_title.rb +2 -3
- data/lib/guard/version.rb +1 -1
- metadata +4 -8
- data/lib/guard/version.rbc +0 -130
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,9 @@
|
|
1
|
+
## 1.5.2 - 29 October, 2012
|
2
|
+
|
3
|
+
### Bug fix
|
4
|
+
|
5
|
+
- [#353][] Do not modify original message in terminal_title notifier. ([@tomas-zemres][])
|
6
|
+
|
1
7
|
## 1.5.1 - 28 October, 2012
|
2
8
|
|
3
9
|
### Bug fix
|
@@ -630,6 +636,7 @@ The Listen integration has been supervised by [@thibaudgg][] and executed by [@M
|
|
630
636
|
[#345]: https://github.com/guard/guard/issues/345
|
631
637
|
[#348]: https://github.com/guard/guard/issues/348
|
632
638
|
[#351]: https://github.com/guard/guard/issues/351
|
639
|
+
[#353]: https://github.com/guard/guard/issues/353
|
633
640
|
[@Gazer]: https://github.com/Gazer
|
634
641
|
[@Maher4Ever]: https://github.com/Maher4Ever
|
635
642
|
[@alandipert]: https://github.com/alandipert
|
@@ -708,4 +715,4 @@ The Listen integration has been supervised by [@thibaudgg][] and executed by [@M
|
|
708
715
|
[@waldo]: https://github.com/waldo
|
709
716
|
[@wereHamster]: https://github.com/wereHamster
|
710
717
|
[@yannlugrin]: https://github.com/yannlugrin
|
711
|
-
[@zonque]: https://github.com/zonque
|
718
|
+
[@zonque]: https://github.com/zonque
|
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
Guard [](http://travis-ci.org/guard/guard)
|
1
|
+
Guard [](http://travis-ci.org/guard/guard) [](https://gemnasium.com/guard/guard)
|
2
2
|
=====
|
3
3
|
|
4
4
|
Guard is a command line tool to easily handle events on file system modifications.
|
Binary file
|
@@ -22,9 +22,8 @@ module Guard
|
|
22
22
|
# @param [Hash] options additional notification library options
|
23
23
|
#
|
24
24
|
def notify(type, title, message, image, options = { })
|
25
|
-
message.sub
|
26
|
-
|
27
|
-
set_terminal_title("[#{title}] #{message}")
|
25
|
+
first_line = message.sub(/^\n/, '').sub(/\n.*/m, '')
|
26
|
+
set_terminal_title("[#{title}] #{first_line}")
|
28
27
|
end
|
29
28
|
|
30
29
|
def set_terminal_title(text)
|
data/lib/guard/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: guard
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.5.
|
4
|
+
version: 1.5.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: 2012-10-
|
12
|
+
date: 2012-10-29 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: thor
|
@@ -131,6 +131,7 @@ executables:
|
|
131
131
|
extensions: []
|
132
132
|
extra_rdoc_files: []
|
133
133
|
files:
|
134
|
+
- bin/fsevent_watch_guard
|
134
135
|
- bin/guard
|
135
136
|
- images/failed.png
|
136
137
|
- images/guard.png
|
@@ -165,7 +166,6 @@ files:
|
|
165
166
|
- lib/guard/templates/Guardfile
|
166
167
|
- lib/guard/ui.rb
|
167
168
|
- lib/guard/version.rb
|
168
|
-
- lib/guard/version.rbc
|
169
169
|
- lib/guard/watcher.rb
|
170
170
|
- lib/guard.rb
|
171
171
|
- CHANGELOG.md
|
@@ -185,9 +185,6 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
185
185
|
- - ! '>='
|
186
186
|
- !ruby/object:Gem::Version
|
187
187
|
version: '0'
|
188
|
-
segments:
|
189
|
-
- 0
|
190
|
-
hash: 3611864060376759808
|
191
188
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
192
189
|
none: false
|
193
190
|
requirements:
|
@@ -196,9 +193,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
196
193
|
version: 1.3.6
|
197
194
|
requirements: []
|
198
195
|
rubyforge_project: guard
|
199
|
-
rubygems_version: 1.8.
|
196
|
+
rubygems_version: 1.8.23
|
200
197
|
signing_key:
|
201
198
|
specification_version: 3
|
202
199
|
summary: Guard keeps an eye on your file modifications
|
203
200
|
test_files: []
|
204
|
-
has_rdoc:
|
data/lib/guard/version.rbc
DELETED
@@ -1,130 +0,0 @@
|
|
1
|
-
!RBIX
|
2
|
-
9595534255132031488
|
3
|
-
x
|
4
|
-
M
|
5
|
-
1
|
6
|
-
n
|
7
|
-
n
|
8
|
-
x
|
9
|
-
10
|
10
|
-
__script__
|
11
|
-
i
|
12
|
-
28
|
13
|
-
99
|
14
|
-
7
|
15
|
-
0
|
16
|
-
65
|
17
|
-
49
|
18
|
-
1
|
19
|
-
2
|
20
|
-
13
|
21
|
-
99
|
22
|
-
12
|
23
|
-
7
|
24
|
-
2
|
25
|
-
12
|
26
|
-
7
|
27
|
-
3
|
28
|
-
12
|
29
|
-
65
|
30
|
-
12
|
31
|
-
49
|
32
|
-
4
|
33
|
-
4
|
34
|
-
15
|
35
|
-
49
|
36
|
-
2
|
37
|
-
0
|
38
|
-
15
|
39
|
-
2
|
40
|
-
11
|
41
|
-
I
|
42
|
-
6
|
43
|
-
I
|
44
|
-
0
|
45
|
-
I
|
46
|
-
0
|
47
|
-
I
|
48
|
-
0
|
49
|
-
n
|
50
|
-
p
|
51
|
-
5
|
52
|
-
x
|
53
|
-
5
|
54
|
-
Guard
|
55
|
-
x
|
56
|
-
11
|
57
|
-
open_module
|
58
|
-
x
|
59
|
-
15
|
60
|
-
__module_init__
|
61
|
-
M
|
62
|
-
1
|
63
|
-
n
|
64
|
-
n
|
65
|
-
x
|
66
|
-
5
|
67
|
-
Guard
|
68
|
-
i
|
69
|
-
12
|
70
|
-
5
|
71
|
-
66
|
72
|
-
65
|
73
|
-
7
|
74
|
-
0
|
75
|
-
7
|
76
|
-
1
|
77
|
-
64
|
78
|
-
49
|
79
|
-
2
|
80
|
-
2
|
81
|
-
11
|
82
|
-
I
|
83
|
-
3
|
84
|
-
I
|
85
|
-
0
|
86
|
-
I
|
87
|
-
0
|
88
|
-
I
|
89
|
-
0
|
90
|
-
n
|
91
|
-
p
|
92
|
-
3
|
93
|
-
x
|
94
|
-
7
|
95
|
-
VERSION
|
96
|
-
s
|
97
|
-
5
|
98
|
-
1.3.1
|
99
|
-
x
|
100
|
-
9
|
101
|
-
const_set
|
102
|
-
p
|
103
|
-
3
|
104
|
-
I
|
105
|
-
2
|
106
|
-
I
|
107
|
-
3
|
108
|
-
I
|
109
|
-
c
|
110
|
-
x
|
111
|
-
52
|
112
|
-
/Users/michi/Repositories/guard/lib/guard/version.rb
|
113
|
-
p
|
114
|
-
0
|
115
|
-
x
|
116
|
-
13
|
117
|
-
attach_method
|
118
|
-
p
|
119
|
-
3
|
120
|
-
I
|
121
|
-
0
|
122
|
-
I
|
123
|
-
1
|
124
|
-
I
|
125
|
-
1c
|
126
|
-
x
|
127
|
-
52
|
128
|
-
/Users/michi/Repositories/guard/lib/guard/version.rb
|
129
|
-
p
|
130
|
-
0
|