ricosat 1.0.2 → 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.
- checksums.yaml +4 -4
- data/Rakefile +5 -1
- data/lib/ricosat.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0e018d657ed2cbbf1eb58297ac1e2223e126d575
|
4
|
+
data.tar.gz: '087406d095bd00ae0d0655bbc9963c520ba3ef3a'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f05aa6f348a966829ee942e1f83a5d086b532d034854db12174dbd9f8398bc6f26e5154dc402b75ffed5c6c8bfb031116d12b44f32276245dc122142c3556a02
|
7
|
+
data.tar.gz: aa114640406e4a7cf01c648ea683786a0e20692fe29755edd412b90d7be1fd6e59206f0c151fc69455ca848f85c9d7fab8a99b85ff03988661a440b84d4edc00
|
data/Rakefile
CHANGED
@@ -9,11 +9,15 @@ Hoe.plugin :gemspec # `gem install hoe-gemspec`
|
|
9
9
|
Hoe.plugin :git # `gem install hoe-git`
|
10
10
|
|
11
11
|
Hoe.spec 'ricosat' do
|
12
|
-
developer('Aaron Patterson', '
|
12
|
+
developer('Aaron Patterson', 'tenderlove@ruby-lang.org')
|
13
|
+
license "MIT"
|
13
14
|
self.readme_file = 'README.md'
|
14
15
|
self.history_file = 'CHANGELOG.md'
|
15
16
|
self.extra_rdoc_files = FileList['*.md']
|
16
17
|
|
18
|
+
self.spec_extras = {
|
19
|
+
:extensions => ["ext/ricosat/extconf.rb"],
|
20
|
+
}
|
17
21
|
require 'rake/extensiontask'
|
18
22
|
Rake::ExtensionTask.new("ricosat") do |ext|
|
19
23
|
ext.lib_dir = File.join(*['lib', ENV['FAT_DIR']].compact)
|
data/lib/ricosat.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ricosat
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aaron Patterson
|
@@ -56,9 +56,10 @@ description: |-
|
|
56
56
|
RicoSAT is a wrapper around [PicoSAT](http://fmv.jku.at/picosat/). It lets
|
57
57
|
you use the PicoSAT solver from Ruby!
|
58
58
|
email:
|
59
|
-
-
|
59
|
+
- tenderlove@ruby-lang.org
|
60
60
|
executables: []
|
61
|
-
extensions:
|
61
|
+
extensions:
|
62
|
+
- ext/ricosat/extconf.rb
|
62
63
|
extra_rdoc_files:
|
63
64
|
- CHANGELOG.md
|
64
65
|
- Manifest.txt
|