tairu 0.8.0 → 0.8.1

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 (3) hide show
  1. data/lib/tairu/version.rb +1 -1
  2. metadata +3 -5
  3. data/ext/mkrf_conf.rb +0 -20
data/lib/tairu/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Tairu
2
- VERSION = '0.8.0'
2
+ VERSION = '0.8.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tairu
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.8.1
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-12-09 00:00:00.000000000 Z
12
+ date: 2012-12-10 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: sequel
@@ -80,8 +80,7 @@ email:
80
80
  - scooterwadsworth@gmail.com
81
81
  executables:
82
82
  - tairu
83
- extensions:
84
- - ext/mkrf_conf.rb
83
+ extensions: []
85
84
  extra_rdoc_files: []
86
85
  files:
87
86
  - README.md
@@ -99,7 +98,6 @@ files:
99
98
  - lib/tairu/tile.rb
100
99
  - lib/tairu/version.rb
101
100
  - lib/tairu.rb
102
- - ext/mkrf_conf.rb
103
101
  homepage: https://github.com/scooterw/tairu
104
102
  licenses:
105
103
  - MIT
data/ext/mkrf_conf.rb DELETED
@@ -1,20 +0,0 @@
1
- require 'rubygems'
2
- require 'rubygems/command.rb'
3
- require 'rubygems/dependency_installer.rb'
4
-
5
- begin
6
- Gem::Command.build_args = ARGV
7
- rescue NoMethodError
8
- end
9
-
10
- inst = Gem::DependencyInstaller.new
11
-
12
- begin
13
- if defined?(JRUBY_VERSION)
14
- inst.install 'jdbc-sqlite3'
15
- else
16
- inst.install 'sqlite3'
17
- end
18
- rescue
19
- exit(1)
20
- end