Skip to content

Commit

Permalink
Added a push_all task.
Browse files Browse the repository at this point in the history
  • Loading branch information
djberg96 committed Sep 28, 2016
1 parent cdbadc8 commit 2bc2fb9
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Rakefile
Expand Up @@ -205,6 +205,13 @@ namespace :gem do
}
end

desc 'Push all gems for each supported OS'
task :push_all do
Dir["pkg/**/*.gem"].each{ |file|
sh "gem push #{file}"
}
end

desc 'Install the sys-proctable library as a gem'
task :install => [:create] do
gem_name = Dir['*.gem'].first
Expand Down

0 comments on commit 2bc2fb9

Please sign in to comment.