cassowary-ruby 0.5.0 → 0.5.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +1 -0
- metadata +49 -42
- checksums.yaml +0 -15
data/README.md
CHANGED
metadata
CHANGED
@@ -1,54 +1,52 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: cassowary-ruby
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 9
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 5
|
9
|
+
- 1
|
10
|
+
version: 0.5.1
|
5
11
|
platform: ruby
|
6
|
-
authors:
|
12
|
+
authors:
|
7
13
|
- Tim Felgentreff
|
8
14
|
autorequire:
|
9
15
|
bindir: bin
|
10
16
|
cert_chain: []
|
11
|
-
date: 2012-11-27 00:00:00.000000000 Z
|
12
|
-
dependencies: []
|
13
|
-
description: ! '## Cassowary
|
14
17
|
|
18
|
+
date: 2012-11-27 00:00:00 Z
|
19
|
+
dependencies: []
|
15
20
|
|
21
|
+
description: |
|
22
|
+
## Cassowary
|
23
|
+
[![Build Status](https://secure.travis-ci.org/timfel/cassowary.png?branch=master)](https://travis-ci.org/timfel/cassowary)
|
24
|
+
|
16
25
|
Cassowary is an incremental constraint solving toolkit that
|
17
|
-
|
18
26
|
efficiently solves systems of linear equalities and
|
19
|
-
|
20
27
|
inequalities. Constraints may be either requirements or
|
21
|
-
|
22
28
|
preferences. Client code specifies the constraints to be maintained,
|
23
|
-
|
24
29
|
and the solver updates the constrained variables to have values that
|
25
|
-
|
26
30
|
satisfy the constraints.
|
27
|
-
|
28
|
-
|
31
|
+
|
29
32
|
This is a Ruby port of the Smalltalk version of Cassowary. The
|
30
|
-
|
31
33
|
original distribution can be found
|
32
|
-
|
33
34
|
[here](http://www.cs.washington.edu/research/constraints/cassowary/).
|
34
|
-
|
35
|
-
|
35
|
+
|
36
36
|
A technical report is included in the original distribution that
|
37
|
-
|
38
37
|
describes the algorithm, interface, and implementation of the
|
39
|
-
|
40
38
|
Cassowary solver. Additionally, the distribution contains toy sample
|
41
|
-
|
42
39
|
applications written in Smalltalk, C++, Java, and Python, and a more
|
43
|
-
|
44
40
|
complex example Java applet, the "Constraint Drawing Application".
|
45
41
|
|
46
|
-
'
|
47
42
|
email: tim@bithug.org
|
48
43
|
executables: []
|
44
|
+
|
49
45
|
extensions: []
|
46
|
+
|
50
47
|
extra_rdoc_files: []
|
51
|
-
|
48
|
+
|
49
|
+
files:
|
52
50
|
- README.md
|
53
51
|
- LICENSE
|
54
52
|
- lib/linear_expression.rb
|
@@ -75,30 +73,39 @@ files:
|
|
75
73
|
- test/test_abstract_methods.rb
|
76
74
|
- test/test_cassowary.rb
|
77
75
|
homepage: https://github.com/timfel/cassowary-ruby
|
78
|
-
licenses:
|
79
|
-
|
76
|
+
licenses:
|
77
|
+
- MIT
|
80
78
|
post_install_message:
|
81
79
|
rdoc_options: []
|
82
|
-
|
80
|
+
|
81
|
+
require_paths:
|
83
82
|
- lib
|
84
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
83
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
84
|
+
none: false
|
85
|
+
requirements:
|
86
|
+
- - ">="
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
hash: 3
|
89
|
+
segments:
|
90
|
+
- 0
|
91
|
+
version: "0"
|
92
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
93
|
+
none: false
|
94
|
+
requirements:
|
95
|
+
- - ">="
|
96
|
+
- !ruby/object:Gem::Version
|
97
|
+
hash: 3
|
98
|
+
segments:
|
99
|
+
- 0
|
100
|
+
version: "0"
|
94
101
|
requirements: []
|
102
|
+
|
95
103
|
rubyforge_project:
|
96
|
-
rubygems_version:
|
104
|
+
rubygems_version: 1.8.17
|
97
105
|
signing_key:
|
98
|
-
specification_version:
|
99
|
-
summary: Cassowary is an incremental constraint solving toolkit that efficiently solves
|
100
|
-
|
101
|
-
test_files:
|
106
|
+
specification_version: 3
|
107
|
+
summary: Cassowary is an incremental constraint solving toolkit that efficiently solves systems of linear equalities and inequalities
|
108
|
+
test_files:
|
102
109
|
- test/test_helper.rb
|
103
110
|
- test/test_variables.rb
|
104
111
|
- test/test_ext.rb
|
checksums.yaml
DELETED
@@ -1,15 +0,0 @@
|
|
1
|
-
---
|
2
|
-
!binary "U0hBMQ==":
|
3
|
-
metadata.gz: !binary |-
|
4
|
-
OWZkYjdhMWMwYjdkZWM3OWE0NGM2NDVhODFlMjdkZDQ0YzkxN2FjMg==
|
5
|
-
data.tar.gz: !binary |-
|
6
|
-
NmU1YWEyOTZkNGIyNTM2YmFiZjk3ZjVjMDczNjMyMGJmYWVkNDMxMg==
|
7
|
-
!binary "U0hBNTEy":
|
8
|
-
metadata.gz: !binary |-
|
9
|
-
YTFhOTI5ZjZjMjAzMGMwN2JkMzJlYWYxZGMyZjg2NjllMWU2NTA1ZmExN2Y5
|
10
|
-
NDA1Nzk5ZWI4MDcxYjBjOWY1ZDRhYjNkY2EyNmQ3YWI4ODE1ZjdiMDkyMGFi
|
11
|
-
YWRlZjZmN2UwNDQ3NmZmMjNkNTMyNjRjMzlhMmM5OTY3N2FhOTU=
|
12
|
-
data.tar.gz: !binary |-
|
13
|
-
N2NlZDE5NGYwMWRiZDgwNjViYjFmOWJlZDJmYThiMmI5ZGZhZjNlZDYyNjRk
|
14
|
-
N2YxNWEzODliYjZlMzE0MTliZjY3OTk1MjRkOWQ5OGJhMDNkZDEyMjRhODc4
|
15
|
-
ZTQ1ZjcyOGIzZDVjMmJlOGRlYzlkZDY0Y2I1MWJkYWJkYjA3ZTE=
|