Last active
August 29, 2015 14:08
-
-
Save mkristian/b318c8501a79f548eee5 to your computer and use it in GitHub Desktop.
gem build example.gemspec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#-*- mode: ruby -*- | |
Gem::Specification.new do |s| | |
s.name = 'example' | |
s.version = "2.0.0" | |
s.author = 'example person' | |
s.email = [ '[email protected]' ] | |
s.summary = 'example' | |
# s.files << Dir[ '*file' ] | |
s.files << 'example.gemspec' | |
end | |
# vim: syntax=Ruby |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
:rubygems_api_key: something |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment