mathgl 0.0.1
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.
- checksums.yaml +7 -0
- data/.gitignore +39 -0
- data/COPYING_LGPL +165 -0
- data/Gemfile +4 -0
- data/README.md +64 -0
- data/Rakefile +1 -0
- data/ext/mathgl/depend +2 -0
- data/ext/mathgl/extconf.rb +17 -0
- data/ext/mathgl/fltk/depend +2 -0
- data/ext/mathgl/fltk/extconf.rb +20 -0
- data/ext/mathgl/glut/depend +2 -0
- data/ext/mathgl/glut/extconf.rb +20 -0
- data/ext/mathgl/mathgl.cxx +130660 -0
- data/ext/mathgl/mathgl.i +123 -0
- data/ext/mathgl/qt/depend +2 -0
- data/ext/mathgl/qt/extconf.rb +20 -0
- data/ext/mathgl/rubymgl.i +172 -0
- data/ext/mathgl/tmpl/mkwin.rb +9 -0
- data/lib/mathgl/version.rb +3 -0
- data/mathgl.gemspec +24 -0
- data/sample/conv_sample.rb +310 -0
- data/sample/prepare.rb +229 -0
- data/sample/sample.rb +5325 -0
- data/setup.rb +1585 -0
- metadata +101 -0
metadata
ADDED
@@ -0,0 +1,101 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: mathgl
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Masahiro TANAKA
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2013-10-21 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.3'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.3'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
description: Ruby wrapper for MathGL - library for scientific data visualization
|
42
|
+
email:
|
43
|
+
- masa16.tanaka@gmail.com
|
44
|
+
executables: []
|
45
|
+
extensions:
|
46
|
+
- ext/mathgl/extconf.rb
|
47
|
+
- ext/mathgl/fltk/extconf.rb
|
48
|
+
- ext/mathgl/glut/extconf.rb
|
49
|
+
- ext/mathgl/qt/extconf.rb
|
50
|
+
extra_rdoc_files: []
|
51
|
+
files:
|
52
|
+
- .gitignore
|
53
|
+
- COPYING_LGPL
|
54
|
+
- Gemfile
|
55
|
+
- README.md
|
56
|
+
- Rakefile
|
57
|
+
- ext/mathgl/depend
|
58
|
+
- ext/mathgl/extconf.rb
|
59
|
+
- ext/mathgl/fltk/depend
|
60
|
+
- ext/mathgl/fltk/extconf.rb
|
61
|
+
- ext/mathgl/glut/depend
|
62
|
+
- ext/mathgl/glut/extconf.rb
|
63
|
+
- ext/mathgl/mathgl.cxx
|
64
|
+
- ext/mathgl/mathgl.i
|
65
|
+
- ext/mathgl/qt/depend
|
66
|
+
- ext/mathgl/qt/extconf.rb
|
67
|
+
- ext/mathgl/rubymgl.i
|
68
|
+
- ext/mathgl/tmpl/mkwin.rb
|
69
|
+
- ext/mathgl/tmpl/win.erb.cxx
|
70
|
+
- lib/mathgl/version.rb
|
71
|
+
- mathgl.gemspec
|
72
|
+
- sample/conv_sample.rb
|
73
|
+
- sample/prepare.rb
|
74
|
+
- sample/sample.rb
|
75
|
+
- setup.rb
|
76
|
+
homepage: https://github.com/masa16/ruby-mathgl
|
77
|
+
licenses:
|
78
|
+
- LGPL
|
79
|
+
metadata: {}
|
80
|
+
post_install_message:
|
81
|
+
rdoc_options: []
|
82
|
+
require_paths:
|
83
|
+
- lib
|
84
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - '>='
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '0'
|
89
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
90
|
+
requirements:
|
91
|
+
- - '>='
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: '0'
|
94
|
+
requirements: []
|
95
|
+
rubyforge_project:
|
96
|
+
rubygems_version: 2.0.3
|
97
|
+
signing_key:
|
98
|
+
specification_version: 4
|
99
|
+
summary: Ruby wrapper for MathGL - library for scientific data visualization
|
100
|
+
test_files: []
|
101
|
+
has_rdoc:
|