dancing-links 0.1.0.2 → 0.1.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.
- data/Rakefile +21 -21
- metadata +3 -3
data/Rakefile
CHANGED
|
@@ -16,30 +16,30 @@ Rake::RDocTask.new do |rd|
|
|
|
16
16
|
end
|
|
17
17
|
|
|
18
18
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
19
|
+
PKG_FILES = FileList['lib/**/*.rb','[A-Z]*']
|
|
20
|
+
TEST_FILES = FileList['test/**/*.rb']
|
|
21
|
+
|
|
22
|
+
gem_spec = Gem::Specification.new do |s|
|
|
23
|
+
s.platform = Gem::Platform::RUBY
|
|
24
|
+
s.summary = 'Implementation of the "Dancing Links" algorithm.'
|
|
25
|
+
s.name = 'dancing-links'
|
|
26
|
+
s.email = 'justin dot w dot smith at gmail dot com'
|
|
27
|
+
s.authors = ['Justin W Smith']
|
|
28
|
+
s.homepage = 'http://rubyforge.org/projects/sudoku-gtk/'
|
|
29
|
+
s.version = '0.1.0.3'
|
|
30
|
+
s.requirements << 'none'
|
|
31
|
+
s.require_path = 'lib'
|
|
32
|
+
s.files = PKG_FILES
|
|
33
|
+
s.test_files = TEST_FILES
|
|
34
|
+
s.has_rdoc = true
|
|
35
|
+
s.description = <<EOF
|
|
36
36
|
Dancing-links is an implementation of the "Dancing Links" algorthm to solve the
|
|
37
37
|
"Exact Cover" problem. Algorithm found by Donald Knuth.
|
|
38
38
|
EOF
|
|
39
39
|
end
|
|
40
40
|
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
41
|
+
Gem::PackageTask.new(gem_spec) do |t|
|
|
42
|
+
t.need_zip = true
|
|
43
|
+
t.need_tar = true
|
|
44
|
+
end
|
|
45
45
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dancing-links
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.0.
|
|
4
|
+
version: 0.1.0.3
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2012-11-
|
|
12
|
+
date: 2012-11-28 00:00:00.000000000 Z
|
|
13
13
|
dependencies: []
|
|
14
14
|
description: ! " Dancing-links is an implementation of the \"Dancing Links\" algorthm
|
|
15
15
|
to solve the\n \"Exact Cover\" problem. Algorithm found by Donald Knuth.\n"
|
|
@@ -19,8 +19,8 @@ extensions: []
|
|
|
19
19
|
extra_rdoc_files: []
|
|
20
20
|
files:
|
|
21
21
|
- lib/dancing_links.rb
|
|
22
|
-
- Rakefile
|
|
23
22
|
- README.rdoc
|
|
23
|
+
- Rakefile
|
|
24
24
|
- test/tc_dancing_links.rb
|
|
25
25
|
homepage: http://rubyforge.org/projects/sudoku-gtk/
|
|
26
26
|
licenses: []
|