hdcore 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/.travis.yml +1 -2
  2. data/README.md +9 -5
  3. data/lib/hdcore/version.rb +1 -1
  4. metadata +3 -3
data/.travis.yml CHANGED
@@ -1,5 +1,4 @@
1
1
  language: ruby
2
2
  rvm:
3
3
  - 1.9.3
4
- - 1.9.2
5
- - 1.8.7
4
+ - 1.9.2
data/README.md CHANGED
@@ -22,14 +22,18 @@ Or install it yourself as:
22
22
 
23
23
  Before use, the library must be configured with your client key:
24
24
 
25
- Hdcore.configure(public_key: 'foobar', private_key: 'fazbaz')
26
- # or perhaps
27
- Hdcore.configure_with(path_to_some_yml_config_file)
25
+ ```ruby
26
+ Hdcore.configure(public_key: 'foobar', private_key: 'fazbaz')
27
+ # or perhaps
28
+ Hdcore.configure_with(path_to_some_yml_config_file)
29
+ ```
28
30
 
29
31
  API calls are then made statically, and return HTTParty response objects.
30
32
 
31
- # An example of an action with parameters
32
- Hdcore::Request.call('server.get', {:cuid => 'S37'})
33
+ ```ruby
34
+ # An example of an action with parameters
35
+ Hdcore::Request.call('server.get', {:cuid => 'S37'})
36
+ ```
33
37
 
34
38
  For details on API specification, visit
35
39
  https://api.hostdime.com/
@@ -1,3 +1,3 @@
1
1
  module Hdcore
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hdcore
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 4
10
- version: 0.0.4
9
+ - 5
10
+ version: 0.0.5
11
11
  platform: ruby
12
12
  authors:
13
13
  - Ethan Pemble