9e909d5be3
Update Bundler to 1.0.15. Update Rails to 2.3.12. Update rails_xss plugin. The latter two were the source of a considerable amount of grief, as rails_xss is now MUCH stricter about what string methods can be used. Also made it possible to use rake 0.9.x with Instiki. But you probably REALLY want to use ruby bundle exec rake ... instead of just saying rake ....
30 lines
1.1 KiB
Ruby
30 lines
1.1 KiB
Ruby
# -*- 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 = ["André Arko", "Terence Lee", "Carl Lerche", "Yehuda Katz"]
|
|
s.email = ["andre@arko.net"]
|
|
s.homepage = "http://gembundler.com"
|
|
s.summary = %q{The best way to manage your application's dependencies}
|
|
s.description = %q{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 "ronn"
|
|
s.add_development_dependency "rspec"
|
|
|
|
# Man files are required because they are ignored by git
|
|
man_files = Dir.glob("lib/bundler/man/**/*")
|
|
s.files = `git ls-files`.split("\n") + man_files
|
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
s.executables = %w(bundle)
|
|
s.require_paths = ["lib"]
|
|
end
|