junoser 0.1.2 → 0.1.3

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: afb45884d026aed9f539e62e1cbed461d5441042
4
- data.tar.gz: 29942ad852b60706e1ef6fbe66eeb5434b00ef22
3
+ metadata.gz: a9c221f14ae96fa75f0cb0cef9eca2b74e3ab9cc
4
+ data.tar.gz: 9ce5519b55e8b50cc19a9b0bcf7ed695b67041dd
5
5
  SHA512:
6
- metadata.gz: 853800d07a6960d7c0cf514c4a5c3b552a187f739eb51aceea589adfcef4268dde36d149d1879c6f866e4249db2b197e053a486a9f4986e8e409762332642a64
7
- data.tar.gz: 49f734b22fbe3093aad58b2b037c1560a11d574f65ef546a699f0ce720a520303f8a56c095bf39c2b2e06129603759fca15650191f1984e7a13c551ee46e2e27
6
+ metadata.gz: 56ed9aae415fc5d7b924fb2ffd9a49a48e2236f3d7b68d276b91b4694a568fadf0f547bf57e63ec99e7a976493eede87af7be5f96028bf3c226a550f22a814f0
7
+ data.tar.gz: e31f213acb6846bac6d0747f491426fa4e5c38a3a4243e3e7d93b3bcc1fa6fded76cece689e231fb023dbb5c90c0dec1604b70856aeefe5c4c052c5a2cd653ca
data/README.md CHANGED
@@ -30,7 +30,6 @@ To verify configurations syntax:
30
30
 
31
31
  ```zsh
32
32
  $ junoser -c config.txt
33
- $ cat config.txt | junoser -c
34
33
  ```
35
34
 
36
35
  or
data/Rakefile CHANGED
@@ -2,6 +2,7 @@ require 'bundler/gem_tasks'
2
2
  require 'junoser/development'
3
3
  require 'nokogiri'
4
4
  require 'pathname'
5
+ require 'rake/testtask'
5
6
 
6
7
  xsd_path = File.expand_path('../tmp/junos-system.xsd', Pathname.new(__FILE__).realpath)
7
8
  rule_path = File.expand_path('../tmp/rule.rb', Pathname.new(__FILE__).realpath)
@@ -35,3 +36,11 @@ namespace :build do
35
36
  end
36
37
  end
37
38
  end
39
+
40
+
41
+ Rake::TestTask.new do |t|
42
+ t.verbose = true
43
+ end
44
+
45
+ desc 'Run tests'
46
+ task default: :test