fig 1.24.1.beta.3 → 1.25.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Changes +25 -39
- data/lib/fig.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7e4ba532ae69a9f015857a75087711f0035b8e1f
|
4
|
+
data.tar.gz: 14aa4ca9bbc5f675aca7adb3e4fe51a5e53c27aa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4e141cbf1cb3c2674a63983bb292d7ee2139cf019f793b0e7dfcbc778bcafae9907a4699e528700e669557d3f90005b44f5f57929fb0819b575592bee48e7b94
|
7
|
+
data.tar.gz: 5cfcd0e44465230489fa2c260970f13c79c5ae978834824626fa25e438bf2c9ea717958085c105eefb8a38c5e7110e16e1bc1b027ebb8871b39d83a12df99320
|
data/Changes
CHANGED
@@ -1,64 +1,50 @@
|
|
1
|
-
v1.
|
2
|
-
|
3
|
-
Bug fixes:
|
4
|
-
|
5
|
-
- Fixed potential package version data collapsing in --yaml and --json
|
6
|
-
output.
|
7
|
-
|
8
|
-
- The --list-dependencies and --list-variables options now work with packages
|
9
|
-
brought in via an include-file statement.
|
10
|
-
|
11
|
-
Miscellaneous:
|
12
|
-
|
13
|
-
- Fig now refuses to use the --list-all-configs option with --graphviz,
|
14
|
-
--yaml, and --json options. The results were non-sensical in the face of
|
15
|
-
overrides and other conflicts between peer base configs.
|
16
|
-
|
17
|
-
- Display file names instead of "<unpublished>" for unnamed packages.
|
18
|
-
|
19
|
-
v1.24.1.beta.2 - 2015/04/24
|
20
|
-
|
21
|
-
Bug fix:
|
22
|
-
|
23
|
-
- Fixed crash when combining --list-all-configs with JSON and YAML output.
|
24
|
-
|
25
|
-
Miscellaneous:
|
26
|
-
|
27
|
-
- Renamed --list-yaml & --list-json to --yaml & --json to make them more
|
28
|
-
consistent with the existing --graphviz.
|
29
|
-
|
30
|
-
v1.24.1.beta.1 - 2015/04/23
|
1
|
+
v1.25.0 - 2015/05/11
|
31
2
|
|
32
3
|
Announcement:
|
33
4
|
|
34
5
|
- This is the final version that will support Ruby 1.9.x. The next version
|
35
6
|
will require Ruby 2.0.0.
|
36
7
|
|
37
|
-
Bug
|
8
|
+
Bug fixes:
|
9
|
+
|
10
|
+
- The --list-dependencies and --list-variables options now work with packages
|
11
|
+
brought in via an include-file statement.
|
38
12
|
|
39
13
|
- No longer crashes when using --graphviz, --list-tree, or --list-all-configs
|
40
14
|
without any other options. Thanks to Matt Godbolt for the report.
|
41
15
|
|
42
16
|
New features:
|
43
17
|
|
44
|
-
- New --
|
45
|
-
|
18
|
+
- New --yaml option to get --list-dependencies and --list-variables to emit
|
19
|
+
their data as YAML (http://yaml.org).
|
46
20
|
|
47
|
-
- New --
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
21
|
+
- New --json option to get --list-dependencies and --list-variables to emit
|
22
|
+
their data as JSON (http://json.org). Note that JSON isn't exactly ideal
|
23
|
+
for representing the directed acyclic graph that even a mildly complicated
|
24
|
+
set of dependencies can result in and you can end up with large amounts
|
25
|
+
of duplicate data in the output. If you can handle parsing YAML, you are
|
26
|
+
probably better off with that.
|
53
27
|
|
54
28
|
Miscellaneous:
|
55
29
|
|
30
|
+
- Fig now refuses to use the --list-all-configs option with --graphviz,
|
31
|
+
--yaml, and --json options. The results were non-sensical in the face of
|
32
|
+
overrides and other conflicts between peer base configs.
|
33
|
+
|
34
|
+
- Display file names instead of "<unpublished>" for unnamed packages.
|
35
|
+
|
56
36
|
- Small tweaks to --publish-comment and --publish-comment-file handling to
|
57
37
|
remove some trailing whitespace when there are blank lines in the input.
|
58
38
|
|
59
39
|
- A blank line is added after grammar statements in published packages in
|
60
40
|
order to seperate them from other statements.
|
61
41
|
|
42
|
+
v1.24.1.beta.3 - 2015/04/27
|
43
|
+
v1.24.1.beta.2 - 2015/04/24
|
44
|
+
v1.24.1.beta.1 - 2015/04/23
|
45
|
+
|
46
|
+
- Test releases.
|
47
|
+
|
62
48
|
v1.24.0 - 2015/01/13
|
63
49
|
|
64
50
|
New feature:
|
data/lib/fig.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fig
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.25.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matthew Foemmel
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-05-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: colorize
|
@@ -405,9 +405,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
405
405
|
version: 1.9.2
|
406
406
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
407
407
|
requirements:
|
408
|
-
- - "
|
408
|
+
- - ">="
|
409
409
|
- !ruby/object:Gem::Version
|
410
|
-
version:
|
410
|
+
version: '0'
|
411
411
|
requirements: []
|
412
412
|
rubyforge_project:
|
413
413
|
rubygems_version: 2.2.2
|