akitaonrails-utility_belt 1.0.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. data/History.txt +5 -0
  2. data/Manifest.txt +7 -0
  3. data/README +348 -0
  4. data/bin/amazon +16 -0
  5. data/bin/google +7 -0
  6. data/bin/pastie +7 -0
  7. data/html/andreas00.css +449 -0
  8. data/html/authorship.html +86 -0
  9. data/html/bg.gif +0 -0
  10. data/html/front.jpg +0 -0
  11. data/html/index.html +81 -0
  12. data/html/menubg.gif +0 -0
  13. data/html/menubg2.gif +0 -0
  14. data/html/test.jpg +0 -0
  15. data/html/usage.html +298 -0
  16. data/lib/utility_belt.rb +22 -0
  17. data/lib/utility_belt/amazon_upload_shortcut.rb +25 -0
  18. data/lib/utility_belt/clipboard.rb +68 -0
  19. data/lib/utility_belt/command_history.rb +129 -0
  20. data/lib/utility_belt/convertable_to_file.rb +34 -0
  21. data/lib/utility_belt/equipper.rb +71 -0
  22. data/lib/utility_belt/google.rb +26 -0
  23. data/lib/utility_belt/hash_math.rb +13 -0
  24. data/lib/utility_belt/interactive_editor.rb +81 -0
  25. data/lib/utility_belt/irb_options.rb +3 -0
  26. data/lib/utility_belt/irb_verbosity_control.rb +30 -0
  27. data/lib/utility_belt/is_an.rb +4 -0
  28. data/lib/utility_belt/language_greps.rb +28 -0
  29. data/lib/utility_belt/not.rb +15 -0
  30. data/lib/utility_belt/pastie.rb +29 -0
  31. data/lib/utility_belt/pipe.rb +24 -0
  32. data/lib/utility_belt/print_methods.rb +72 -0
  33. data/lib/utility_belt/rails_finder_shortcut.rb +18 -0
  34. data/lib/utility_belt/rails_verbosity_control.rb +8 -0
  35. data/lib/utility_belt/string_to_proc.rb +72 -0
  36. data/lib/utility_belt/symbol_to_proc.rb +30 -0
  37. data/lib/utility_belt/webbrowser.rb +37 -0
  38. data/lib/utility_belt/wirble.rb +83 -0
  39. data/lib/utility_belt/with.rb +21 -0
  40. data/spec/convertable_to_file_spec.rb +31 -0
  41. data/spec/equipper_spec.rb +70 -0
  42. data/spec/hash_math_spec.rb +17 -0
  43. data/spec/interactive_editor_spec.rb +146 -0
  44. data/spec/language_greps_spec.rb +9 -0
  45. data/spec/pastie_spec.rb +92 -0
  46. data/spec/pipe_spec.rb +30 -0
  47. data/spec/spec_helper.rb +8 -0
  48. data/spec/string_to_proc_spec.rb +41 -0
  49. data/spec/utility_belt_spec.rb +4 -0
  50. data/utility_belt.gemspec +22 -0
  51. metadata +136 -0
@@ -0,0 +1,4 @@
1
+ require File.join(File.dirname(__FILE__), "spec_helper")
2
+ # yeah, I know. I know! but you try to write specs for code which launches vi. most of this was
3
+ # already written by the time I started tasting the BDD Kool-Aid. HOWEVER! any new patches are
4
+ # very welcome, but MUST be accompanied by a spec or an absolutely airtight reason why not.
@@ -0,0 +1,22 @@
1
+ #require 'rubygems'
2
+ SPEC = Gem::Specification.new do |s|
3
+ s.name = "utility_belt"
4
+ s.version = "1.0.10"
5
+ s.author = "Giles Bowkett"
6
+ s.email = "gilesb@gmail.com"
7
+ s.homepage = "http://utilitybelt.rubyforge.org"
8
+ s.rubyforge_project = "utility_belt"
9
+ s.platform = Gem::Platform::RUBY
10
+ s.summary = "A grab-bag of IRB power user madness. -- now with linux"
11
+ 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-1.0.10.gem", "utility_belt.gemspec"]
12
+ %w{amazon google pastie}.each do |command_line_utility|
13
+ s.executables << command_line_utility
14
+ end
15
+ s.require_path = "lib"
16
+ s.test_file = "spec/utility_belt_spec.rb"
17
+ s.has_rdoc = true
18
+ s.extra_rdoc_files = ["README"]
19
+ s.add_dependency("wirble", ">= 0.1.2")
20
+ s.add_dependency("aws-s3", ">= 0.4.0")
21
+ s.add_dependency("Platform", ">= 0.4.0")
22
+ end
metadata ADDED
@@ -0,0 +1,136 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: akitaonrails-utility_belt
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.10
5
+ platform: ruby
6
+ authors:
7
+ - Giles Bowkett
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2008-08-13 00:00:00 -07:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: wirble
17
+ version_requirement:
18
+ version_requirements: !ruby/object:Gem::Requirement
19
+ requirements:
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 0.1.2
23
+ version:
24
+ - !ruby/object:Gem::Dependency
25
+ name: aws-s3
26
+ version_requirement:
27
+ version_requirements: !ruby/object:Gem::Requirement
28
+ requirements:
29
+ - - ">="
30
+ - !ruby/object:Gem::Version
31
+ version: 0.4.0
32
+ version:
33
+ - !ruby/object:Gem::Dependency
34
+ name: Platform
35
+ version_requirement:
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: 0.4.0
41
+ version:
42
+ description:
43
+ email: gilesb@gmail.com
44
+ executables:
45
+ - amazon
46
+ - google
47
+ - pastie
48
+ extensions: []
49
+
50
+ extra_rdoc_files:
51
+ - README
52
+ files:
53
+ - bin
54
+ - bin/amazon
55
+ - bin/google
56
+ - bin/pastie
57
+ - History.txt
58
+ - html
59
+ - html/andreas00.css
60
+ - html/authorship.html
61
+ - html/bg.gif
62
+ - html/front.jpg
63
+ - html/index.html
64
+ - html/menubg.gif
65
+ - html/menubg2.gif
66
+ - html/test.jpg
67
+ - html/usage.html
68
+ - lib
69
+ - lib/utility_belt
70
+ - lib/utility_belt/amazon_upload_shortcut.rb
71
+ - lib/utility_belt/clipboard.rb
72
+ - lib/utility_belt/command_history.rb
73
+ - lib/utility_belt/convertable_to_file.rb
74
+ - lib/utility_belt/equipper.rb
75
+ - lib/utility_belt/google.rb
76
+ - lib/utility_belt/hash_math.rb
77
+ - lib/utility_belt/interactive_editor.rb
78
+ - lib/utility_belt/irb_options.rb
79
+ - lib/utility_belt/irb_verbosity_control.rb
80
+ - lib/utility_belt/is_an.rb
81
+ - lib/utility_belt/language_greps.rb
82
+ - lib/utility_belt/not.rb
83
+ - lib/utility_belt/pastie.rb
84
+ - lib/utility_belt/pipe.rb
85
+ - lib/utility_belt/print_methods.rb
86
+ - lib/utility_belt/rails_finder_shortcut.rb
87
+ - lib/utility_belt/rails_verbosity_control.rb
88
+ - lib/utility_belt/string_to_proc.rb
89
+ - lib/utility_belt/symbol_to_proc.rb
90
+ - lib/utility_belt/webbrowser.rb
91
+ - lib/utility_belt/wirble.rb
92
+ - lib/utility_belt/with.rb
93
+ - lib/utility_belt.rb
94
+ - Manifest.txt
95
+ - README
96
+ - spec
97
+ - spec/convertable_to_file_spec.rb
98
+ - spec/equipper_spec.rb
99
+ - spec/hash_math_spec.rb
100
+ - spec/interactive_editor_spec.rb
101
+ - spec/language_greps_spec.rb
102
+ - spec/pastie_spec.rb
103
+ - spec/pipe_spec.rb
104
+ - spec/spec_helper.rb
105
+ - spec/string_to_proc_spec.rb
106
+ - spec/utility_belt_spec.rb
107
+ - utility_belt-1.0.10.gem
108
+ - utility_belt.gemspec
109
+ has_rdoc: true
110
+ homepage: http://utilitybelt.rubyforge.org
111
+ post_install_message:
112
+ rdoc_options: []
113
+
114
+ require_paths:
115
+ - lib
116
+ required_ruby_version: !ruby/object:Gem::Requirement
117
+ requirements:
118
+ - - ">="
119
+ - !ruby/object:Gem::Version
120
+ version: "0"
121
+ version:
122
+ required_rubygems_version: !ruby/object:Gem::Requirement
123
+ requirements:
124
+ - - ">="
125
+ - !ruby/object:Gem::Version
126
+ version: "0"
127
+ version:
128
+ requirements: []
129
+
130
+ rubyforge_project: utility_belt
131
+ rubygems_version: 1.2.0
132
+ signing_key:
133
+ specification_version: 2
134
+ summary: A grab-bag of IRB power user madness. -- now with linux
135
+ test_files:
136
+ - spec/utility_belt_spec.rb