Created
October 24, 2012 08:26
-
-
Save voxik/3944821 to your computer and use it in GitHub Desktop.
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
# -*- 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 = "[email protected]" | |
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