elastic-mapreduce 0.0.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 (60) hide show
  1. data/CHANGELOG +51 -0
  2. data/Gemfile +13 -0
  3. data/Gemfile.lock +16 -0
  4. data/LICENSE.txt +393 -0
  5. data/NOTICE.txt +26 -0
  6. data/README +1007 -0
  7. data/Rakefile +35 -0
  8. data/VERSION +1 -0
  9. data/bin/elastic-mapreduce +27 -0
  10. data/cacert.pem +280 -0
  11. data/elastic-mapreduce.gemspec +104 -0
  12. data/lib/amazon/aws/exceptions.rb +211 -0
  13. data/lib/amazon/coral/awsquery.rb +128 -0
  14. data/lib/amazon/coral/awsquerychainhelper.rb +92 -0
  15. data/lib/amazon/coral/awsqueryhandler.rb +170 -0
  16. data/lib/amazon/coral/awsqueryurihandler.rb +34 -0
  17. data/lib/amazon/coral/call.rb +68 -0
  18. data/lib/amazon/coral/dispatcher.rb +33 -0
  19. data/lib/amazon/coral/ec2client.rb +91 -0
  20. data/lib/amazon/coral/elasticmapreduceclient.rb +198 -0
  21. data/lib/amazon/coral/handler.rb +20 -0
  22. data/lib/amazon/coral/httpdelegationhelper.rb +27 -0
  23. data/lib/amazon/coral/httpdestinationhandler.rb +36 -0
  24. data/lib/amazon/coral/httphandler.rb +124 -0
  25. data/lib/amazon/coral/identityhandler.rb +32 -0
  26. data/lib/amazon/coral/job.rb +25 -0
  27. data/lib/amazon/coral/logfactory.rb +35 -0
  28. data/lib/amazon/coral/option.rb +70 -0
  29. data/lib/amazon/coral/orchestrator.rb +49 -0
  30. data/lib/amazon/coral/querystringmap.rb +93 -0
  31. data/lib/amazon/coral/service.rb +130 -0
  32. data/lib/amazon/coral/simplelog.rb +98 -0
  33. data/lib/amazon/coral/urlencoding.rb +19 -0
  34. data/lib/amazon/coral/v0signaturehandler.rb +33 -0
  35. data/lib/amazon/coral/v0signaturehelper.rb +83 -0
  36. data/lib/amazon/coral/v1signaturehandler.rb +32 -0
  37. data/lib/amazon/coral/v1signaturehelper.rb +58 -0
  38. data/lib/amazon/coral/v2signaturehandler.rb +46 -0
  39. data/lib/amazon/coral/v2signaturehelper.rb +76 -0
  40. data/lib/amazon/retry_delegator.rb +66 -0
  41. data/lib/amazon/stderr_logger.rb +23 -0
  42. data/lib/client.rb +117 -0
  43. data/lib/commands.rb +1690 -0
  44. data/lib/credentials.rb +86 -0
  45. data/lib/ec2_client_wrapper.rb +73 -0
  46. data/lib/json/lexer.rb +294 -0
  47. data/lib/json/objects.rb +200 -0
  48. data/lib/json.rb +58 -0
  49. data/lib/simple_executor.rb +11 -0
  50. data/lib/simple_logger.rb +38 -0
  51. data/lib/uuidtools/version.rb +32 -0
  52. data/lib/uuidtools.rb +655 -0
  53. data/run_tests.rb +8 -0
  54. data/samples/freebase/code/freebase_jobflow.json +44 -0
  55. data/samples/similarity/lastfm_jobflow.json +78 -0
  56. data/samples/wordSplitter.py +18 -0
  57. data/tests/commands_test.rb +587 -0
  58. data/tests/credentials.json +7 -0
  59. data/tests/example.json +14 -0
  60. metadata +154 -0
metadata ADDED
@@ -0,0 +1,154 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: elastic-mapreduce
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 0
8
+ - 1
9
+ version: 0.0.1
10
+ platform: ruby
11
+ authors:
12
+ - Amazon.com
13
+ - Koichi Fujikawa
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2011-05-31 00:00:00 +09:00
19
+ default_executable: elastic-mapreduce
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ name: bundler
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ none: false
25
+ requirements:
26
+ - - ~>
27
+ - !ruby/object:Gem::Version
28
+ segments:
29
+ - 1
30
+ - 0
31
+ - 0
32
+ version: 1.0.0
33
+ type: :development
34
+ prerelease: false
35
+ version_requirements: *id001
36
+ - !ruby/object:Gem::Dependency
37
+ name: jeweler
38
+ requirement: &id002 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ~>
42
+ - !ruby/object:Gem::Version
43
+ segments:
44
+ - 1
45
+ - 6
46
+ - 1
47
+ version: 1.6.1
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: *id002
51
+ description: Original is official but this is Unofficial gem.
52
+ email: fujibee@hapyrus.com
53
+ executables:
54
+ - elastic-mapreduce
55
+ extensions: []
56
+
57
+ extra_rdoc_files:
58
+ - LICENSE.txt
59
+ - README
60
+ files:
61
+ - CHANGELOG
62
+ - Gemfile
63
+ - Gemfile.lock
64
+ - LICENSE.txt
65
+ - NOTICE.txt
66
+ - README
67
+ - Rakefile
68
+ - VERSION
69
+ - bin/elastic-mapreduce
70
+ - cacert.pem
71
+ - elastic-mapreduce.gemspec
72
+ - lib/amazon/aws/exceptions.rb
73
+ - lib/amazon/coral/awsquery.rb
74
+ - lib/amazon/coral/awsquerychainhelper.rb
75
+ - lib/amazon/coral/awsqueryhandler.rb
76
+ - lib/amazon/coral/awsqueryurihandler.rb
77
+ - lib/amazon/coral/call.rb
78
+ - lib/amazon/coral/dispatcher.rb
79
+ - lib/amazon/coral/ec2client.rb
80
+ - lib/amazon/coral/elasticmapreduceclient.rb
81
+ - lib/amazon/coral/handler.rb
82
+ - lib/amazon/coral/httpdelegationhelper.rb
83
+ - lib/amazon/coral/httpdestinationhandler.rb
84
+ - lib/amazon/coral/httphandler.rb
85
+ - lib/amazon/coral/identityhandler.rb
86
+ - lib/amazon/coral/job.rb
87
+ - lib/amazon/coral/logfactory.rb
88
+ - lib/amazon/coral/option.rb
89
+ - lib/amazon/coral/orchestrator.rb
90
+ - lib/amazon/coral/querystringmap.rb
91
+ - lib/amazon/coral/service.rb
92
+ - lib/amazon/coral/simplelog.rb
93
+ - lib/amazon/coral/urlencoding.rb
94
+ - lib/amazon/coral/v0signaturehandler.rb
95
+ - lib/amazon/coral/v0signaturehelper.rb
96
+ - lib/amazon/coral/v1signaturehandler.rb
97
+ - lib/amazon/coral/v1signaturehelper.rb
98
+ - lib/amazon/coral/v2signaturehandler.rb
99
+ - lib/amazon/coral/v2signaturehelper.rb
100
+ - lib/amazon/retry_delegator.rb
101
+ - lib/amazon/stderr_logger.rb
102
+ - lib/client.rb
103
+ - lib/commands.rb
104
+ - lib/credentials.rb
105
+ - lib/ec2_client_wrapper.rb
106
+ - lib/json.rb
107
+ - lib/json/lexer.rb
108
+ - lib/json/objects.rb
109
+ - lib/simple_executor.rb
110
+ - lib/simple_logger.rb
111
+ - lib/uuidtools.rb
112
+ - lib/uuidtools/version.rb
113
+ - run_tests.rb
114
+ - samples/freebase/code/freebase_jobflow.json
115
+ - samples/similarity/lastfm_jobflow.json
116
+ - samples/wordSplitter.py
117
+ - tests/commands_test.rb
118
+ - tests/credentials.json
119
+ - tests/example.json
120
+ has_rdoc: true
121
+ homepage: http://github.com/hapyrus/elastic-mapreduce
122
+ licenses:
123
+ - Apache License
124
+ post_install_message:
125
+ rdoc_options: []
126
+
127
+ require_paths:
128
+ - lib
129
+ required_ruby_version: !ruby/object:Gem::Requirement
130
+ none: false
131
+ requirements:
132
+ - - ">="
133
+ - !ruby/object:Gem::Version
134
+ hash: 3434745567467163342
135
+ segments:
136
+ - 0
137
+ version: "0"
138
+ required_rubygems_version: !ruby/object:Gem::Requirement
139
+ none: false
140
+ requirements:
141
+ - - ">="
142
+ - !ruby/object:Gem::Version
143
+ segments:
144
+ - 0
145
+ version: "0"
146
+ requirements: []
147
+
148
+ rubyforge_project:
149
+ rubygems_version: 1.3.7
150
+ signing_key:
151
+ specification_version: 3
152
+ summary: Amazon's commandline client for EMR (Elastic Map-Reduce) invocation (Unofficial Gem and Ruby 1.9 Version)
153
+ test_files: []
154
+