Skip to content

Instantly share code, notes, and snippets.

@duggan
Created October 24, 2012 22:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save duggan/3949424 to your computer and use it in GitHub Desktop.
Save duggan/3949424 to your computer and use it in GitHub Desktop.
shlint gemspec (example)
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
Gem::Specification.new do |s|
s.name = "shlint"
s.version = "0.1.1"
s.platform = Gem::Platform::RUBY
s.authors = ["Ross Duggan"]
s.email = ["rduggan@engineyard.com"]
s.homepage = "http://github.com/duggan/shlint"
s.summary = "A linting tool for shell."
s.description = "Checks the syntax of your shellscript against known and available shells."
s.required_rubygems_version = ">= 1.3.6"
s.files = Dir.glob("{bin,lib}/**/*") + %w(LICENSE README.md)
s.executables = ['shlint', 'checkbashisms']
s.require_path = 'lib'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment