dev 2.0.100 → 2.0.101

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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/commands.rb +19 -0
  3. metadata +2 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 58cc124b47263409cda163a8b9b4291118dcc773
4
- data.tar.gz: caf6fd96371112b0d3274fa46b06f1d2f033d880
3
+ metadata.gz: cdbcb916d87a6dbad13276dc59c9c176ba772d9f
4
+ data.tar.gz: 28bf141f3eda5dff9fe461d5d2b74e8a4d9b36ab
5
5
  SHA512:
6
- metadata.gz: bc691db4f918c25fbde92e53ab23b6b75ff60c5bb4ef95e703f02067ec7ca0fb78e878e96d1e96463b3cd190c05633af5f6046e10c5a1ecf483710c6c43ad464
7
- data.tar.gz: c47e969696e69d8324469608ad13b110d16defaabeb909b2e151f4a9d4cc53342f7fa0a90fc8b360442cf9eecb74b7b08ee9431ec92e48b220b296157363e336
6
+ metadata.gz: 56001a823281b8bf8f4a6f51b1cf1618eca31dddd8e1f15128b9e320b8e49d51043b3f9ca2781b5670008791335e429e6a9b4b7aa668ddd2a7f838d8bdf2847c
7
+ data.tar.gz: b00e86791c27cecfc3cac2608652b818964a1c1c1a487ac21eefa542b52fb20ae5ee72bd602b62856bf45c8fe4da104b3e715895ecc6ad9d271aa8ce43d517ff
data/lib/commands.rb ADDED
@@ -0,0 +1,19 @@
1
+ require 'json'
2
+ require 'rake/clean'
3
+
4
+ CLOBBER.include('*.gem')
5
+
6
+ SOURCE=FileList.new('LICENSE','README','README.md',"Gemfile")
7
+ SOURCE.include('*.{gitignore,yml,gemspec}')
8
+ SOURCE.include('**/*.{rb}')
9
+ SOURCE.include('**/*.{cs}')
10
+ SOURCE.include('**/*.{c,h}')
11
+ SOURCE.include('**/*.{cpp,hpp}')
12
+
13
+ Dir.glob("#{File.dirname(__FILE__)}/commands/*.rb").each{|rb|
14
+ require(rb)
15
+ }
16
+
17
+
18
+ COMMANDS=Commands.new
19
+ MSBUILD=MSBuild.new
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dev
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.100
4
+ version: 2.0.101
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lou Parslow
@@ -32,6 +32,7 @@ extra_rdoc_files: []
32
32
  files:
33
33
  - LICENSE
34
34
  - lib/command.rb
35
+ - lib/commands.rb
35
36
  - lib/commands/add.rb
36
37
  - lib/commands/analyze.rb
37
38
  - lib/commands/array.rb