Sha256: 4868a3a67969db5a40fdc79ef9f66c658a8a81f474d6d66ebadcb75cfb230f62

Contents?: true

Size: 589 Bytes

Versions: 11

Compression:

Stored size: 589 Bytes

Contents

gem 'hoe', '>= 2.3.2'
require 'hoe'
gem 'newgem', '>= 1.5.0'
require 'newgem'
require './lib/choctop'

Hoe.plugin :newgem

$hoe = Hoe.spec 'choctop' do
  developer 'Dr Nic Williams', 'drnicwilliams@gmail.com'
  developer 'Chris Bailey', 'chris@cobaltedge.com'

  extra_deps << ['activesupport']
  extra_deps << ['builder','>= 2.1.2']
  extra_dev_deps << ['newgem', ">= #{::Newgem::VERSION}"]
end

task :release do
  sh "gem push pkg/#{$hoe.name}-#{$hoe.version}.gem"
end

require 'newgem/tasks' # load /tasks/*.rake
Dir['tasks/**/*.rake'].each { |t| load t }

task :default => [:features]

Version data entries

11 entries across 11 versions & 2 rubygems

Version Path
billymeltdown-choctop-0.11.0.8 Rakefile
billymeltdown-choctop-0.11.0.7 Rakefile
billymeltdown-choctop-0.11.0.6 Rakefile
billymeltdown-choctop-0.11.0.5 Rakefile
billymeltdown-choctop-0.11.0.4 Rakefile
billymeltdown-choctop-0.11.0.3 Rakefile
billymeltdown-choctop-0.11.0.2 Rakefile
billymeltdown-choctop-0.11.0.1 Rakefile
billymeltdown-choctop-0.11.0 Rakefile
choctop-0.11.1 Rakefile
choctop-0.11.0 Rakefile