dep_selector 1.0.0.rc.1 → 1.0.0.rc.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/dep_selector/dep_gecode.rb +6 -0
- data/lib/dep_selector/dep_selector_version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: da3e11db83cb3ca5a9e8d7e47b0175c2d4f38892
|
|
4
|
+
data.tar.gz: 64a7c995ae3fb2debda0cf47554ce29f13f9df37
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c0e64cc16a48e28a0283e3e4839c23aa8e2bd6a2e7a2f38e5a5d6ff0b14516be7064c95225be2d3e6a9b9556cc7034486948441a89ee29e587bc63cf903335cf
|
|
7
|
+
data.tar.gz: 78f4ee674b8f468c95d382a494dc1bd9bf9d2316469e017cd9f397cad23720aba4e492d6f98a253f206fa102706a4106a8307ffd9dae2a29f7538a2182f0c549
|
|
@@ -30,6 +30,12 @@ module Dep_gecode
|
|
|
30
30
|
|
|
31
31
|
path = lib_dir_path || ext_dir_path
|
|
32
32
|
|
|
33
|
+
# FFI will load the library by calling LoadLibraryExA. The docs for this
|
|
34
|
+
# function advise not to use forward slashes (though this does work at least
|
|
35
|
+
# in at least some cases).
|
|
36
|
+
# See: http://msdn.microsoft.com/en-us/library/windows/desktop/ms684179(v=vs.85).aspx
|
|
37
|
+
path.gsub!('/', '\\') if RUBY_PLATFORM =~ /mswin|mingw|windows/
|
|
38
|
+
|
|
33
39
|
ffi_lib path
|
|
34
40
|
|
|
35
41
|
# VersionProblem * VersionProblemCreate(int packageCount, bool dumpStats,
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dep_selector
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.0.rc.
|
|
4
|
+
version: 1.0.0.rc.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Christopher Walters
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2014-04-
|
|
12
|
+
date: 2014-04-12 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: ffi
|