esod-client 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (83) hide show
  1. data/EXAMPLES +140 -0
  2. data/GEM_RELEASE +19 -0
  3. data/README +10 -0
  4. data/Rakefile +14 -0
  5. data/VERSION +1 -0
  6. data/esod-client.gemspec +118 -0
  7. data/esod-client.rb +35 -0
  8. data/lib/activesupport-2.2.2/CHANGELOG +1257 -0
  9. data/lib/activesupport-2.2.2/README +43 -0
  10. data/lib/activesupport-2.2.2/README.CFT +2 -0
  11. data/lib/activesupport-2.2.2/lib/active_support.rb +26 -0
  12. data/lib/activesupport-2.2.2/lib/active_support/base64.rb +33 -0
  13. data/lib/activesupport-2.2.2/lib/active_support/basic_object.rb +24 -0
  14. data/lib/activesupport-2.2.2/lib/active_support/buffered_logger.rb +122 -0
  15. data/lib/activesupport-2.2.2/lib/active_support/cache.rb +223 -0
  16. data/lib/activesupport-2.2.2/lib/active_support/cache/compressed_mem_cache_store.rb +20 -0
  17. data/lib/activesupport-2.2.2/lib/active_support/cache/drb_store.rb +15 -0
  18. data/lib/activesupport-2.2.2/lib/active_support/cache/file_store.rb +72 -0
  19. data/lib/activesupport-2.2.2/lib/active_support/cache/mem_cache_store.rb +127 -0
  20. data/lib/activesupport-2.2.2/lib/active_support/cache/memory_store.rb +52 -0
  21. data/lib/activesupport-2.2.2/lib/active_support/cache/synchronized_memory_store.rb +47 -0
  22. data/lib/activesupport-2.2.2/lib/active_support/callbacks.rb +280 -0
  23. data/lib/activesupport-2.2.2/lib/active_support/core_ext.rb +6 -0
  24. data/lib/activesupport-2.2.2/lib/active_support/core_ext/hash.rb +14 -0
  25. data/lib/activesupport-2.2.2/lib/active_support/core_ext/hash/conversions.rb +259 -0
  26. data/lib/activesupport-2.2.2/lib/active_support/core_ext/hash/deep_merge.rb +23 -0
  27. data/lib/activesupport-2.2.2/lib/active_support/core_ext/hash/diff.rb +19 -0
  28. data/lib/activesupport-2.2.2/lib/active_support/core_ext/hash/except.rb +25 -0
  29. data/lib/activesupport-2.2.2/lib/active_support/core_ext/hash/indifferent_access.rb +137 -0
  30. data/lib/activesupport-2.2.2/lib/active_support/core_ext/hash/keys.rb +52 -0
  31. data/lib/activesupport-2.2.2/lib/active_support/core_ext/hash/reverse_merge.rb +35 -0
  32. data/lib/activesupport-2.2.2/lib/active_support/core_ext/hash/slice.rb +33 -0
  33. data/lib/activesupport-2.2.2/lib/active_support/vendor.rb +14 -0
  34. data/lib/activesupport-2.2.2/lib/active_support/vendor/builder-2.1.2/blankslate.rb +113 -0
  35. data/lib/activesupport-2.2.2/lib/active_support/vendor/builder-2.1.2/builder.rb +13 -0
  36. data/lib/activesupport-2.2.2/lib/active_support/vendor/builder-2.1.2/builder/blankslate.rb +20 -0
  37. data/lib/activesupport-2.2.2/lib/active_support/vendor/builder-2.1.2/builder/css.rb +250 -0
  38. data/lib/activesupport-2.2.2/lib/active_support/vendor/builder-2.1.2/builder/xchar.rb +115 -0
  39. data/lib/activesupport-2.2.2/lib/active_support/vendor/builder-2.1.2/builder/xmlbase.rb +139 -0
  40. data/lib/activesupport-2.2.2/lib/active_support/vendor/builder-2.1.2/builder/xmlevents.rb +63 -0
  41. data/lib/activesupport-2.2.2/lib/active_support/vendor/builder-2.1.2/builder/xmlmarkup.rb +328 -0
  42. data/lib/activesupport-2.2.2/lib/active_support/vendor/xml-simple-1.0.11/xmlsimple.rb +1021 -0
  43. data/lib/activesupport-2.2.2/lib/activesupport.rb +1 -0
  44. data/lib/esodclient/esodclient.rb +22 -0
  45. data/lib/hash.rb +22 -0
  46. data/lib/mime-types-1.16/History.txt +107 -0
  47. data/lib/mime-types-1.16/Install.txt +17 -0
  48. data/lib/mime-types-1.16/Licence.txt +15 -0
  49. data/lib/mime-types-1.16/Manifest.txt +12 -0
  50. data/lib/mime-types-1.16/README.txt +28 -0
  51. data/lib/mime-types-1.16/Rakefile +316 -0
  52. data/lib/mime-types-1.16/lib/mime/types.rb +751 -0
  53. data/lib/mime-types-1.16/lib/mime/types.rb.data +1324 -0
  54. data/lib/mime-types-1.16/mime-types.gemspec +43 -0
  55. data/lib/mime-types-1.16/setup.rb +1585 -0
  56. data/lib/mime-types-1.16/test/test_mime_type.rb +356 -0
  57. data/lib/mime-types-1.16/test/test_mime_types.rb +122 -0
  58. data/lib/rest-client-1.2.0/README.rdoc +102 -0
  59. data/lib/rest-client-1.2.0/Rakefile +57 -0
  60. data/lib/rest-client-1.2.0/VERSION +1 -0
  61. data/lib/rest-client-1.2.0/bin/restclient +87 -0
  62. data/lib/rest-client-1.2.0/lib/rest_client.rb +2 -0
  63. data/lib/rest-client-1.2.0/lib/restclient.rb +108 -0
  64. data/lib/rest-client-1.2.0/lib/restclient/exceptions.rb +89 -0
  65. data/lib/rest-client-1.2.0/lib/restclient/mixin/response.rb +48 -0
  66. data/lib/rest-client-1.2.0/lib/restclient/net_http_ext.rb +21 -0
  67. data/lib/rest-client-1.2.0/lib/restclient/payload.rb +178 -0
  68. data/lib/rest-client-1.2.0/lib/restclient/raw_response.rb +30 -0
  69. data/lib/rest-client-1.2.0/lib/restclient/request.rb +287 -0
  70. data/lib/rest-client-1.2.0/lib/restclient/resource.rb +146 -0
  71. data/lib/rest-client-1.2.0/lib/restclient/response.rb +20 -0
  72. data/lib/rest-client-1.2.0/spec/base.rb +10 -0
  73. data/lib/rest-client-1.2.0/spec/exceptions_spec.rb +65 -0
  74. data/lib/rest-client-1.2.0/spec/master_shake.jpg +0 -0
  75. data/lib/rest-client-1.2.0/spec/mixin/response_spec.rb +46 -0
  76. data/lib/rest-client-1.2.0/spec/payload_spec.rb +131 -0
  77. data/lib/rest-client-1.2.0/spec/raw_response_spec.rb +17 -0
  78. data/lib/rest-client-1.2.0/spec/request_spec.rb +521 -0
  79. data/lib/rest-client-1.2.0/spec/resource_spec.rb +75 -0
  80. data/lib/rest-client-1.2.0/spec/response_spec.rb +21 -0
  81. data/lib/rest-client-1.2.0/spec/restclient_spec.rb +53 -0
  82. data/lib/trollop/trollop.rb +735 -0
  83. metadata +137 -0
metadata ADDED
@@ -0,0 +1,137 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: esod-client
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Yan Pritzker
8
+ - CohesiveFT
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2010-01-13 00:00:00 -08:00
14
+ default_executable:
15
+ dependencies: []
16
+
17
+ description: Consume REST services from Elastic Server On Demand.
18
+ email: support@elasticserver.com
19
+ executables: []
20
+
21
+ extensions: []
22
+
23
+ extra_rdoc_files:
24
+ - README
25
+ files:
26
+ - EXAMPLES
27
+ - GEM_RELEASE
28
+ - README
29
+ - Rakefile
30
+ - VERSION
31
+ - esod-client.gemspec
32
+ - esod-client.rb
33
+ - lib/activesupport-2.2.2/CHANGELOG
34
+ - lib/activesupport-2.2.2/README
35
+ - lib/activesupport-2.2.2/README.CFT
36
+ - lib/activesupport-2.2.2/lib/active_support.rb
37
+ - lib/activesupport-2.2.2/lib/active_support/base64.rb
38
+ - lib/activesupport-2.2.2/lib/active_support/basic_object.rb
39
+ - lib/activesupport-2.2.2/lib/active_support/buffered_logger.rb
40
+ - lib/activesupport-2.2.2/lib/active_support/cache.rb
41
+ - lib/activesupport-2.2.2/lib/active_support/cache/compressed_mem_cache_store.rb
42
+ - lib/activesupport-2.2.2/lib/active_support/cache/drb_store.rb
43
+ - lib/activesupport-2.2.2/lib/active_support/cache/file_store.rb
44
+ - lib/activesupport-2.2.2/lib/active_support/cache/mem_cache_store.rb
45
+ - lib/activesupport-2.2.2/lib/active_support/cache/memory_store.rb
46
+ - lib/activesupport-2.2.2/lib/active_support/cache/synchronized_memory_store.rb
47
+ - lib/activesupport-2.2.2/lib/active_support/callbacks.rb
48
+ - lib/activesupport-2.2.2/lib/active_support/core_ext.rb
49
+ - lib/activesupport-2.2.2/lib/active_support/core_ext/hash.rb
50
+ - lib/activesupport-2.2.2/lib/active_support/core_ext/hash/conversions.rb
51
+ - lib/activesupport-2.2.2/lib/active_support/core_ext/hash/deep_merge.rb
52
+ - lib/activesupport-2.2.2/lib/active_support/core_ext/hash/diff.rb
53
+ - lib/activesupport-2.2.2/lib/active_support/core_ext/hash/except.rb
54
+ - lib/activesupport-2.2.2/lib/active_support/core_ext/hash/indifferent_access.rb
55
+ - lib/activesupport-2.2.2/lib/active_support/core_ext/hash/keys.rb
56
+ - lib/activesupport-2.2.2/lib/active_support/core_ext/hash/reverse_merge.rb
57
+ - lib/activesupport-2.2.2/lib/active_support/core_ext/hash/slice.rb
58
+ - lib/activesupport-2.2.2/lib/active_support/vendor.rb
59
+ - lib/activesupport-2.2.2/lib/active_support/vendor/builder-2.1.2/blankslate.rb
60
+ - lib/activesupport-2.2.2/lib/active_support/vendor/builder-2.1.2/builder.rb
61
+ - lib/activesupport-2.2.2/lib/active_support/vendor/builder-2.1.2/builder/blankslate.rb
62
+ - lib/activesupport-2.2.2/lib/active_support/vendor/builder-2.1.2/builder/css.rb
63
+ - lib/activesupport-2.2.2/lib/active_support/vendor/builder-2.1.2/builder/xchar.rb
64
+ - lib/activesupport-2.2.2/lib/active_support/vendor/builder-2.1.2/builder/xmlbase.rb
65
+ - lib/activesupport-2.2.2/lib/active_support/vendor/builder-2.1.2/builder/xmlevents.rb
66
+ - lib/activesupport-2.2.2/lib/active_support/vendor/builder-2.1.2/builder/xmlmarkup.rb
67
+ - lib/activesupport-2.2.2/lib/active_support/vendor/xml-simple-1.0.11/xmlsimple.rb
68
+ - lib/activesupport-2.2.2/lib/activesupport.rb
69
+ - lib/esodclient/esodclient.rb
70
+ - lib/hash.rb
71
+ - lib/mime-types-1.16/History.txt
72
+ - lib/mime-types-1.16/Install.txt
73
+ - lib/mime-types-1.16/Licence.txt
74
+ - lib/mime-types-1.16/Manifest.txt
75
+ - lib/mime-types-1.16/README.txt
76
+ - lib/mime-types-1.16/Rakefile
77
+ - lib/mime-types-1.16/lib/mime/types.rb
78
+ - lib/mime-types-1.16/lib/mime/types.rb.data
79
+ - lib/mime-types-1.16/mime-types.gemspec
80
+ - lib/mime-types-1.16/setup.rb
81
+ - lib/mime-types-1.16/test/test_mime_type.rb
82
+ - lib/mime-types-1.16/test/test_mime_types.rb
83
+ - lib/rest-client-1.2.0/README.rdoc
84
+ - lib/rest-client-1.2.0/Rakefile
85
+ - lib/rest-client-1.2.0/VERSION
86
+ - lib/rest-client-1.2.0/bin/restclient
87
+ - lib/rest-client-1.2.0/lib/rest_client.rb
88
+ - lib/rest-client-1.2.0/lib/restclient.rb
89
+ - lib/rest-client-1.2.0/lib/restclient/exceptions.rb
90
+ - lib/rest-client-1.2.0/lib/restclient/mixin/response.rb
91
+ - lib/rest-client-1.2.0/lib/restclient/net_http_ext.rb
92
+ - lib/rest-client-1.2.0/lib/restclient/payload.rb
93
+ - lib/rest-client-1.2.0/lib/restclient/raw_response.rb
94
+ - lib/rest-client-1.2.0/lib/restclient/request.rb
95
+ - lib/rest-client-1.2.0/lib/restclient/resource.rb
96
+ - lib/rest-client-1.2.0/lib/restclient/response.rb
97
+ - lib/rest-client-1.2.0/spec/base.rb
98
+ - lib/rest-client-1.2.0/spec/exceptions_spec.rb
99
+ - lib/rest-client-1.2.0/spec/master_shake.jpg
100
+ - lib/rest-client-1.2.0/spec/mixin/response_spec.rb
101
+ - lib/rest-client-1.2.0/spec/payload_spec.rb
102
+ - lib/rest-client-1.2.0/spec/raw_response_spec.rb
103
+ - lib/rest-client-1.2.0/spec/request_spec.rb
104
+ - lib/rest-client-1.2.0/spec/resource_spec.rb
105
+ - lib/rest-client-1.2.0/spec/response_spec.rb
106
+ - lib/rest-client-1.2.0/spec/restclient_spec.rb
107
+ - lib/trollop/trollop.rb
108
+ has_rdoc: true
109
+ homepage: http://github.com/cohesive/esod-client
110
+ licenses: []
111
+
112
+ post_install_message:
113
+ rdoc_options:
114
+ - --charset=UTF-8
115
+ require_paths:
116
+ - lib
117
+ required_ruby_version: !ruby/object:Gem::Requirement
118
+ requirements:
119
+ - - ">="
120
+ - !ruby/object:Gem::Version
121
+ version: "0"
122
+ version:
123
+ required_rubygems_version: !ruby/object:Gem::Requirement
124
+ requirements:
125
+ - - ">="
126
+ - !ruby/object:Gem::Version
127
+ version: "0"
128
+ version:
129
+ requirements: []
130
+
131
+ rubyforge_project:
132
+ rubygems_version: 1.3.5
133
+ signing_key:
134
+ specification_version: 3
135
+ summary: ESOD REST Client
136
+ test_files: []
137
+