junoser 0.2.13 → 0.3.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1e741dcc03fd4d6b29e6917a89eded5a3b35aef3
4
- data.tar.gz: d8bee46db066fd168e9c2a64e080339aecdd9603
3
+ metadata.gz: 5bbbf4cbf8b352da5a17d9ad7892d3fa06841ec9
4
+ data.tar.gz: fc30976c13fd9d3d4f87369f4494b4e0561d353c
5
5
  SHA512:
6
- metadata.gz: 45fc573f66400636972edfae087999c6be4da32034d0b0d2b6b74a71bb1073a412d82bca720e2f2890334548a55dcb478b11fcd62b0d6c56b5bf6804fb594791
7
- data.tar.gz: b2c3460bcc424834604bc4d6449ca7cf96000ba3b83a4b10fe30f60a89978a9d059bbb53412fadbd420c70ea4c65d99abaa62309161016cc1a8acb3e7ce0357d
6
+ metadata.gz: 594422e8d706bed8b741216bdb2628a004505ebcd5fd277695877e63e5230e2ecd5898f0f47fe12491a5473042a017bda7029940f57352d03b53fe08d34dde7f
7
+ data.tar.gz: 63d495c8afc1fbd706039429b1f603bfa9644e8976556677926aebfbe99d560be83bacdb1670da27ef15a20df804c2bf290e8b2e35ab1ef7a044f30aa9902116
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.3.0 / 2017-10-26
2
+
3
+ * First release based on JUNOS 17.2R1.13 of vMX
4
+
1
5
  ## 0.2.13 / 2017-10-13
2
6
 
3
7
  * Bug fix
data/Rakefile CHANGED
@@ -4,9 +4,9 @@ require 'nokogiri'
4
4
  require 'pathname'
5
5
  require 'rake/testtask'
6
6
 
7
- xsd_path = File.expand_path('../tmp/junos-system-12.1.xsd', Pathname.new(__FILE__).realpath)
8
- rule_path = File.expand_path('../tmp/rule.rb', Pathname.new(__FILE__).realpath)
9
- parser_path = File.expand_path('../lib/junoser/parser.rb', Pathname.new(__FILE__).realpath)
7
+ xsd_path = File.join(__dir__, 'tmp/junos-system-17.2.xsd')
8
+ rule_path = File.join(__dir__, 'tmp/rule.rb')
9
+ parser_path = File.join(__dir__, 'lib/junoser/parser.rb')
10
10
 
11
11
  def open_files(input, output, &block)
12
12
  i = open(input)
@@ -39,6 +39,8 @@ end
39
39
 
40
40
 
41
41
  Rake::TestTask.new do |t|
42
+ t.libs << 'test'
43
+
42
44
  t.verbose = true
43
45
  t.warning = false
44
46
  end