bible 1.0.0 → 1.0.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.
- data/Rakefile +1 -1
- data/bin/bible.rb +6 -1
- metadata +1 -1
data/Rakefile
CHANGED
|
@@ -5,7 +5,7 @@ require 'rake/gempackagetask'
|
|
|
5
5
|
spec = Gem::Specification.new do |s|
|
|
6
6
|
s.name = "bible"
|
|
7
7
|
s.summary = "A library for parsing bible references and looking them up on the web."
|
|
8
|
-
s.version = "1.0.
|
|
8
|
+
s.version = "1.0.1"
|
|
9
9
|
s.author = "Justin Bailey"
|
|
10
10
|
s.email = "jgbailey@gmail.com"
|
|
11
11
|
|
data/bin/bible.rb
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
require 'rubygems'
|
|
2
2
|
require 'commandline'
|
|
3
|
-
|
|
3
|
+
begin
|
|
4
|
+
require 'win32console'
|
|
5
|
+
rescue LoadError
|
|
6
|
+
# no-op
|
|
7
|
+
end
|
|
8
|
+
|
|
4
9
|
require 'highline'
|
|
5
10
|
|
|
6
11
|
$:.unshift(File.dirname(__FILE__) + "/..") unless $:.include?(File.dirname(__FILE__) + "/..")
|
metadata
CHANGED
|
@@ -3,7 +3,7 @@ rubygems_version: 0.9.0
|
|
|
3
3
|
specification_version: 1
|
|
4
4
|
name: bible
|
|
5
5
|
version: !ruby/object:Gem::Version
|
|
6
|
-
version: 1.0.
|
|
6
|
+
version: 1.0.1
|
|
7
7
|
date: 2006-12-12 00:00:00 -08:00
|
|
8
8
|
summary: A library for parsing bible references and looking them up on the web.
|
|
9
9
|
require_paths:
|