Sha256: 274a1ca6a4ae12b8e0e374069d4f5833bd76f6b44c0e9caad8ab566d176ab584

Contents?: true

Size: 1.7 KB

Versions: 11

Compression:

Stored size: 1.7 KB

Contents

require 'rubygems'
require 'rake'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = "socialcast-git-extensions"
    gem.summary = %Q{git extension scripts for socialcast workflow}
    gem.description = %Q{git extension scripts for socialcast workflow}
    gem.email = "ryan@socialcast.com"
    gem.homepage = "http://github.com/wireframe/socialcast-git-extensions"
    gem.authors = ["Ryan Sonnek"]
    gem.add_development_dependency "thoughtbot-shoulda", ">= 0"
    gem.add_runtime_dependency "grit", ">= 0"
    gem.add_runtime_dependency "wireframe-jira4r", ">= 0"
    gem.add_runtime_dependency "activesupport", ">= 0"
    gem.add_runtime_dependency "git_remote_branch", ">= 0"
    # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
  end
  Jeweler::GemcutterTasks.new
rescue LoadError
  puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
end

require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
  test.libs << 'lib' << 'test'
  test.pattern = 'test/**/test_*.rb'
  test.verbose = true
end

begin
  require 'rcov/rcovtask'
  Rcov::RcovTask.new do |test|
    test.libs << 'test'
    test.pattern = 'test/**/test_*.rb'
    test.verbose = true
  end
rescue LoadError
  task :rcov do
    abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
  end
end

task :test => :check_dependencies

task :default => :test

require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "socialcast-git-extensions #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
socialcast-git-extensions-1.3.1 Rakefile
socialcast-git-extensions-1.3.0 Rakefile
socialcast-git-extensions-1.2.0 Rakefile
socialcast-git-extensions-1.1.0 Rakefile
socialcast-git-extensions-1.0.0 Rakefile
socialcast-git-extensions-0.12.2 Rakefile
socialcast-git-extensions-0.12.1 Rakefile
socialcast-git-extensions-0.12.0 Rakefile
socialcast-git-extensions-0.11.2 Rakefile
socialcast-git-extensions-0.11.1 Rakefile
socialcast-git-extensions-0.11.0 Rakefile