Skip to content

Instantly share code, notes, and snippets.

@skamithi
Created June 28, 2013 15:14
Show Gist options
  • Save skamithi/5885436 to your computer and use it in GitHub Desktop.
Save skamithi/5885436 to your computer and use it in GitHub Desktop.
Most basic GemSpec. Call it <name_of_folder>.gemspec
Gem::Specification.new do |s|
s.name = "expect4r"
s.version = '0.1.0'
s.files = Dir["{lib,spec}/**/*", "[A-Z]*", "init.rb"] - ["Gemfile.lock"]
s.require_path = "lib"
s.summary = 'Expect functionality for network equipment'
s.author = ''
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment