ruby_clipper 5.0.3
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/Changelog +7 -0
- data/Gemfile +4 -0
- data/LICENSE.bindings +4 -0
- data/LICENSE.clipper +29 -0
- data/README.md +151 -0
- data/Rakefile +2 -0
- data/ext/clipper/clipper.cpp +3328 -0
- data/ext/clipper/clipper.hpp +306 -0
- data/ext/clipper/extconf.rb +6 -0
- data/ext/clipper/rbclipper.cpp +389 -0
- data/lib/clipper/version.rb +6 -0
- metadata +78 -0
metadata
ADDED
@@ -0,0 +1,78 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ruby_clipper
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 5.0.3
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Angus Johnson
|
8
|
+
- Mike Owens
|
9
|
+
- Dag Rende
|
10
|
+
- Jaap van der Plas
|
11
|
+
- Simon George
|
12
|
+
autorequire:
|
13
|
+
bindir: bin
|
14
|
+
cert_chain: []
|
15
|
+
date: 2015-02-23 00:00:00.000000000 Z
|
16
|
+
dependencies:
|
17
|
+
- !ruby/object:Gem::Dependency
|
18
|
+
name: bundler
|
19
|
+
requirement: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - "~>"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: '1.0'
|
24
|
+
type: :development
|
25
|
+
prerelease: false
|
26
|
+
version_requirements: !ruby/object:Gem::Requirement
|
27
|
+
requirements:
|
28
|
+
- - "~>"
|
29
|
+
- !ruby/object:Gem::Version
|
30
|
+
version: '1.0'
|
31
|
+
description: Builds a native ruby extension for Clipper
|
32
|
+
email:
|
33
|
+
- simon@sfcgeorge.co.uk
|
34
|
+
executables: []
|
35
|
+
extensions:
|
36
|
+
- ext/clipper/extconf.rb
|
37
|
+
extra_rdoc_files:
|
38
|
+
- README.md
|
39
|
+
- Changelog
|
40
|
+
- ext/clipper/rbclipper.cpp
|
41
|
+
files:
|
42
|
+
- Changelog
|
43
|
+
- Gemfile
|
44
|
+
- LICENSE.bindings
|
45
|
+
- LICENSE.clipper
|
46
|
+
- README.md
|
47
|
+
- Rakefile
|
48
|
+
- ext/clipper/clipper.cpp
|
49
|
+
- ext/clipper/clipper.hpp
|
50
|
+
- ext/clipper/extconf.rb
|
51
|
+
- ext/clipper/rbclipper.cpp
|
52
|
+
- lib/clipper/version.rb
|
53
|
+
homepage: http://github.com/sfcgeorge/rbclipper
|
54
|
+
licenses:
|
55
|
+
- Boost Software License - Version 1.0
|
56
|
+
metadata: {}
|
57
|
+
post_install_message:
|
58
|
+
rdoc_options:
|
59
|
+
- "--main=README.md"
|
60
|
+
require_paths:
|
61
|
+
- lib
|
62
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
63
|
+
requirements:
|
64
|
+
- - ">="
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
version: '0'
|
67
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
68
|
+
requirements:
|
69
|
+
- - ">="
|
70
|
+
- !ruby/object:Gem::Version
|
71
|
+
version: 1.3.6
|
72
|
+
requirements: []
|
73
|
+
rubyforge_project:
|
74
|
+
rubygems_version: 2.4.5
|
75
|
+
signing_key:
|
76
|
+
specification_version: 4
|
77
|
+
summary: Ruby wrapper for Clipper, Angus Johnson's excellent polygon clipping library
|
78
|
+
test_files: []
|