kylichuku-grate-handle 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,10 @@
1
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
2
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
3
+ require 'grate-handle'
4
+ require 'spec'
5
+ require 'spec/autorun'
6
+ require 'fixtures/all'
7
+
8
+ Spec::Runner.configure do |config|
9
+ config.mock_with :rr
10
+ end
metadata ADDED
@@ -0,0 +1,109 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: kylichuku-grate-handle
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Kirill Ishanov
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-08-26 00:00:00 -07:00
13
+ default_executable: gh
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: rspec
17
+ type: :development
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: "0"
24
+ version:
25
+ - !ruby/object:Gem::Dependency
26
+ name: jeweler
27
+ type: :development
28
+ version_requirement:
29
+ version_requirements: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: "0"
34
+ version:
35
+ - !ruby/object:Gem::Dependency
36
+ name: json
37
+ type: :development
38
+ version_requirement:
39
+ version_requirements: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: "0"
44
+ version:
45
+ description: Grate Handle is a small gem which simplifies the with GoGrid's API from ruby code. Also ships with a CLI tool called 'gh' which allows to perform most of the actions from http://my.gogrid.com but using true Unix CLI way.
46
+ email: kirill.ishanov@gmail.com
47
+ executables:
48
+ - gh
49
+ extensions: []
50
+
51
+ extra_rdoc_files:
52
+ - LICENSE
53
+ - README.md
54
+ - README.rdoc
55
+ files:
56
+ - .document
57
+ - .gitignore
58
+ - LICENSE
59
+ - README.md
60
+ - README.rdoc
61
+ - Rakefile
62
+ - VERSION
63
+ - bin/gh
64
+ - grate-handle.gemspec
65
+ - lib/cli_processor.rb
66
+ - lib/gogrid_client.rb
67
+ - lib/gogrid_manager.rb
68
+ - lib/grate-handle.rb
69
+ - lib/monkey_patches.rb
70
+ - spec/cli_processor_spec.rb
71
+ - spec/fixtures/all.rb
72
+ - spec/fixtures/grid_server_list.json
73
+ - spec/fixtures/grid_server_list.xml
74
+ - spec/gogrid_manager_spec.rb
75
+ - spec/monkey_patches_spec.rb
76
+ - spec/spec_helper.rb
77
+ has_rdoc: false
78
+ homepage: http://github.com/kylichuku/grate-handle
79
+ licenses:
80
+ post_install_message:
81
+ rdoc_options:
82
+ - --charset=UTF-8
83
+ require_paths:
84
+ - lib
85
+ required_ruby_version: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: "0"
90
+ version:
91
+ required_rubygems_version: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - ">="
94
+ - !ruby/object:Gem::Version
95
+ version: "0"
96
+ version:
97
+ requirements: []
98
+
99
+ rubyforge_project:
100
+ rubygems_version: 1.3.5
101
+ signing_key:
102
+ specification_version: 3
103
+ summary: A ruby library and a CLI client to GoGrid API
104
+ test_files:
105
+ - spec/gogrid_manager_spec.rb
106
+ - spec/spec_helper.rb
107
+ - spec/monkey_patches_spec.rb
108
+ - spec/fixtures/all.rb
109
+ - spec/cli_processor_spec.rb