Skip to content

Instantly share code, notes, and snippets.

@dtrasbo
Created April 3, 2010 13:13
Show Gist options
  • Save dtrasbo/354468 to your computer and use it in GitHub Desktop.
Save dtrasbo/354468 to your computer and use it in GitHub Desktop.
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'bundler/version'
Gem::Specification.new do |s|
s.name = "bundler"
s.version = Bundler::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Carl Lerche", "Yehuda Katz", "André Arko"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/carlhuda/bundler"
s.summary = "The best way to manage your application's dependencies"
s.description = "Bundler manages an application's dependencies through its entire life, across many machines, systematically and repeatably"
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = "bundler"
s.add_development_dependency "rspec"
s.files = Dir.glob("{bin,lib}/**/*") + %w(LICENSE README.md ROADMAP.md CHANGELOG.md)
s.executables = ['bundle']
s.require_path = 'lib'
end
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'bundler/version'
Gem::Specification.new do |s|
s.name = "bundler"
s.version = Bundler::VERSION
s.authors = ["Carl Lerche", "Yehuda Katz", "André Arko"]
s.email = "[email protected]"
s.summary = "The best way to manage your application's dependencies"
s.description = "Bundler manages an application's dependencies through its entire life, across many machines, systematically and repeatably"
s.homepage = "http://github.com/carlhuda/bundler"
s.required_rubygems_version = ">= 1.3.6"
s.add_development_dependency "rspec"
s.files = Dir.glob("{bin,lib}/**/*") + %w(LICENSE README.md ROADMAP.md CHANGELOG.md)
s.executables << 'bundle'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment