Sha256: cd279c946a55e769d462c0c35fb470069f7ca9d393c3c64b59fa85b779a3ad07

Contents?: true

Size: 276 Bytes

Versions: 6

Compression:

Stored size: 276 Bytes

Contents

def gemfile
  Dir['pkg/*'].sort.last
end

task :install do
  sh 'gem build gitdoc.gemspec'
  sh 'mv *.gem pkg/'
  sh "gem install -l #{gemfile}"
end

task :tag do
  sh "git tag -a v`cat VERSION` `git rev-parse HEAD` -m ''"
end

task :release do
  sh "gem push #{gemfile}"
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
gitdoc-4.5.0 Rakefile
gitdoc-4.4.0 Rakefile
gitdoc-4.3.0 Rakefile
gitdoc-4.2.0 Rakefile
gitdoc-4.1.0 Rakefile
gitdoc-4.0.0 Rakefile