Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
sdhull committed Oct 5, 2010
0 parents commit d7245f0
Show file tree
Hide file tree
Showing 4 changed files with 706 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .gemspec
@@ -0,0 +1,19 @@
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)

Gem::Specification.new do |s|
s.name = "activerecord-sybase-adapter"
s.version = 1.0
s.platform = Gem::Platform::RUBY
s.authors = ["John R. Sheets", "Will Sobel"]
s.email = [""]
s.homepage = "http://dev.rubyonrails.org/ticket/2030"
s.summary = "Make ActiveRecord talk to Sybase"
s.description = ""

s.required_rubygems_version = ">= 1.3.6"

s.files = Dir.glob("lib/**/*") + %w(README.markdown)
s.require_path = 'lib'
end
4 changes: 4 additions & 0 deletions README.markdown
@@ -0,0 +1,4 @@
ActiveRecord Sybase Adapter
==========================

Flawed though it is, my office still depends on this for our app. At some point, we may be able to retire this completely, but for now, we need a source for this in our Gemfile.
19 changes: 19 additions & 0 deletions activerecord-sybase-adapter.gemspec
@@ -0,0 +1,19 @@
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)

Gem::Specification.new do |s|
s.name = "activerecord-sybase-adapter"
s.version = 1.0
s.platform = Gem::Platform::RUBY
s.authors = ["?"]
s.email = [""]
s.homepage = ""
s.summary = "Make ActiveRecord talk to Sybase"
s.description = ""

s.required_rubygems_version = ">= 1.3.6"

s.files = Dir.glob("lib/**/*") + %w(README.markdown)
s.require_path = 'lib'
end

0 comments on commit d7245f0

Please sign in to comment.