Rakefile 4.2 KB
Newer Older
D
Initial  
David Heinemeier Hansson 已提交
1 2 3 4 5 6 7 8 9 10
require 'rubygems'
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
require 'rake/packagetask'
require 'rake/gempackagetask'
require 'rake/contrib/rubyforgepublisher'

PKG_BUILD     = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
PKG_NAME      = 'activerecord'
11
PKG_VERSION   = '1.6.0' + PKG_BUILD
D
Initial  
David Heinemeier Hansson 已提交
12 13 14 15 16 17 18 19
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"

PKG_FILES = FileList[
    "lib/**/*", "test/**/*", "examples/**/*", "doc/**/*", "[A-Z]*", "install.rb", "rakefile"
].exclude(/\bCVS\b|~$/)


desc "Default Task"
20
task :default => [ :test_ruby_mysql, :test_mysql_ruby, :test_sqlite, :test_sqlite3, :test_postgresql ]
D
Initial  
David Heinemeier Hansson 已提交
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47

# Run the unit tests

Rake::TestTask.new("test_ruby_mysql") { |t|
  t.libs << "test" << "test/connections/native_mysql"
  t.pattern = 'test/*_test.rb'
  t.verbose = true
}

Rake::TestTask.new("test_mysql_ruby") { |t|
  t.libs << "test" << "test/connections/native_mysql"
  t.pattern = 'test/*_test.rb'
  t.verbose = true
}

Rake::TestTask.new("test_postgresql") { |t|
  t.libs << "test" << "test/connections/native_postgresql"
  t.pattern = 'test/*_test.rb'
  t.verbose = true
}

Rake::TestTask.new("test_sqlite") { |t|
  t.libs << "test" << "test/connections/native_sqlite"
  t.pattern = 'test/*_test.rb'
  t.verbose = true
}

48 49 50 51 52 53
Rake::TestTask.new("test_sqlite3") { |t|
  t.libs << "test" << "test/connections/native_sqlite3"
  t.pattern = 'test/*_test.rb'
  t.verbose = true
}

54 55 56 57 58 59
Rake::TestTask.new("test_sqlserver") { |t|
  t.libs << "test" << "test/connections/native_sqlserver"
  t.pattern = 'test/*_test.rb'
  t.verbose = true
}

60 61 62 63 64 65
Rake::TestTask.new("test_db2") { |t|
  t.libs << "test" << "test/connections/native_db2"
  t.pattern = 'test/*_test.rb'
  t.verbose = true
}

D
Initial  
David Heinemeier Hansson 已提交
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
# Generate the RDoc documentation

Rake::RDocTask.new { |rdoc|
  rdoc.rdoc_dir = 'doc'
  rdoc.title    = "Active Record -- Object-relation mapping put on rails"
  rdoc.options << '--line-numbers --inline-source --accessor cattr_accessor=object'
  rdoc.rdoc_files.include('README', 'RUNNING_UNIT_TESTS', 'CHANGELOG')
  rdoc.rdoc_files.include('lib/**/*.rb')
  rdoc.rdoc_files.exclude('lib/active_record/vendor/*')
  rdoc.rdoc_files.include('dev-utils/*.rb')
}


# Publish beta gem
desc "Publish the beta gem"
task :pgem => [:package] do 
82 83
  Rake::SshFilePublisher.new("davidhh@comox.textdrive.com", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload
  `ssh davidhh@comox.textdrive.com './gemupdate.sh'`
D
Initial  
David Heinemeier Hansson 已提交
84 85 86 87 88
end

# Publish documentation
desc "Publish the API documentation"
task :pdoc => [:rdoc] do 
89
  Rake::SshDirPublisher.new("davidhh@comox.textdrive.com", "public_html/ar", "doc").upload
D
Initial  
David Heinemeier Hansson 已提交
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
end


# Create compressed packages

dist_dirs = [ "lib", "test", "examples", "dev-utils" ]

spec = Gem::Specification.new do |s|
  s.name = PKG_NAME
  s.version = PKG_VERSION
  s.summary = "Implements the ActiveRecord pattern for ORM."
  s.description = %q{Implements the ActiveRecord pattern (Fowler, PoEAA) for ORM. It ties database tables and classes together for business objects, like Customer or Subscription, that can find, save, and destroy themselves without resorting to manual SQL.}

  s.files = [ "rakefile", "install.rb", "README", "RUNNING_UNIT_TESTS", "CHANGELOG" ]
  dist_dirs.each do |dir|
105
    s.files = s.files + Dir.glob( "#{dir}/**/*" ).delete_if { |item| item.include?( "\.svn" ) }
D
Initial  
David Heinemeier Hansson 已提交
106 107
  end
  s.files.delete "test/fixtures/fixture_database.sqlite"
108 109 110
  s.files.delete "test/fixtures/fixture_database_2.sqlite"
  s.files.delete "test/fixtures/fixture_database.sqlite3"
  s.files.delete "test/fixtures/fixture_database_2.sqlite3"
D
Initial  
David Heinemeier Hansson 已提交
111 112 113 114 115 116 117 118 119
  s.require_path = 'lib'
  s.autorequire = 'active_record'

  s.has_rdoc = true
  s.extra_rdoc_files = %w( README )
  s.rdoc_options.concat ['--main',  'README']
  
  s.author = "David Heinemeier Hansson"
  s.email = "david@loudthinking.com"
120
  s.homepage = "http://www.rubyonrails.com"
D
Initial  
David Heinemeier Hansson 已提交
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
  s.rubyforge_project = "activerecord"
end
  
Rake::GemPackageTask.new(spec) do |p|
  p.gem_spec = spec
  p.need_tar = true
  p.need_zip = true
end


task :lines do
  lines = 0
  codelines = 0
  Dir.foreach("lib/active_record") { |file_name| 
    next unless file_name =~ /.*rb/
    
    f = File.open("lib/active_record/" + file_name)

    while line = f.gets
      lines += 1
      next if line =~ /^\s*$/
      next if line =~ /^\s*#/
      codelines += 1
    end
  }
  puts "Lines #{lines}, LOC #{codelines}"
end