dev 1.0.88 → 1.0.89

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 (2) hide show
  1. data/lib/dev/BoostBuild.rb +12 -0
  2. metadata +2 -1
@@ -0,0 +1,12 @@
1
+ module Dev
2
+ class BoostBuild
3
+ def self.defaultToolset
4
+ text=`b2 --debug-configuration`
5
+ toolset=''
6
+ text.scan(/<toolset>([\.\w-]+)/).each{ | var_match |
7
+ toolset=var_match[0].to_s
8
+ }
9
+ return toolset
10
+ end
11
+ end
12
+ end
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: 1.0.88
4
+ version: 1.0.89
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -148,6 +148,7 @@ extra_rdoc_files: []
148
148
  files:
149
149
  - LICENSE
150
150
  - README
151
+ - lib/dev/BoostBuild.rb
151
152
  - lib/dev/Dep.rb
152
153
  - lib/dev/Environment.rb
153
154
  - lib/dev/Hash.rb