akitaonrails / utility-belt forked from gilesbowkett/utility-belt

IRB Power User Utility Belt

This URL has Read+Write access

akitaonrails (author)
Tue Oct 07 18:41:04 -0700 2008
commit  d0215eb5ab7ad6db042a7877ee2ae5f648c6378b
tree    44b665553199f4c097b04089a3a4aa99dfd5b873
parent  a607841c8bd8cec57fb97d723b42f85a15931bfe
utility-belt / utility_belt.gemspec
100644 24 lines (23 sloc) 2.242 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#require 'rubygems'
SPEC = Gem::Specification.new do |s|
  s.name = "utility_belt"
  s.version = "1.0.12"
  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. -- now with linux"
  s.files = ["bin", "bin/amazon", "bin/google", "bin/pastie", "History.txt", "html", "html/andreas00.css", "html/authorship.html", "html/bg.gif", "html/front.jpg", "html/index.html", "html/menubg.gif", "html/menubg2.gif", "html/test.jpg", "html/usage.html", "lib", "lib/utility_belt", "lib/utility_belt/amazon_upload_shortcut.rb", "lib/utility_belt/clipboard.rb", "lib/utility_belt/command_history.rb", "lib/utility_belt/convertable_to_file.rb", "lib/utility_belt/equipper.rb", "lib/utility_belt/google.rb", "lib/utility_belt/hash_math.rb", "lib/utility_belt/interactive_editor.rb", "lib/utility_belt/irb_options.rb", "lib/utility_belt/irb_verbosity_control.rb", "lib/utility_belt/is_an.rb", "lib/utility_belt/language_greps.rb", "lib/utility_belt/not.rb", "lib/utility_belt/pastie.rb", "lib/utility_belt/pipe.rb", "lib/utility_belt/print_methods.rb", "lib/utility_belt/rails_finder_shortcut.rb", "lib/utility_belt/rails_verbosity_control.rb", "lib/utility_belt/string_to_proc.rb", "lib/utility_belt/symbol_to_proc.rb", "lib/utility_belt/webbrowser.rb", "lib/utility_belt/wirble.rb", "lib/utility_belt/with.rb", "lib/utility_belt.rb", "Manifest.txt", "README", "spec", "spec/convertable_to_file_spec.rb", "spec/equipper_spec.rb", "spec/hash_math_spec.rb", "spec/interactive_editor_spec.rb", "spec/language_greps_spec.rb", "spec/pastie_spec.rb", "spec/pipe_spec.rb", "spec/spec_helper.rb", "spec/string_to_proc_spec.rb", "spec/utility_belt_spec.rb", "utility_belt.gemspec"]
  %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.5.1")
  s.add_dependency("Platform", ">= 0.4.0")
  s.add_dependency("ruby2ruby", ">= 1.1.9")
end