hessml-ffi-opencl 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.1
1
+ 0.1.2
data/ffi-opencl.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{ffi-opencl}
5
- s.version = "0.1.1"
5
+ s.version = "0.1.2"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Martin Hess"]
@@ -30,7 +30,9 @@ Gem::Specification.new do |s|
30
30
  "lib/ffi-opencl/platform.rb",
31
31
  "spec/ffi-opencl_spec.rb",
32
32
  "spec/spec_helper.rb",
33
- "tasks/generator.rake"
33
+ "tasks/generator.rake",
34
+ "test/ffi-opencl_test.rb",
35
+ "test/test_helper.rb"
34
36
  ]
35
37
  s.has_rdoc = true
36
38
  s.homepage = %q{http://github.com/hessml/ffi-opencl}
@@ -43,6 +45,8 @@ Gem::Specification.new do |s|
43
45
  s.test_files = [
44
46
  "spec/ffi-opencl_spec.rb",
45
47
  "spec/spec_helper.rb",
48
+ "test/ffi-opencl_test.rb",
49
+ "test/test_helper.rb",
46
50
  "examples/capabilities.rb"
47
51
  ]
48
52
 
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class FfiOpenclTest < Test::Unit::TestCase
4
+ should "probably rename this file and start testing for real" do
5
+ flunk "hey buddy, you should probably rename this file and start testing for real"
6
+ end
7
+ end
@@ -0,0 +1,10 @@
1
+ require 'rubygems'
2
+ require 'test/unit'
3
+ require 'shoulda'
4
+
5
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
6
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
7
+ require 'ffi-opencl'
8
+
9
+ class Test::Unit::TestCase
10
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hessml-ffi-opencl
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Martin Hess
@@ -50,6 +50,8 @@ files:
50
50
  - spec/ffi-opencl_spec.rb
51
51
  - spec/spec_helper.rb
52
52
  - tasks/generator.rake
53
+ - test/ffi-opencl_test.rb
54
+ - test/test_helper.rb
53
55
  has_rdoc: true
54
56
  homepage: http://github.com/hessml/ffi-opencl
55
57
  post_install_message:
@@ -81,4 +83,6 @@ summary: TODO
81
83
  test_files:
82
84
  - spec/ffi-opencl_spec.rb
83
85
  - spec/spec_helper.rb
86
+ - test/ffi-opencl_test.rb
87
+ - test/test_helper.rb
84
88
  - examples/capabilities.rb