Skip to content

Instantly share code, notes, and snippets.

@voxik
Created October 24, 2012 08:26
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 voxik/3944821 to your computer and use it in GitHub Desktop.
Save voxik/3944821 to your computer and use it in GitHub Desktop.
# -*- encoding: utf-8 -*-
gemspec = Gem::Specification.new do |s|
s.name = "gem-nice-install"
s.version = "0.1.0"
s.summary = "A RubyGems plugin that improves gem installation user experience."
s.description = <<-EOF
A RubyGems plugin that improves gem installation user experience. If binary extension build fails,
it tries to install its development dependencies.
EOF
s.homepage = "https://github.com/voxik/gem-nice-install"
s.licenses = ["MIT"]
s.author = ["Vít Ondruch", "Bohuslav Kabrda", "Ivan Nečas", "Michal Fojtik"]
s.email = "vondruch@gmail.com"
s.add_dependency('ruby-dbus')
s.files = Dir["README.md", "MIT", "data/**/*.yml", "lib/**/*.rb"]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment