Skip to content

Instantly share code, notes, and snippets.

@schas002
Last active August 29, 2015 14:13
Show Gist options
  • Save schas002/2b75d208cf7cca3b5efa to your computer and use it in GitHub Desktop.
Save schas002/2b75d208cf7cca3b5efa to your computer and use it in GitHub Desktop.
Ruby building instructions template

For now {Gem} isn't released on RubyGems. For now you could download a GitHub release. Or compile it from source:

$ gem build {Gem}.gemspec
Building RubyGem...
Name: {Gem}
Version: {Version}
File: {Gem}-{Version}.gem

$ gem install ./{Gem}-{Version}.gem
Installing... {Gem}-{Version}... Done...
1 gem installed

Yeehaw! {Gem} is live on RubyGems.

$ gem list -r {Gem}
| Remote gems
  {Gem} v{Version}
  
$ gem install {Gem}
Installing... {Requirements} {Gem}-{Version}... Done...
{Number of gems} installed

For now {Gem} isn't released x_x. For now you could compile it from source:

$ gem build {Gem}.gemspec
Building RubyGem...
Name: {Gem}
Version: {Version}
File: {Gem}-{Version}.gem

$ gem install ./{Gem}-{Version}.gem
Installing... {Gem}-{Version}... Done...
1 gem installed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment