Skip to content

Instantly share code, notes, and snippets.

@linusthe3rd
Created September 13, 2011 18:48
Show Gist options
  • Save linusthe3rd/1214669 to your computer and use it in GitHub Desktop.
Save linusthe3rd/1214669 to your computer and use it in GitHub Desktop.
mygem gem spec
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require 'mygem/version'
Gem::Specification.new do |s|
s.name = "MyGem"
s.version = MyGem::VERSION
s.authors = ["strife25"]
s.email = [""]
s.summary = "test gem."
s.description = "test gem."
s.homepage = ""
s.files = Dir['lib/**/*']
s.require_paths = ["lib"]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment