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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 13f76dae7d2568552b085a258bac79851cfb14f4
4
- data.tar.gz: 1913ef27e5ed3663795bdcd10862f8d82e061f94
3
+ metadata.gz: da3e11db83cb3ca5a9e8d7e47b0175c2d4f38892
4
+ data.tar.gz: 64a7c995ae3fb2debda0cf47554ce29f13f9df37
5
5
  SHA512:
6
- metadata.gz: c9bbad779a55e93179b80814f8c6949bb80886e66b3384c6638af6579c85ba24e83baec82b01bcaa7ab8f66e5c9a5156b661fc3cbe0a55053fba0867df4f59a0
7
- data.tar.gz: 51b4cbbf22199e37ed19c2f8e43148f69873909eefcc0d164ff8d9877d958bcc019d2bc34a18cd89dd82f0fbb400dbd443758cd9c81979e8f0b99df873fef307
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,
@@ -1,3 +1,3 @@
1
1
  module DepSelector
2
- VERSION = "1.0.0.rc.1"
2
+ VERSION = "1.0.0.rc.2"
3
3
  end
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.1
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-11 00:00:00.000000000 Z
12
+ date: 2014-04-12 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: ffi