Sha256: 12b296012f416b3fc0ba3aea50074b3df507edb4d72268ec07be29327bf8a275
Contents?: true
Size: 1.54 KB
Versions: 5
Compression:
Stored size: 1.54 KB
Contents
require 'rubygems' require 'bundler' begin Bundler.setup(:default, :development) rescue Bundler::BundlerError => e $stderr.puts e.message $stderr.puts "Run `bundle install` to install missing gems" exit e.status_code end require 'rake' require 'jeweler' Jeweler::Tasks.new do |gem| # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options gem.name = "oci8_simple" gem.homepage = "http://github.com/unclebilly/oci8_simple" gem.license = "MIT" gem.summary = %Q{Run single statements against an arbitrary Oracle schema.} gem.description = %Q{Run single statements against an arbitrary Oracle schema. This client is intended to be used by simple command-line scripts to aid automation. This is *not* meant to replace an ORM such as ActiveRecord + OracleEnhancedAdapter. The only prerequisite to running this code is that you have installed the ruby-oci8 gem on your machine.} gem.email = "billy.reisinger@gmail.com" gem.authors = ["Billy Reisinger"] gem.add_dependency "ruby-oci8", "~> 2.0.4" gem.extra_rdoc_files = ['README.rdoc'] end Jeweler::RubygemsDotOrgTasks.new require 'rake/testtask' Rake::TestTask.new(:test) do |test| test.libs << 'lib' << 'test' test.pattern = 'test/**/*_test.rb' test.verbose = true end task :default => :test require 'rake/rdoctask' Rake::RDocTask.new do |rdoc| version = File.exist?('VERSION') ? File.read('VERSION') : "" rdoc.rdoc_dir = 'rdoc' rdoc.title = "oci8_simple #{version}" rdoc.rdoc_files.include('README*') rdoc.rdoc_files.include('lib/**/*.rb') end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
oci8_simple-0.4.2 | Rakefile |
oci8_simple-0.4.1 | Rakefile |
oci8_simple-0.4.0 | Rakefile |
oci8_simple-0.3.0 | Rakefile |
oci8_simple-0.2.0 | Rakefile |