Navigation Menu

Skip to content

Commit

Permalink
Add gem building support, and pushed v0.1.0 to gemcutter
Browse files Browse the repository at this point in the history
  • Loading branch information
jschementi committed Jan 14, 2010
1 parent 632f817 commit 1189ba0
Show file tree
Hide file tree
Showing 5 changed files with 75 additions and 4 deletions.
3 changes: 3 additions & 0 deletions src/History.txt
@@ -0,0 +1,3 @@
=== 0.1.0 / 2010-01-13

* First gem
34 changes: 34 additions & 0 deletions src/Manifest.txt
@@ -0,0 +1,34 @@
History.txt
Manifest.txt
README.txt
Rakefile
lib/dbd/mssql.rb
lib/dbd/mssql/database.rb
lib/dbd/mssql/driver.rb
lib/dbd/mssql/statement.rb
lib/dbd/mssql/types.rb
lib/dbi.rb
lib/dbi/base_classes.rb
lib/dbi/base_classes/database.rb
lib/dbi/base_classes/driver.rb
lib/dbi/base_classes/statement.rb
lib/dbi/binary.rb
lib/dbi/columninfo.rb
lib/dbi/exceptions.rb
lib/dbi/handles.rb
lib/dbi/handles/database.rb
lib/dbi/handles/driver.rb
lib/dbi/handles/statement.rb
lib/dbi/row.rb
lib/dbi/sql.rb
lib/dbi/sql/preparedstatement.rb
lib/dbi/sql_type_constants.rb
lib/dbi/trace.rb
lib/dbi/types.rb
lib/dbi/typeutil.rb
lib/dbi/utils.rb
lib/dbi/utils/date.rb
lib/dbi/utils/tableformatter.rb
lib/dbi/utils/time.rb
lib/dbi/utils/timestamp.rb
lib/dbi/utils/xmlformatter.rb
21 changes: 21 additions & 0 deletions src/README.txt
@@ -0,0 +1,21 @@
= IronRuby DBI

* http://github.com/casualjim/jschementi

== DESCRIPTION:

ADO.NET compatible DBD extension to ruby-dbo

== INSTALL:

* gem install ironruby-dbi

== DEVELOPERS:

After checking out the source, run:

$ rake newb

This task will install any missing dependencies, run the tests/specs,
and generate the RDoc.

17 changes: 15 additions & 2 deletions src/Rakefile
@@ -1,9 +1,22 @@
require 'rubygems'
require 'hoe'

$:.unshift 'lib'
require 'dbd/mssql'

Hoe.spec 'ironruby-dbi' do
developer 'Ivan Porto Carrero', 'ivan@flanders.co.nz'
self.version = DBI::DBD::MSSQL::VERSION
self.url = 'http://github.com/casualjim/ironruby-dbi'
extra_deps << ['deprecated', '>=2.0.1']
end

desc "Tests the dbd driver for adonet"
task :test_dbd do
ruby("test/ts_dbd.rb")
end


task :test => [:test_dbd]

task :default => :test
task :default => :test

4 changes: 2 additions & 2 deletions src/lib/dbd/mssql.rb
Expand Up @@ -7,9 +7,9 @@ module DBD

module MSSQL

VERSION = "0.2"
VERSION = "0.1.0"
USED_DBD_VERSION = "0.4.0"
DESCRIPTION = "ADO.NET Microsoft SQL Server DBI DBD"
DESCRIPTION = "ADO.NET DBI DBD"

require File.dirname(__FILE__) + "/mssql/types"

Expand Down

0 comments on commit 1189ba0

Please sign in to comment.