Sha256: 92b5a16c658b5e9a6c9867c707c7910c79bc0067bd528ebf8d324009007a75e9

Contents?: true

Size: 500 Bytes

Versions: 13

Compression:

Stored size: 500 Bytes

Contents

#!/usr/bin/env rake
# Add your own tasks in files placed in lib/tasks ending in .rake,
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.

require File.expand_path('../config/application', __FILE__)
require 'rake'

Iqvoc::SimilarTerms::Application.load_tasks

require 'bundler'
Bundler::GemHelper.install_tasks

desc "Build gem"
task :build do |t|
  `rm *.gem; gem build *.gemspec`
end

desc "Release gem"
task :release => :build do |t|
  `gem push *.gem`
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
iqvoc_similar_terms-2.11.4 Rakefile
iqvoc_similar_terms-2.11.3 Rakefile
iqvoc_similar_terms-2.7.0 Rakefile
iqvoc_similar_terms-0.8.0 Rakefile
iqvoc_similar_terms-0.7.1 Rakefile
iqvoc_similar_terms-0.7.0 Rakefile
iqvoc_similar_terms-0.6.1 Rakefile
iqvoc_similar_terms-0.6.0 Rakefile
iqvoc_similar_terms-0.5.3 Rakefile
iqvoc_similar_terms-0.5.2 Rakefile
iqvoc_similar_terms-0.5.1 Rakefile
iqvoc_similar_terms-0.5.0 Rakefile
iqvoc_similar_terms-0.1.0 Rakefile