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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +5 -1
  3. data/lib/ricosat.rb +1 -1
  4. metadata +4 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 18466f49c48ecd6df13bcb70bad7d70f7f50bbef
4
- data.tar.gz: 6905a43219223e91de5f13fd1ad594671ebdfcbd
3
+ metadata.gz: 0e018d657ed2cbbf1eb58297ac1e2223e126d575
4
+ data.tar.gz: '087406d095bd00ae0d0655bbc9963c520ba3ef3a'
5
5
  SHA512:
6
- metadata.gz: b92044058db7ac4788d8e009b24c01db42378ef149edcf03b2c8453f9aaf0493e86a88619613cec9e59f9a3c47681e3864361279b8576f45e0f1cc2f4b4db4a7
7
- data.tar.gz: f473dc63d684deb3c79477ea9fe66d8fc8af66f7116ae4f8136d0edd29e926aeac773ce7ae38bd22af7574835bed30465346809baee71f247a9e065f2173b77f
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', 'aaron@tenderlovemaking.com')
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)
@@ -1,5 +1,5 @@
1
1
  require 'ricosat.so'
2
2
 
3
3
  class RicoSAT
4
- VERSION = '1.0.2'
4
+ VERSION = '1.0.3'
5
5
  end
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.2
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
- - aaron@tenderlovemaking.com
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