./lib/rambling-trie/tasks/gem.rb in rambling-trie-0.3.3 vs ./lib/rambling-trie/tasks/gem.rb in rambling-trie-0.3.4
- old
+ new
@@ -1,17 +1,17 @@
namespace :gem do
+ desc 'Build the rambling-trie gem'
task :build do
- desc 'Build the rambling-trie gem'
system 'gem build rambling-trie.gemspec'
end
+ desc 'Push the latest version of the rambling-trie gem'
task release: :build do
- desc 'Push the latest version of the rambling-trie gem'
system "gem push rambling-trie-#{Rambling::Trie::VERSION}.gem"
end
+ desc 'Output the current rambling-trie version'
task :version do
- desc 'Output the current rambling-trie version'
puts "rambling-trie #{Rambling::Trie::VERSION}"
end
end