clipper 2.9.0
Sign up to get free protection for your applications and to get access to all the features.
- data/Changelog +7 -0
- data/Gemfile +4 -0
- data/LICENSE.bindings +4 -0
- data/LICENSE.clipper +29 -0
- data/README.md +122 -0
- data/Rakefile +2 -0
- data/ext/clipper/clipper.cpp +2495 -0
- data/ext/clipper/clipper.hpp +247 -0
- data/ext/clipper/extconf.rb +6 -0
- data/ext/clipper/rbclipper.cpp +268 -0
- data/lib/clipper/version.rb +7 -0
- metadata +94 -0
metadata
ADDED
@@ -0,0 +1,94 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: clipper
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 2
|
7
|
+
- 9
|
8
|
+
- 0
|
9
|
+
version: 2.9.0
|
10
|
+
platform: ruby
|
11
|
+
authors:
|
12
|
+
- Angus Johnson
|
13
|
+
- Mike Owens
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2010-12-08 00:00:00 -05:00
|
19
|
+
default_executable:
|
20
|
+
dependencies:
|
21
|
+
- !ruby/object:Gem::Dependency
|
22
|
+
name: bundler
|
23
|
+
prerelease: false
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
segments:
|
30
|
+
- 1
|
31
|
+
- 0
|
32
|
+
- 0
|
33
|
+
version: 1.0.0
|
34
|
+
type: :development
|
35
|
+
version_requirements: *id001
|
36
|
+
description: Builds a native ruby extension for Clipper
|
37
|
+
email: []
|
38
|
+
|
39
|
+
executables: []
|
40
|
+
|
41
|
+
extensions:
|
42
|
+
- ext/clipper/extconf.rb
|
43
|
+
extra_rdoc_files:
|
44
|
+
- README.md
|
45
|
+
- Changelog
|
46
|
+
- ext/clipper/rbclipper.cpp
|
47
|
+
files:
|
48
|
+
- lib/clipper/version.rb
|
49
|
+
- ext/clipper/clipper.cpp
|
50
|
+
- ext/clipper/clipper.hpp
|
51
|
+
- ext/clipper/rbclipper.cpp
|
52
|
+
- ext/clipper/extconf.rb
|
53
|
+
- LICENSE.bindings
|
54
|
+
- LICENSE.clipper
|
55
|
+
- Rakefile
|
56
|
+
- Gemfile
|
57
|
+
- Changelog
|
58
|
+
- README.md
|
59
|
+
has_rdoc: true
|
60
|
+
homepage: http://github.com/mieko/rbclipper
|
61
|
+
licenses: []
|
62
|
+
|
63
|
+
post_install_message:
|
64
|
+
rdoc_options:
|
65
|
+
- --main=README.md
|
66
|
+
require_paths:
|
67
|
+
- lib
|
68
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
69
|
+
none: false
|
70
|
+
requirements:
|
71
|
+
- - ">="
|
72
|
+
- !ruby/object:Gem::Version
|
73
|
+
segments:
|
74
|
+
- 0
|
75
|
+
version: "0"
|
76
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
77
|
+
none: false
|
78
|
+
requirements:
|
79
|
+
- - ">="
|
80
|
+
- !ruby/object:Gem::Version
|
81
|
+
segments:
|
82
|
+
- 1
|
83
|
+
- 3
|
84
|
+
- 6
|
85
|
+
version: 1.3.6
|
86
|
+
requirements: []
|
87
|
+
|
88
|
+
rubyforge_project: clipper
|
89
|
+
rubygems_version: 1.3.7
|
90
|
+
signing_key:
|
91
|
+
specification_version: 3
|
92
|
+
summary: Ruby wrapper for Clipper, Angus Johnson's excellent polygon clipping library
|
93
|
+
test_files: []
|
94
|
+
|