Sha256: 49fe439832e09a4f092a552dd443bd98df87e98044649f85d5271da4eb5b4180

Contents?: true

Size: 832 Bytes

Versions: 36

Compression:

Stored size: 832 Bytes

Contents

require 'rake'
require 'rake/clean'
require 'rake/testtask'

require 'rubygems'
require 'rubygems/package_task'

spec = Gem::Specification.new do |s|
  s.name = 'ohloh_scm'
  s.version = '0.0.1'
  s.author = 'Robin Luckey'
  s.email = 'robin@ohloh.net'
  s.homepage = 'http://labs.ohloh.net'
  s.platform = Gem::Platform::RUBY
  s.summary = 'Ohloh Source Control Management Library'
  s.files = FileList['README', 'COPYING', '{bin,lib,test}/**/*']
  s.require_path = 'lib'
  s.executables = 'ohlog'
  s.has_rdoc = true
  s.extra_rdoc_files = ['README']
  s.test_files = FileList["test/**/*"]
end

Gem::PackageTask.new(spec) do |pkg|
  pkg.need_tar = true
  pkg.need_zip = true
end

Rake::TestTask.new :unit_tests do |t|
	t.test_files = FileList[File.dirname(__FILE__) + '/test/unit/**/*_test.rb']
end

task :default => :unit_tests

Version data entries

36 entries across 36 versions & 1 rubygems

Version Path
ohloh_scm-2.4.14 Rakefile
ohloh_scm-2.4.13 Rakefile
ohloh_scm-2.4.12 Rakefile
ohloh_scm-2.4.11 Rakefile
ohloh_scm-2.4.10 Rakefile
ohloh_scm-2.4.9 Rakefile
ohloh_scm-2.4.8 Rakefile
ohloh_scm-2.4.7 Rakefile
ohloh_scm-2.4.6 Rakefile
ohloh_scm-2.4.5 Rakefile
ohloh_scm-2.4.4 Rakefile
ohloh_scm-2.4.3 Rakefile
ohloh_scm-2.4.1 Rakefile
ohloh_scm-2.4.0 Rakefile
ohloh_scm-2.3.5 Rakefile
ohloh_scm-2.3.4 Rakefile
ohloh_scm-2.3.2 Rakefile
ohloh_scm-2.3.1 Rakefile
ohloh_scm-2.3.0 Rakefile
ohloh_scm-2.2.13 Rakefile