Skip to content

Commit

Permalink
Add Rubyforge hoe plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
nicksieger committed Jun 17, 2011
1 parent 81ebce7 commit 9f2f414
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions adapters/derby/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ require "jdbc/derby"
begin
require 'hoe'
Hoe.plugin :gemcutter
Hoe.plugin :rubyforge
hoe = Hoe.spec("activerecord-jdbcderby-adapter") do |p|
p.version = ArJdbc::Version::VERSION
p.rubyforge_name = "jruby-extras"
Expand Down
1 change: 1 addition & 0 deletions adapters/h2/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ require "jdbc/h2"
begin
require 'hoe'
Hoe.plugin :gemcutter
Hoe.plugin :rubyforge
hoe = Hoe.spec("activerecord-jdbch2-adapter") do |p|
p.version = ArJdbc::Version::VERSION
p.rubyforge_name = "jruby-extras"
Expand Down
1 change: 1 addition & 0 deletions adapters/hsqldb/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ require "jdbc/hsqldb"
begin
require 'hoe'
Hoe.plugin :gemcutter
Hoe.plugin :rubyforge
hoe = Hoe.spec("activerecord-jdbchsqldb-adapter") do |p|
p.version = ArJdbc::Version::VERSION
p.rubyforge_name = "jruby-extras"
Expand Down
1 change: 1 addition & 0 deletions adapters/mssql/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ require "jdbc/jtds"
begin
require 'hoe'
Hoe.plugin :gemcutter
Hoe.plugin :rubyforge
hoe = Hoe.spec("activerecord-jdbcmssql-adapter") do |p|
p.version = ArJdbc::Version::VERSION
p.rubyforge_name = "jruby-extras"
Expand Down
1 change: 1 addition & 0 deletions adapters/mysql/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ require "jdbc/mysql"
begin
require 'hoe'
Hoe.plugin :gemcutter
Hoe.plugin :rubyforge
hoe = Hoe.spec("activerecord-jdbcmysql-adapter") do |p|
p.version = ArJdbc::Version::VERSION
p.rubyforge_name = "jruby-extras"
Expand Down
1 change: 1 addition & 0 deletions adapters/postgresql/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ require "jdbc/postgres"
begin
require 'hoe'
Hoe.plugin :gemcutter
Hoe.plugin :rubyforge
hoe = Hoe.spec("activerecord-jdbcpostgresql-adapter") do |p|
p.version = ArJdbc::Version::VERSION
p.rubyforge_name = "jruby-extras"
Expand Down
1 change: 1 addition & 0 deletions adapters/sqlite3/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ require "jdbc/sqlite3"
begin
require 'hoe'
Hoe.plugin :gemcutter
Hoe.plugin :rubyforge
hoe = Hoe.spec("activerecord-jdbcsqlite3-adapter") do |p|
p.version = ArJdbc::Version::VERSION
p.rubyforge_name = "jruby-extras"
Expand Down
1 change: 1 addition & 0 deletions drivers/derby/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ require "jdbc/derby"
begin
require 'hoe'
Hoe.plugin :gemcutter
Hoe.plugin :rubyforge
Hoe.spec("jdbc-derby") do |p|
version = Jdbc::Derby::VERSION
version += '.' + ENV['DRIVER_REV'] if ENV['DRIVER_REV']
Expand Down
1 change: 1 addition & 0 deletions drivers/h2/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ require "jdbc/h2"
begin
require 'hoe'
Hoe.plugin :gemcutter
Hoe.plugin :rubyforge
Hoe.spec("jdbc-h2") do |p|
version = Jdbc::H2::VERSION
version += '.' + ENV['DRIVER_REV'] if ENV['DRIVER_REV']
Expand Down
1 change: 1 addition & 0 deletions drivers/hsqldb/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ require "jdbc/hsqldb"
begin
require 'hoe'
Hoe.plugin :gemcutter
Hoe.plugin :rubyforge
Hoe.spec("jdbc-hsqldb") do |p|
version = Jdbc::HSQLDB::VERSION
version += '.' + ENV['DRIVER_REV'] if ENV['DRIVER_REV']
Expand Down
1 change: 1 addition & 0 deletions drivers/jtds/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ require "jdbc/jtds"
begin
require 'hoe'
Hoe.plugin :gemcutter
Hoe.plugin :rubyforge
Hoe.spec("jdbc-jtds") do |p|
version = Jdbc::JTDS::VERSION
version += '.' + ENV['DRIVER_REV'] if ENV['DRIVER_REV']
Expand Down
1 change: 1 addition & 0 deletions drivers/mysql/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ require "jdbc/mysql"
begin
require 'hoe'
Hoe.plugin :gemcutter
Hoe.plugin :rubyforge
Hoe.spec("jdbc-mysql") do |p|
version = Jdbc::MySQL::VERSION
version += '.' + ENV['DRIVER_REV'] if ENV['DRIVER_REV']
Expand Down
1 change: 1 addition & 0 deletions drivers/postgres/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ require "jdbc/postgres"
begin
require 'hoe'
Hoe.plugin :gemcutter
Hoe.plugin :rubyforge
Hoe.spec("jdbc-postgres") do |p|
version = Jdbc::Postgres::VERSION
version += '.' + ENV['DRIVER_REV'] if ENV['DRIVER_REV']
Expand Down
1 change: 1 addition & 0 deletions drivers/sqlite3/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ require "jdbc/sqlite3"
begin
require 'hoe'
Hoe.plugin :gemcutter
Hoe.plugin :rubyforge
Hoe.spec("jdbc-sqlite3") do |p|
version = Jdbc::SQLite3::VERSION
version += '.' + ENV['DRIVER_REV'] if ENV['DRIVER_REV']
Expand Down
1 change: 1 addition & 0 deletions rakelib/package.rake
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ require File.dirname(__FILE__) + "/../lib/arjdbc/version"
begin
require 'hoe'
Hoe.plugin :gemcutter
Hoe.plugin :rubyforge
hoe = Hoe.spec("activerecord-jdbc-adapter") do |p|
p.version = ArJdbc::Version::VERSION
p.spec_extras[:files] = MANIFEST
Expand Down

0 comments on commit 9f2f414

Please sign in to comment.