rb_scope 2.0.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.
- data/README.txt +26 -0
- data/compile_cl.bat +17 -0
- data/ext/rb_scope/example.rb +68 -0
- data/ext/rb_scope/fetching/fetch.c +76 -0
- data/ext/rb_scope/fetching/fetch.h +38 -0
- data/ext/rb_scope/generators/extract_all.sh +24 -0
- data/ext/rb_scope/generators/extract_names.rb +26 -0
- data/ext/rb_scope/generators/extract_pairs.rb +18 -0
- data/ext/rb_scope/generators/wrapper_generator.rb +51 -0
- data/ext/rb_scope/wrapper.c +154 -0
- data/lib/rb_scope/api/niScope_api.rb +31 -0
- data/lib/rb_scope/api/niScope_pairs.const +2152 -0
- data/lib/rb_scope/api/niScope_template.rb +272 -0
- data/lib/rb_scope/api/niScope_values.rb +34 -0
- data/lib/rb_scope/api.rb +10 -0
- data/lib/rb_scope/fetch.dll +0 -0
- data/lib/rb_scope/fetch.lib +0 -0
- data/lib/rb_scope/fetch.rb +70 -0
- data/lib/rb_scope/rb_scope.dll +0 -0
- data/lib/rb_scope/rb_scope.lib +0 -0
- data/lib/rb_scope/session.rb +37 -0
- data/lib/rb_scope/session_attributes.rb +21 -0
- data/lib/rb_scope/session_methods.rb +82 -0
- data/lib/rb_scope.rb +39 -0
- data/rakefile.rb +77 -0
- data/test/test_rb_scope.rb +3 -0
- metadata +71 -0
metadata
ADDED
@@ -0,0 +1,71 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rb_scope
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 2.0.2
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Hugo Benichi
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-06-15 00:00:00.000000000 Z
|
13
|
+
dependencies: []
|
14
|
+
description: A Ruby layer wrapping around C calls to the NI-Scope drivers based on
|
15
|
+
the ffi gem api
|
16
|
+
email: hugo.benichi@m4x.org
|
17
|
+
executables: []
|
18
|
+
extensions: []
|
19
|
+
extra_rdoc_files: []
|
20
|
+
files:
|
21
|
+
- lib/rb_scope/api/niScope_api.rb
|
22
|
+
- lib/rb_scope/api/niScope_template.rb
|
23
|
+
- lib/rb_scope/api/niScope_values.rb
|
24
|
+
- lib/rb_scope/api.rb
|
25
|
+
- lib/rb_scope/fetch.rb
|
26
|
+
- lib/rb_scope/session.rb
|
27
|
+
- lib/rb_scope/session_attributes.rb
|
28
|
+
- lib/rb_scope/session_methods.rb
|
29
|
+
- lib/rb_scope.rb
|
30
|
+
- lib/rb_scope/api/niScope_pairs.const
|
31
|
+
- lib/rb_scope/fetch.dll
|
32
|
+
- lib/rb_scope/rb_scope.dll
|
33
|
+
- lib/rb_scope/fetch.lib
|
34
|
+
- lib/rb_scope/rb_scope.lib
|
35
|
+
- ext/rb_scope/fetching/fetch.c
|
36
|
+
- ext/rb_scope/wrapper.c
|
37
|
+
- ext/rb_scope/fetching/fetch.h
|
38
|
+
- ext/rb_scope/example.rb
|
39
|
+
- ext/rb_scope/generators/extract_names.rb
|
40
|
+
- ext/rb_scope/generators/extract_pairs.rb
|
41
|
+
- ext/rb_scope/generators/wrapper_generator.rb
|
42
|
+
- ext/rb_scope/generators/extract_all.sh
|
43
|
+
- test/test_rb_scope.rb
|
44
|
+
- compile_cl.bat
|
45
|
+
- rakefile.rb
|
46
|
+
- README.txt
|
47
|
+
homepage: http://github.com/hugobenichi/rb_scope
|
48
|
+
licenses: []
|
49
|
+
post_install_message:
|
50
|
+
rdoc_options: []
|
51
|
+
require_paths:
|
52
|
+
- lib
|
53
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
54
|
+
none: false
|
55
|
+
requirements:
|
56
|
+
- - ! '>='
|
57
|
+
- !ruby/object:Gem::Version
|
58
|
+
version: '0'
|
59
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
60
|
+
none: false
|
61
|
+
requirements:
|
62
|
+
- - ! '>='
|
63
|
+
- !ruby/object:Gem::Version
|
64
|
+
version: '0'
|
65
|
+
requirements: []
|
66
|
+
rubyforge_project:
|
67
|
+
rubygems_version: 1.8.16
|
68
|
+
signing_key:
|
69
|
+
specification_version: 3
|
70
|
+
summary: C2Ruby wrapper to NI-Scope drivers
|
71
|
+
test_files: []
|