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 +4 -4
- data/lib/visual_studio/gem.rb +1 -1
- data/lib/visual_studio/product.rb +10 -10
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ae6d44fc02888d2b58eb780623555953300a5d3e
|
|
4
|
+
data.tar.gz: 5453ae213f25c12ea5b4caf335d14c455c6a2c24
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 323f2c681f5744af4acd25576bf769e33577bc6c623fe8372bdbf8328a34560c6634d96d31f7f890a23dac29714348b34c1c7e5c3fe4863fb022cb4374c7b4d2
|
|
7
|
+
data.tar.gz: b45b5568b66d4aaf52f218f2b8a6dbbde73d7ee473aeac414e1498c4e6b0b1c4f719e684edbdcc59d8c27e71f23851e83d99cfbca41d0f83e0ecbb4a53ac84b0
|
data/lib/visual_studio/gem.rb
CHANGED
|
@@ -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, '
|
|
69
|
-
libraries = {:x86 => [File.join(root, '
|
|
68
|
+
includes = [File.join(root, 'include')]
|
|
69
|
+
libraries = {:x86 => [File.join(root, 'lib')],
|
|
70
70
|
:x86_64 => []}
|
|
71
|
-
binaries = {:x86 => [File.join(root, '
|
|
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, '
|
|
78
|
-
libraries = {:x86 => [File.join(root, '
|
|
79
|
-
:x86_64 => [File.join(root, '
|
|
80
|
-
:arm => [File.join(root, '
|
|
81
|
-
binaries = {:x86 => [File.join(root, '
|
|
82
|
-
:x86_64 => [File.join(root, '
|
|
83
|
-
:arm => [File.join(root, '
|
|
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.
|
|
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:
|
|
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:
|