GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Description: Motto-mysql is a complementary library to enhance and make faster 'mysql-ruby' library.
Clone URL: git://github.com/kwatch/motto-mysql.git
Fix several bugs in 'motto-mysql.gemspec'.
kwatch (author)
Sat Oct 04 20:49:38 -0700 2008
commit  3eeaef84359b6a321c389887ffd5d9a97e30bbf7
tree    346465907d1f1205d5d6bb00673f05c7934c620a
parent  d68747269710f354314e20050a86c97627cddb49
...
1
 
 
 
2
3
4
 
 
5
6
7
...
12
13
14
15
 
16
17
18
19
20
21
22
 
23
24
25
...
 
1
2
3
4
 
 
5
6
7
8
9
...
14
15
16
 
17
18
19
20
21
22
23
 
24
25
26
27
0
@@ -1,7 +1,9 @@
0
-Gem::Specification.new do |s|
0
+require 'rubygems'
0
+
0
+spec = Gem::Specification.new do |s|
0
   s.name = "motto-mysql"
0
- s.author = ["makoto kuwata"]
0
- s.email = ["kwa.at.kuwata-lab.com"]
0
+ s.author = "makoto kuwata"
0
+ s.email = "kwa.at.kuwata-lab.com"
0
   s.version = "0.1.0"
0
   #s.platform = Gem::Platform::RUBY
0
   s.homepage = "http://rubyforge.org/projects/motto-mysql/"
0
@@ -12,14 +14,14 @@ Motto-mysql is a complementary library to enhance 'mysql-ruby' library.
0
 It adds some methods into Mysql::Result and Mysql::Stmt classes.
0
 Motto-mysql requires mysql-ruby 2.7.4 or later (recommended 2.7.5 or later).
0
 END
0
- s.files = ["README.rdoc", "setup.rb", "ext/*"]
0
+ s.files = ["README.rdoc", "setup.rb"] + Dir.glob("ext/**/*")
0
   #s.executable = "bin/xxx"
0
   #s.bindir = "bin"
0
   #s.test_file = "test/test_motto_mysql.rb"
0
   #s.add_dependency("mysql-ruby", [">= 2.7.4"])
0
   s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
0
   s.date = "2008-10-05"
0
- s.extensions = ["ext/motto-mysql/extconf.rb"]
0
+ s.extensions = ["ext/extconf.rb"]
0
   s.extra_rdoc_files = ["README.rdoc"]
0
   #s.has_rdoc = true
0
   s.rdoc_options = ["--quiet", "--title", "Motto-mysql Reference", "--main", "README.rdoc", "--inline-source"]

Comments

    No one has commented yet.