naoki 1.0.4-x86-linux → 1.0.5-x86-linux

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 (3) hide show
  1. data/Rakefile +3 -7
  2. data/ext/data_secure.so +0 -0
  3. metadata +3 -2
data/Rakefile CHANGED
@@ -29,11 +29,7 @@ file MODULE => SRC do |t|
29
29
  end
30
30
 
31
31
  desc "Build the native library"
32
- if RUBY_PLATFORM.match /linux/
33
- task :build => MODULE
34
- else
35
- task :build
36
- end
32
+ task :build => MODULE
37
33
 
38
34
  PKG_FILES = FileList[
39
35
  "Rakefile", "ext/*.[ch]", "ext/extconf.rb", "ext/*.so"
@@ -41,13 +37,13 @@ PKG_FILES = FileList[
41
37
 
42
38
  SPEC = Gem::Specification.new do |s|
43
39
  s.name = "naoki"
44
- s.version = "1.0.4"
40
+ s.version = "1.0.5"
45
41
  s.platform = Gem::Platform::CURRENT
46
42
  s.homepage = ""
47
43
  s.summary = "C bindings for SafeNet DataSecure ICAPI"
48
44
  s.files = PKG_FILES
49
45
  s.required_ruby_version = '>= 1.9.2'
50
- s.extensions = "ext/extconf.rb" if RUBY_PLATFORM.match /linux/
46
+ s.extensions = "ext/extconf.rb"
51
47
  s.authors = ["Chris Apolzon", "Liron Yahdav"]
52
48
  s.email = ["apolzon@gmail.com"]
53
49
  s.description = "C bindings for SafeNet DataSecure ICAPI"
Binary file
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: naoki
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 1.0.4
5
+ version: 1.0.5
6
6
  platform: x86-linux
7
7
  authors:
8
8
  - Chris Apolzon
@@ -26,11 +26,12 @@ extra_rdoc_files: []
26
26
 
27
27
  files:
28
28
  - Rakefile
29
- - ext/icapierr.h
30
29
  - ext/binding.c
30
+ - ext/icapierr.h
31
31
  - ext/icapi.h
32
32
  - ext/extconf.rb
33
33
  - ext/libICAPI.so
34
+ - ext/data_secure.so
34
35
  has_rdoc: true
35
36
  homepage: ""
36
37
  licenses: []