fig 1.21.1.beta.1 → 1.21.1.beta.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.
- checksums.yaml +4 -4
- data/Changes +9 -0
- data/lib/fig.rb +1 -1
- data/lib/fig/deparser.rb +1 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 320e4474ad2c4e0d49104a3f2b5808ee11c12ebc
|
|
4
|
+
data.tar.gz: ada386eec00766cb51a7df6a01356dd403e10065
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a815c4f010a2603492fb41c0901afd3c83f04b7e77909e125756dbdbb52d8cedc6fee087b6543baf7ae07c3adfb75164b5dfdbc452d29e16a7bb7faa9b1c1a2a
|
|
7
|
+
data.tar.gz: 0de6c0c7d8ca0cbb43b33b5e09eb46ed0d9f903ba037341424606a0087b6f2890f20c37709f710971e60a06714cdacae9c7c3ca341d2e708bcf6d6e41bbc8c87
|
data/Changes
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
v1.21.1.beta.2 - 2014/11/18
|
|
2
|
+
|
|
3
|
+
New feature:
|
|
4
|
+
|
|
5
|
+
- Given the existence of the --add option, there's no reason for path
|
|
6
|
+
statements in published packages to use "append", so they now use "add".
|
|
7
|
+
Yes, this is shifting one confusing bit of Fig for a slight complication,
|
|
8
|
+
but the complication already existed.
|
|
9
|
+
|
|
1
10
|
v1.21.1.beta.1 - 2014/11/17
|
|
2
11
|
|
|
3
12
|
Bug fixes:
|
data/lib/fig.rb
CHANGED
data/lib/fig/deparser.rb
CHANGED
|
@@ -179,9 +179,7 @@ module Fig::Deparser
|
|
|
179
179
|
end
|
|
180
180
|
|
|
181
181
|
def path(statement)
|
|
182
|
-
|
|
183
|
-
# option is "--append", I'm not going to.
|
|
184
|
-
environment_variable(statement, 'append')
|
|
182
|
+
environment_variable(statement, 'add')
|
|
185
183
|
|
|
186
184
|
return
|
|
187
185
|
end
|
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.21.1.beta.
|
|
4
|
+
version: 1.21.1.beta.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matthew Foemmel
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-11-
|
|
11
|
+
date: 2014-11-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: colorize
|