derelict 0.5.1.travis.140 → 0.5.1.travis.143
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/lib/derelict/parser/plugin_list.rb +5 -5
- data/spec/derelict/parser/plugin_list_spec.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
OWE2NjhlMzVhNWM5YmM4ZTcyZDFlNzc2N2QyN2Y4OTYzYzNjZThhYg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NjYxNWZhMDZlMWRmYjUxMjM2ZjIyZmNmZWVlZTIxYTBlYjMzZjIxMg==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NDg0ODhmYWQ4YTZiY2YyYzY3MTBiNzRmY2MwM2EyMzBmYzc5YTRhODI4MTc4
|
10
|
+
MTEyNjQ5OTM5YTQ1MDc4M2EzOGY0ZTRiNzlhMTc2MjhlYzZhOTJlMTUzMDEw
|
11
|
+
ZWM5NjM1YTEyYTMwMTNlZjQxZDY2ZDI3ZTZmNjIwYjdiNWEwZTQ=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
M2JjZTA0MzQwZmIwNzc3NTVjYzgyOWQ0NThjNDM5OWY2NzA5YjdkMzliYjdi
|
14
|
+
YWRkZTZjMDQ4MTQ3MmQ0MzNmZmI3ZTZjMTQxYTgzOTE0MmVmYTNkNTIwYmZk
|
15
|
+
YzE3ODY1Nzk2NjMzNGIxYTBmYzgyYzU1MGUyMDdkYzQxNTgwYWQ=
|
@@ -14,11 +14,11 @@ module Derelict
|
|
14
14
|
# 1. Plugin name, as listed in the output
|
15
15
|
# 2. Currently installed version (without surrounding brackets)
|
16
16
|
PARSE_PLUGIN = %r[
|
17
|
-
^(.*)
|
18
|
-
\
|
19
|
-
\(([0-9\-_.]+)
|
20
|
-
$
|
21
|
-
]x
|
17
|
+
^(.*) # Plugin name starts at the start of the line.
|
18
|
+
\ # Version is separated by a space character,
|
19
|
+
\(([0-9\-_.]+)(, .*)?\) # contains version string surrounded by brackets
|
20
|
+
$ # at the end of the line.
|
21
|
+
]x # Ignore whitespace to allow these comments.
|
22
22
|
|
23
23
|
# Regexp to determine whether plugins need to be reinstalled
|
24
24
|
NEEDS_REINSTALL = %r[
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: derelict
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.1.travis.
|
4
|
+
version: 0.5.1.travis.143
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brad Feehan
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-05-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: log4r
|