xot 0.1.13 → 0.1.14

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 (6) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +21 -0
  3. data/Rakefile +2 -1
  4. data/VERSION +1 -1
  5. data/lib/xot/rake.rb +2 -2
  6. metadata +2 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 88efd5d3701a109d4d84b73ca708534afd4b241b65e346a7713b7432c4448375
4
- data.tar.gz: 7e34ffbf480f514bd89288861adfe607250c370bb6f39a9a6f269ffec1a9fadf
3
+ metadata.gz: ab59b087ca48e4e990ea9682756028862bbc02b98807acc71f2662e040c28a88
4
+ data.tar.gz: be1ad1d429076759e7c78f52254d3c386f081aabb5075978e88c17b59d793bc0
5
5
  SHA512:
6
- metadata.gz: 0c966eca380aa4d048f3f97a522e6b26b4b7bcf26b63f35f1a68ed3fa1e6d9fc075360004bbdfe338c7d2f57cf5b6b35be0ac76b7ed27d8beb20c38b6143b9ab
7
- data.tar.gz: 2626967aa53d9f1493a132bba2bdb18ae0b7ea67a4991351941c60116e6a27460ad07e8b4be560f32063c546a44ee004e3552ab2a740c6e0e358558951fc3abf
6
+ metadata.gz: cc3804e39fe3ed248d935ce6b588b13fe4ed46b41230a5595198abe6035a80eca9e632b1afa948f60a922b59df866cad7847417bc773476e2884009ca06d7923
7
+ data.tar.gz: f09aeaece1cee31ff9a3ae4271f0b9a40d683437415520ad57b223af470c9b5de74beba79abfddf1827cde3bd62a62d9c0c3f54bde3cc728e78b821544e98482
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2019 xord.org
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/Rakefile CHANGED
@@ -6,6 +6,7 @@
6
6
  .each {|s| $:.unshift s if !$:.include?(s) && File.directory?(s)}
7
7
 
8
8
  require 'xot/rake'
9
+
9
10
  require 'xot/module'
10
11
 
11
12
 
@@ -13,7 +14,7 @@ MODULES = [Xot]
13
14
  DLNAME = 'tester'
14
15
 
15
16
  build_native_library
16
- build_ruby_extension dlname: :tester
17
+ build_ruby_extension dlname: DLNAME
17
18
  test_ruby_extension
18
19
  build_ruby_gem
19
20
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.13
1
+ 0.1.14
@@ -6,7 +6,7 @@ require 'rake/loaders/makefile'
6
6
  require 'rake/testtask'
7
7
  require 'xot/rake/alias_task'
8
8
  require 'xot/rake/util'
9
- require 'xot/rake/escalation'
9
+ #require 'xot/rake/escalation'
10
10
 
11
11
 
12
12
  module Xot
@@ -127,7 +127,7 @@ module Xot
127
127
  libout = File.join ext_lib_dir, outname
128
128
 
129
129
  srcs = FileList["#{ext_dir}/**/*.cpp"]
130
- libs = modules.map {|m| m.name.downcase}.map {|s| "../#{s}/lib/lib#{s}.a"}
130
+ libs = modules.map {|m| "#{m.lib_dir}/lib#{m.name.downcase}.a"}
131
131
 
132
132
  alias_task :ext => libout
133
133
  alias_task :clean => 'ext:clean'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xot
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.13
4
+ version: 0.1.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - xordog
@@ -18,6 +18,7 @@ extensions:
18
18
  - Rakefile
19
19
  extra_rdoc_files: []
20
20
  files:
21
+ - LICENSE
21
22
  - README.md
22
23
  - Rakefile
23
24
  - VERSION