rplot 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +11 -0
- data/Gemfile +4 -0
- data/LICENSE +674 -0
- data/README.rdoc +105 -0
- data/Rakefile +10 -0
- data/ext/extconf.rb +40 -0
- data/ext/rplot.c +959 -0
- data/ext/rplot.h +121 -0
- data/ext/rplot_exceptions.h +13 -0
- data/lib/rplot.rb +1421 -0
- data/lib/rplot/version.rb +4 -0
- data/rplot.gemspec +21 -0
- metadata +77 -0
data/rplot.gemspec
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
$:.push File.expand_path('../lib', __FILE__)
|
3
|
+
require 'rplot/version'
|
4
|
+
|
5
|
+
Gem::Specification.new do |s|
|
6
|
+
s.name = 'rplot'
|
7
|
+
s.version = Rplot::VERSION
|
8
|
+
s.platform = Gem::Platform::RUBY
|
9
|
+
s.authors = ['Enrico Pilotto']
|
10
|
+
s.email = ['enrico@megiston.it']
|
11
|
+
s.homepage = 'https://github.com/pioz/rplot'
|
12
|
+
s.summary = %q{C extension for Ruby of GNU libplot}
|
13
|
+
s.description = %q{GNU libplot is a free function library for drawing two-dimensional vector graphics. It can produce smooth, double-buffered animations for the X Window System, and can export files in many graphics file formats. It is `device-independent' in the sense that its API (application programming interface) is to a large extent independent of the display type or output format. Rplot is a C extension for Ruby of GNU libplot.}
|
14
|
+
s.license = 'GPL-3'
|
15
|
+
s.extensions = ['ext/extconf.rb']
|
16
|
+
s.requirements = ['GNU libplot dev (plotutils package) version >= 2.6 - Debian package name: libplot-dev - Mac port package name: plotutils']
|
17
|
+
s.files = `git ls-files`.split("\n")
|
18
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
19
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
20
|
+
s.require_paths = ['lib', 'ext']
|
21
|
+
end
|
metadata
ADDED
@@ -0,0 +1,77 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rplot
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 0
|
8
|
+
- 1
|
9
|
+
version: 0.0.1
|
10
|
+
platform: ruby
|
11
|
+
authors:
|
12
|
+
- Enrico Pilotto
|
13
|
+
autorequire:
|
14
|
+
bindir: bin
|
15
|
+
cert_chain: []
|
16
|
+
|
17
|
+
date: 2011-01-25 00:00:00 +01:00
|
18
|
+
default_executable:
|
19
|
+
dependencies: []
|
20
|
+
|
21
|
+
description: GNU libplot is a free function library for drawing two-dimensional vector graphics. It can produce smooth, double-buffered animations for the X Window System, and can export files in many graphics file formats. It is `device-independent' in the sense that its API (application programming interface) is to a large extent independent of the display type or output format. Rplot is a C extension for Ruby of GNU libplot.
|
22
|
+
email:
|
23
|
+
- enrico@megiston.it
|
24
|
+
executables: []
|
25
|
+
|
26
|
+
extensions:
|
27
|
+
- ext/extconf.rb
|
28
|
+
extra_rdoc_files: []
|
29
|
+
|
30
|
+
files:
|
31
|
+
- .gitignore
|
32
|
+
- Gemfile
|
33
|
+
- LICENSE
|
34
|
+
- README.rdoc
|
35
|
+
- Rakefile
|
36
|
+
- ext/extconf.rb
|
37
|
+
- ext/rplot.c
|
38
|
+
- ext/rplot.h
|
39
|
+
- ext/rplot_exceptions.h
|
40
|
+
- lib/rplot.rb
|
41
|
+
- lib/rplot/version.rb
|
42
|
+
- rplot.gemspec
|
43
|
+
has_rdoc: true
|
44
|
+
homepage: https://github.com/pioz/rplot
|
45
|
+
licenses:
|
46
|
+
- GPL-3
|
47
|
+
post_install_message:
|
48
|
+
rdoc_options: []
|
49
|
+
|
50
|
+
require_paths:
|
51
|
+
- lib
|
52
|
+
- ext
|
53
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
54
|
+
none: false
|
55
|
+
requirements:
|
56
|
+
- - ">="
|
57
|
+
- !ruby/object:Gem::Version
|
58
|
+
segments:
|
59
|
+
- 0
|
60
|
+
version: "0"
|
61
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
62
|
+
none: false
|
63
|
+
requirements:
|
64
|
+
- - ">="
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
segments:
|
67
|
+
- 0
|
68
|
+
version: "0"
|
69
|
+
requirements:
|
70
|
+
- "GNU libplot dev (plotutils package) version >= 2.6 - Debian package name: libplot-dev - Mac port package name: plotutils"
|
71
|
+
rubyforge_project:
|
72
|
+
rubygems_version: 1.3.7
|
73
|
+
signing_key:
|
74
|
+
specification_version: 3
|
75
|
+
summary: C extension for Ruby of GNU libplot
|
76
|
+
test_files: []
|
77
|
+
|