Version bump to 0.1.0
This commit is contained in:
parent
e6eb502e8e
commit
11dbec7a4d
36
Rakefile
36
Rakefile
|
@ -1,22 +1,22 @@
|
||||||
# encoding: UTF-8
|
# encoding: UTF-8
|
||||||
# begin
|
begin
|
||||||
# require 'jeweler'
|
require 'jeweler'
|
||||||
# Jeweler::Tasks.new do |gem|
|
Jeweler::Tasks.new do |gem|
|
||||||
# gem.name = "yajl-ruby"
|
gem.name = "mysql2"
|
||||||
# gem.summary = "Ruby C bindings to the excellent Yajl JSON stream-based parser library."
|
gem.summary = "A simple, fast Mysql library for Ruby, binding to libmysql"
|
||||||
# gem.email = "seniorlopez@gmail.com"
|
gem.email = "seniorlopez@gmail.com"
|
||||||
# gem.homepage = "http://github.com/brianmario/yajl-ruby"
|
gem.homepage = "http://github.com/brianmario/mysql2"
|
||||||
# gem.authors = ["Brian Lopez", "Lloyd Hilaiel"]
|
gem.authors = ["Brian Lopez"]
|
||||||
# gem.require_paths = ["lib", "ext"]
|
gem.require_paths = ["lib", "ext"]
|
||||||
# gem.extra_rdoc_files = `git ls-files *.rdoc`.split("\n")
|
gem.extra_rdoc_files = `git ls-files *.rdoc`.split("\n")
|
||||||
# gem.files = `git ls-files`.split("\n")
|
gem.files = `git ls-files`.split("\n")
|
||||||
# gem.extensions = ["ext/extconf.rb"]
|
gem.extensions = ["ext/extconf.rb"]
|
||||||
# gem.files.include %w(lib/jeweler/templates/.document lib/jeweler/templates/.gitignore)
|
gem.files.include %w(lib/jeweler/templates/.document lib/jeweler/templates/.gitignore)
|
||||||
# gem.rubyforge_project = "yajl-ruby"
|
# gem.rubyforge_project = "mysql2"
|
||||||
# end
|
end
|
||||||
# rescue LoadError
|
rescue LoadError
|
||||||
# puts "Jeweler, or one of its dependencies, is not available. Install it with: sudo gem install jeweler -s http://gems.github.com"
|
puts "Jeweler, or one of its dependencies, is not available. Install it with: sudo gem install jeweler -s http://gems.github.com"
|
||||||
# end
|
end
|
||||||
|
|
||||||
require 'rake'
|
require 'rake'
|
||||||
require 'spec/rake/spectask'
|
require 'spec/rake/spectask'
|
||||||
|
|
|
@ -0,0 +1,52 @@
|
||||||
|
# Generated by jeweler
|
||||||
|
# DO NOT EDIT THIS FILE DIRECTLY
|
||||||
|
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
||||||
|
# -*- encoding: utf-8 -*-
|
||||||
|
|
||||||
|
Gem::Specification.new do |s|
|
||||||
|
s.name = %q{mysql2}
|
||||||
|
s.version = "0.0.1"
|
||||||
|
|
||||||
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
||||||
|
s.authors = ["Brian Lopez"]
|
||||||
|
s.date = %q{2010-04-04}
|
||||||
|
s.email = %q{seniorlopez@gmail.com}
|
||||||
|
s.extensions = ["ext/extconf.rb"]
|
||||||
|
s.files = [
|
||||||
|
".gitignore",
|
||||||
|
"Rakefile",
|
||||||
|
"VERSION",
|
||||||
|
"benchmark/escape.rb",
|
||||||
|
"benchmark/query.rb",
|
||||||
|
"ext/extconf.rb",
|
||||||
|
"ext/mysql2_ext.c",
|
||||||
|
"ext/mysql2_ext.h",
|
||||||
|
"lib/mysql2.rb",
|
||||||
|
"spec/mysql2/client_spec.rb",
|
||||||
|
"spec/mysql2/result_spec.rb",
|
||||||
|
"spec/rcov.opts",
|
||||||
|
"spec/spec.opts",
|
||||||
|
"spec/spec_helper.rb"
|
||||||
|
]
|
||||||
|
s.homepage = %q{http://github.com/brianmario/mysql2}
|
||||||
|
s.rdoc_options = ["--charset=UTF-8"]
|
||||||
|
s.require_paths = ["lib", "ext"]
|
||||||
|
s.rubygems_version = %q{1.3.6}
|
||||||
|
s.summary = %q{A simple, fast Mysql library for Ruby, binding to libmysql}
|
||||||
|
s.test_files = [
|
||||||
|
"spec/mysql2/client_spec.rb",
|
||||||
|
"spec/mysql2/result_spec.rb",
|
||||||
|
"spec/spec_helper.rb"
|
||||||
|
]
|
||||||
|
|
||||||
|
if s.respond_to? :specification_version then
|
||||||
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
||||||
|
s.specification_version = 3
|
||||||
|
|
||||||
|
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
||||||
|
else
|
||||||
|
end
|
||||||
|
else
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
Loading…
Reference in New Issue