derelict 0.1.1.travis.48 → 0.1.1.travis.51
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 +8 -8
- data/derelict.gemspec +14 -13
- metadata +11 -9
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
NzkzNTQ5ZWExZDY3N2YxZDViOTBjNTU1YzliODhmYWJhNDQ0ZjE3OA==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
Yzk0ODI4NmEyNWFmZDIxZjE2YjYyM2YxMTdjZmFiZmVmNGU1NTAxNQ==
|
|
7
7
|
!binary "U0hBNTEy":
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
NjI5ODQ0OTlhYzVkZDgyN2Q2ODFlNmRjNWM2NjA5YjE0ZTY2YzhkMmVhYzdl
|
|
10
|
+
ZjhjOWRhYjFjNzQ4NmFmM2U0Y2Y1MTQ5YWNlYzJlYjY1OTkzMmEzYmZlOGJm
|
|
11
|
+
Yjg5YTViYjAzODZlMGY1ZDhhMTk4Yjg2OGNhMDVlNjE2OTBlNDQ=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
MGVkNDExMzQwZmNmNjY2YjY0ZDM1MzAwY2U5NDViYWU2NmYyMzE1M2NkNTAz
|
|
14
|
+
OTdjZWYwMjcwZWU0NzMxODY1NzA2YjliYjZmMjRhZmI5NmRhYjllYjJkZWE1
|
|
15
|
+
NDMzZjM2Mjg4YjdhOWUyZTY3ZDllOTk5ZDE1OGZkZWE4YjU4NGE=
|
data/derelict.gemspec
CHANGED
|
@@ -8,19 +8,20 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.version = Derelict::VERSION
|
|
9
9
|
spec.authors = ["Brad Feehan"]
|
|
10
10
|
spec.email = ["git@bradfeehan.com"]
|
|
11
|
-
spec.description =
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
11
|
+
spec.description = <<-END.strip.gsub(/ +/, " ").gsub(/^ /, "")
|
|
12
|
+
Provides a Ruby API to control Vagrant where Vagrant is \
|
|
13
|
+
installed via the Installer package on Mac OS X.
|
|
14
|
+
|
|
15
|
+
Vagrant was historically available as a gem, naturally \
|
|
16
|
+
providing a Ruby API to control Vagrant in other Ruby libraries \
|
|
17
|
+
and applications. However, since version 1.1.0, Vagrant is \
|
|
18
|
+
distributed exclusively using an Installer package. To control \
|
|
19
|
+
Vagrant when it's installed this way, other Ruby libraries and \
|
|
20
|
+
applications typically need to invoke the Vagrant binary, which \
|
|
21
|
+
requires forking a new process and parsing its output using \
|
|
22
|
+
string manipulation.
|
|
23
|
+
END
|
|
24
|
+
|
|
24
25
|
spec.summary =
|
|
25
26
|
"Ruby API for Vagrant installed via Installer package on Mac OS X."
|
|
26
27
|
spec.homepage = "https://github.com/bradfeehan/derelict"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: derelict
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.1.travis.
|
|
4
|
+
version: 0.1.1.travis.51
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brad Feehan
|
|
@@ -150,14 +150,16 @@ dependencies:
|
|
|
150
150
|
- - ! '>='
|
|
151
151
|
- !ruby/object:Gem::Version
|
|
152
152
|
version: '0'
|
|
153
|
-
description: ! '
|
|
154
|
-
via the Installer package on Mac OS X
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
Ruby libraries and applications
|
|
159
|
-
|
|
160
|
-
|
|
153
|
+
description: ! 'Provides a Ruby API to control Vagrant where Vagrant is installed
|
|
154
|
+
via the Installer package on Mac OS X.
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
Vagrant was historically available as a gem, naturally providing a Ruby API to control
|
|
158
|
+
Vagrant in other Ruby libraries and applications. However, since version 1.1.0,
|
|
159
|
+
Vagrant is distributed exclusively using an Installer package. To control Vagrant
|
|
160
|
+
when it''s installed this way, other Ruby libraries and applications typically need
|
|
161
|
+
to invoke the Vagrant binary, which requires forking a new process and parsing its
|
|
162
|
+
output using string manipulation.'
|
|
161
163
|
email:
|
|
162
164
|
- git@bradfeehan.com
|
|
163
165
|
executables: []
|