FreedomCoder-utility_belt 1.1.1

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 +372 -0
  4. data/bin/amazon +16 -0
  5. data/bin/google +7 -0
  6. data/bin/pastie +7 -0
  7. data/bin/twitt +15 -0
  8. data/html/andreas00.css +449 -0
  9. data/html/authorship.html +86 -0
  10. data/html/bg.gif +0 -0
  11. data/html/front.jpg +0 -0
  12. data/html/index.html +81 -0
  13. data/html/menubg.gif +0 -0
  14. data/html/menubg2.gif +0 -0
  15. data/html/test.jpg +0 -0
  16. data/html/usage.html +298 -0
  17. data/lib/utility_belt.rb +22 -0
  18. data/lib/utility_belt/amazon_upload_shortcut.rb +25 -0
  19. data/lib/utility_belt/clipboard.rb +70 -0
  20. data/lib/utility_belt/command_history.rb +110 -0
  21. data/lib/utility_belt/convertable_to_file.rb +34 -0
  22. data/lib/utility_belt/equipper.rb +71 -0
  23. data/lib/utility_belt/google.rb +34 -0
  24. data/lib/utility_belt/hash_math.rb +13 -0
  25. data/lib/utility_belt/interactive_editor.rb +78 -0
  26. data/lib/utility_belt/irb_options.rb +3 -0
  27. data/lib/utility_belt/irb_verbosity_control.rb +30 -0
  28. data/lib/utility_belt/is_an.rb +4 -0
  29. data/lib/utility_belt/language_greps.rb +28 -0
  30. data/lib/utility_belt/not.rb +15 -0
  31. data/lib/utility_belt/pastie.rb +35 -0
  32. data/lib/utility_belt/pipe.rb +24 -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/twitty.rb +58 -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 +38 -0
  51. metadata +145 -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,38 @@
1
+ Gem::Specification.new do |s|
2
+ s.name = "utility_belt"
3
+ s.version = "1.1.1"
4
+ s.author = "Giles Bowkett"
5
+ s.email = "gilesb@gmail.com"
6
+ s.homepage = "http://utilitybelt.rubyforge.org"
7
+ s.rubyforge_project = "utility_belt"
8
+ s.platform = Gem::Platform::RUBY
9
+ s.summary = "A grab-bag of IRB power user madness. (With Linux Support!)"
10
+ s.files = ["bin", "bin/amazon", "bin/google", "bin/pastie", "bin/twitt", "History.txt", "html",
11
+ "html/andreas00.css", "html/authorship.html", "html/bg.gif", "html/front.jpg", "html/index.html",
12
+ "html/menubg.gif", "html/menubg2.gif", "html/test.jpg", "html/usage.html", "lib",
13
+ "lib/utility_belt", "lib/utility_belt/amazon_upload_shortcut.rb",
14
+ "lib/utility_belt/clipboard.rb", "lib/utility_belt/twitty.rb", "lib/utility_belt/command_history.rb",
15
+ "lib/utility_belt/convertable_to_file.rb", "lib/utility_belt/equipper.rb",
16
+ "lib/utility_belt/google.rb", "lib/utility_belt/hash_math.rb",
17
+ "lib/utility_belt/interactive_editor.rb", "lib/utility_belt/irb_options.rb",
18
+ "lib/utility_belt/irb_verbosity_control.rb", "lib/utility_belt/is_an.rb",
19
+ "lib/utility_belt/language_greps.rb", "lib/utility_belt/not.rb", "lib/utility_belt/pastie.rb",
20
+ "lib/utility_belt/pipe.rb", "lib/utility_belt/rails_finder_shortcut.rb",
21
+ "lib/utility_belt/rails_verbosity_control.rb", "lib/utility_belt/string_to_proc.rb",
22
+ "lib/utility_belt/symbol_to_proc.rb", "lib/utility_belt/wirble.rb", "lib/utility_belt/with.rb",
23
+ "lib/utility_belt.rb", "Manifest.txt", "README", "spec", "spec/convertable_to_file_spec.rb",
24
+ "spec/equipper_spec.rb", "spec/hash_math_spec.rb", "spec/interactive_editor_spec.rb",
25
+ "spec/language_greps_spec.rb", "spec/pastie_spec.rb", "spec/pipe_spec.rb", "spec/spec_helper.rb",
26
+ "spec/string_to_proc_spec.rb", "spec/utility_belt_spec.rb", "utility-belt.gemspec"]
27
+ %w{amazon google pastie twitt}.each do |command_line_utility|
28
+ s.executables << command_line_utility
29
+ end
30
+ s.require_path = "lib"
31
+ s.test_file = "spec/utility_belt_spec.rb"
32
+ s.has_rdoc = true
33
+ s.extra_rdoc_files = ["README"]
34
+ s.add_dependency("wirble", ">= 0.1.2")
35
+ s.add_dependency("aws-s3", ">= 0.4.0")
36
+ s.add_dependency("Platform", ">= 0.4.0")
37
+ s.add_dependency("json", ">= 1.1.3")
38
+ end
metadata ADDED
@@ -0,0 +1,145 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: FreedomCoder-utility_belt
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Giles Bowkett
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2008-10-27 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
+ - !ruby/object:Gem::Dependency
43
+ name: json
44
+ version_requirement:
45
+ version_requirements: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: 1.1.3
50
+ version:
51
+ description:
52
+ email: gilesb@gmail.com
53
+ executables:
54
+ - amazon
55
+ - google
56
+ - pastie
57
+ - twitt
58
+ extensions: []
59
+
60
+ extra_rdoc_files:
61
+ - README
62
+ files:
63
+ - bin
64
+ - bin/amazon
65
+ - bin/google
66
+ - bin/pastie
67
+ - bin/twitt
68
+ - History.txt
69
+ - html
70
+ - html/andreas00.css
71
+ - html/authorship.html
72
+ - html/bg.gif
73
+ - html/front.jpg
74
+ - html/index.html
75
+ - html/menubg.gif
76
+ - html/menubg2.gif
77
+ - html/test.jpg
78
+ - html/usage.html
79
+ - lib
80
+ - lib/utility_belt
81
+ - lib/utility_belt/amazon_upload_shortcut.rb
82
+ - lib/utility_belt/clipboard.rb
83
+ - lib/utility_belt/twitty.rb
84
+ - lib/utility_belt/command_history.rb
85
+ - lib/utility_belt/convertable_to_file.rb
86
+ - lib/utility_belt/equipper.rb
87
+ - lib/utility_belt/google.rb
88
+ - lib/utility_belt/hash_math.rb
89
+ - lib/utility_belt/interactive_editor.rb
90
+ - lib/utility_belt/irb_options.rb
91
+ - lib/utility_belt/irb_verbosity_control.rb
92
+ - lib/utility_belt/is_an.rb
93
+ - lib/utility_belt/language_greps.rb
94
+ - lib/utility_belt/not.rb
95
+ - lib/utility_belt/pastie.rb
96
+ - lib/utility_belt/pipe.rb
97
+ - lib/utility_belt/rails_finder_shortcut.rb
98
+ - lib/utility_belt/rails_verbosity_control.rb
99
+ - lib/utility_belt/string_to_proc.rb
100
+ - lib/utility_belt/symbol_to_proc.rb
101
+ - lib/utility_belt/wirble.rb
102
+ - lib/utility_belt/with.rb
103
+ - lib/utility_belt.rb
104
+ - Manifest.txt
105
+ - README
106
+ - spec
107
+ - spec/convertable_to_file_spec.rb
108
+ - spec/equipper_spec.rb
109
+ - spec/hash_math_spec.rb
110
+ - spec/interactive_editor_spec.rb
111
+ - spec/language_greps_spec.rb
112
+ - spec/pastie_spec.rb
113
+ - spec/pipe_spec.rb
114
+ - spec/spec_helper.rb
115
+ - spec/string_to_proc_spec.rb
116
+ - spec/utility_belt_spec.rb
117
+ - utility-belt.gemspec
118
+ has_rdoc: true
119
+ homepage: http://utilitybelt.rubyforge.org
120
+ post_install_message:
121
+ rdoc_options: []
122
+
123
+ require_paths:
124
+ - lib
125
+ required_ruby_version: !ruby/object:Gem::Requirement
126
+ requirements:
127
+ - - ">="
128
+ - !ruby/object:Gem::Version
129
+ version: "0"
130
+ version:
131
+ required_rubygems_version: !ruby/object:Gem::Requirement
132
+ requirements:
133
+ - - ">="
134
+ - !ruby/object:Gem::Version
135
+ version: "0"
136
+ version:
137
+ requirements: []
138
+
139
+ rubyforge_project: utility_belt
140
+ rubygems_version: 1.2.0
141
+ signing_key:
142
+ specification_version: 2
143
+ summary: A grab-bag of IRB power user madness. (With Linux Support!)
144
+ test_files:
145
+ - spec/utility_belt_spec.rb