naoki 1.0.6 → 1.0.7

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -4,4 +4,4 @@ Logfile*
4
4
  .DS_Store
5
5
  IngrianNAE.properties
6
6
  *.gem
7
- pkg
7
+ Gemfile.lock
@@ -1,6 +1,6 @@
1
1
  require 'ffi'
2
2
 
3
- ICAPI_LIB_FILE = '/usr/lib/libICAPI.so'
3
+ ICAPI_LIB_FILE = File.join(File.expand_path(__FILE__), '../libICAPI.so')
4
4
 
5
5
  unless File.exists? ICAPI_LIB_FILE
6
6
 
data/lib/naoki.rb ADDED
@@ -0,0 +1 @@
1
+ require 'data_secure_wrapper'
data/naoki.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  SPEC = Gem::Specification.new do |s|
2
2
  s.name = "naoki"
3
- s.version = "1.0.6"
3
+ s.version = "1.0.7"
4
4
  s.platform = Gem::Platform::RUBY
5
5
  s.homepage = ""
6
6
  s.summary = "C bindings for SafeNet DataSecure ICAPI"
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 0
8
- - 6
9
- version: 1.0.6
8
+ - 7
9
+ version: 1.0.7
10
10
  platform: ruby
11
11
  authors:
12
12
  - Chris Apolzon
@@ -45,9 +45,9 @@ extra_rdoc_files: []
45
45
  files:
46
46
  - .gitignore
47
47
  - Gemfile
48
- - Gemfile.lock
49
- - data_secure_wrapper.rb
48
+ - lib/data_secure_wrapper.rb
50
49
  - lib/libICAPI.so
50
+ - lib/naoki.rb
51
51
  - naoki.gemspec
52
52
  - sample.rb
53
53
  has_rdoc: true
data/Gemfile.lock DELETED
@@ -1,19 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- naoki (1.0.6)
5
- ffi (= 0.6.3)
6
-
7
- GEM
8
- remote: http://rubygems.org/
9
- specs:
10
- ffi (0.6.3)
11
- rake (>= 0.8.7)
12
- rake (0.8.7)
13
-
14
- PLATFORMS
15
- ruby
16
-
17
- DEPENDENCIES
18
- ffi (= 0.6.3)
19
- naoki!