public
Description: IRB Power User Utility Belt
Homepage: http://utilitybelt.rubyforge.org
Clone URL: git://github.com/gilesbowkett/utility-belt.git
Search Repo:
Giles Bowkett (author)
Tue Feb 26 11:27:51 -0800 2008
utility-belt / utility_belt.gemspec
100644 22 lines (22 sloc) 0.734 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'rubygems'
SPEC = Gem::Specification.new do |s|
  s.name = "utility_belt"
  s.version = "1.0.7"
  s.author = "Giles Bowkett"
  s.email = "gilesb@gmail.com"
  s.homepage = "http://utilitybelt.rubyforge.org"
  s.rubyforge_project = "utility_belt"
  s.platform = Gem::Platform::RUBY
  s.summary = "A grab-bag of IRB power user madness."
  s.files = Dir.glob("**/*")
  %w{amazon google pastie}.each do |command_line_utility|
    s.executables << command_line_utility
  end
  s.require_path = "lib"
  s.test_file = "spec/utility_belt_spec.rb"
  s.has_rdoc = true
  s.extra_rdoc_files = ["README"]
  s.add_dependency("wirble", ">= 0.1.2")
  s.add_dependency("aws-s3", ">= 0.4.0")
  s.add_dependency("Platform", ">= 0.4.0")
end