Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
lobbyist-ruby / deploy.rb
Size: Mime:
#!/usr/bin/env ruby

file_name = %x(gem build lobbyist.gemspec |  awk '/File/ {print $2}' -)
raise "Build failed!" unless file_name

command = "curl -F package=@#{file_name.chomp} https://push.fury.io/P7qkxZzYFkrcJPGnWV43/customerlobby"
exec(command)