visual_studio 0.1.0.1 → 0.1.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c957a6d1c02f808242afecab8c3354124319099b
4
- data.tar.gz: fb37acaf249a250e5f21927049e42594713f66be
3
+ metadata.gz: ae6d44fc02888d2b58eb780623555953300a5d3e
4
+ data.tar.gz: 5453ae213f25c12ea5b4caf335d14c455c6a2c24
5
5
  SHA512:
6
- metadata.gz: b57a167ad532f99541175ba0037212415c8232cd7e910df012767b241fe4ce36620aa4d684799cf195d3e1802b1612aee71b8255134686e6c1b3c5895a5782f2
7
- data.tar.gz: 5173d073542e36c83a46bdaaf5ea8714bb41d2081ffafcbc659198029c5b5fb4e7e443263909c8c59890731c23143643cdfe2d49ab89c6a993d75735a30d5b11
6
+ metadata.gz: 323f2c681f5744af4acd25576bf769e33577bc6c623fe8372bdbf8328a34560c6634d96d31f7f890a23dac29714348b34c1c7e5c3fe4863fb022cb4374c7b4d2
7
+ data.tar.gz: b45b5568b66d4aaf52f218f2b8a6dbbde73d7ee473aeac414e1498c4e6b0b1c4f719e684edbdcc59d8c27e71f23851e83d99cfbca41d0f83e0ecbb4a53ac84b0
@@ -41,7 +41,7 @@ module VisualStudio
41
41
  end
42
42
 
43
43
  module VERSION #:nodoc:
44
- MAJOR, MINOR, PATCH, PRE = [0, 1, 0, 1]
44
+ MAJOR, MINOR, PATCH, PRE = [0, 1, 0, 2]
45
45
  STRING = [MAJOR, MINOR, PATCH, PRE].compact.join('.')
46
46
  end
47
47
 
@@ -65,22 +65,22 @@ module VisualStudio
65
65
  case version.to_f
66
66
  when 8.0..11.0
67
67
  # TODO(mtwilliams): Check if x86_64 support exists.
68
- includes = [File.join(root, 'VC', 'include')]
69
- libraries = {:x86 => [File.join(root, 'VC', 'lib')],
68
+ includes = [File.join(root, 'include')]
69
+ libraries = {:x86 => [File.join(root, 'lib')],
70
70
  :x86_64 => []}
71
- binaries = {:x86 => [File.join(root, 'VC', 'bin')],
71
+ binaries = {:x86 => [File.join(root, 'bin')],
72
72
  :x86_64 => []}
73
73
  [includes, libraries, binaries]
74
74
  when 12.0..14.0
75
75
  # TODO(mtwilliams): Select the 64-bit and ARM host variants
76
76
  # when applicable, i.e. when running on 64-bit or ARM.
77
- includes = [File.join(root, 'VC', 'include')]
78
- libraries = {:x86 => [File.join(root, 'VC', 'lib')],
79
- :x86_64 => [File.join(root, 'VC', 'lib', 'amd64')],
80
- :arm => [File.join(root, 'VC', 'lib', 'arm')]}
81
- binaries = {:x86 => [File.join(root, 'VC', 'bin')],
82
- :x86_64 => [File.join(root, 'VC', 'bin', 'x86_amd64')],
83
- :arm => [File.join(root, 'VC', 'bin', 'x86_arm')]}
77
+ includes = [File.join(root, 'include')]
78
+ libraries = {:x86 => [File.join(root, 'lib')],
79
+ :x86_64 => [File.join(root, 'lib', 'amd64')],
80
+ :arm => [File.join(root, 'lib', 'arm')]}
81
+ binaries = {:x86 => [File.join(root, 'bin')],
82
+ :x86_64 => [File.join(root, 'bin', 'x86_amd64')],
83
+ :arm => [File.join(root, 'bin', 'x86_arm')]}
84
84
  [includes, libraries, binaries]
85
85
  else
86
86
  # TODO(mtwilliams): Raise a proper extension.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: visual_studio
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.1
4
+ version: 0.1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Williams
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-09-28 00:00:00.000000000 Z
11
+ date: 2016-03-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec
@@ -98,3 +98,4 @@ signing_key:
98
98
  specification_version: 4
99
99
  summary: Inspect Visual Studio installs and generate Visual Studio project files.
100
100
  test_files: []
101
+ has_rdoc: