fog-voxel 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0886f6d85070e02c66b08dd9f372866f14341012
4
- data.tar.gz: 075842f1860bc1a9445d59b84b9bcca0dfb19616
3
+ metadata.gz: a19d8f5594b74ab6b49e07a6b79c41d2a8eacd6d
4
+ data.tar.gz: 4fe19fd27aaaa5b2b4db8cb551fd293890cb381a
5
5
  SHA512:
6
- metadata.gz: d3e76e22b5213afee66900b3dbfd9bd09e70bf5ec003daa46bb5de01bcbb8c4107938480583e32ae321a224cbf2b0b17b840fcbb092d9f6cc352f5686f85a637
7
- data.tar.gz: 0b8653bc807973c757c6ad0ca3f39379e70d2dc5d20ee29abacc623cb2c860c3fca93156a766233be1337e2d78b00f3ebdb25b27c81c779bfe197cd34997ea44
6
+ metadata.gz: ebd720c5266b294748bfa814d394a881c05fc962c411c5af48e0d767b6b6b01fcf81a341d5b226854b7810be1c74db10fb608abbf33b2b32cce70e6dca51bd81
7
+ data.tar.gz: 12e25cc674d4a98518007d8492caedd067fc25967a83e1df45775e99a67a54f5e5a1856ef332ecd4da1e196e36badccf912f84dfdb62d6bef1bed3ebd075dac6
@@ -8,12 +8,10 @@ matrix:
8
8
  gemfile: gemfiles/Gemfile.1.9.3+
9
9
  - rvm: 2.0.0
10
10
  gemfile: gemfiles/Gemfile.1.9.3+
11
- env: COVERAGE=true
12
- - rvm: 2.1.1
11
+ - rvm: 2.1.4
13
12
  gemfile: gemfiles/Gemfile.1.9.3+
14
13
  env: COVERAGE=true
15
14
  - rvm: ree
16
15
  gemfile: gemfiles/Gemfile.1.9.2-
17
16
  - rvm: jruby
18
17
  gemfile: gemfiles/Gemfile.1.9.3+
19
- env: COVERAGE=true
@@ -5,14 +5,14 @@ New contributors are always welcome, when it doubt please ask questions. We stri
5
5
  ### Coding
6
6
 
7
7
  * Pick a task:
8
- * Offer feedback on open [pull requests](https://github.com/fog/fog-exoscale/pulls).
9
- * Review open [issues](https://github.com/fog/fog-exoscale/issues) for things to help on.
10
- * [Create an issue](https://github.com/fog/fog-exoscale/issues/new) to start a discussion on additions or features.
8
+ * Offer feedback on open [pull requests](https://github.com/fog/fog-voxel/pulls).
9
+ * Review open [issues](https://github.com/fog/fog-voxel/issues) for things to help on.
10
+ * [Create an issue](https://github.com/fog/fog-voxel/issues/new) to start a discussion on additions or features.
11
11
  * Fork the project, add your changes and tests to cover them in a topic branch.
12
- * Commit your changes and rebase against `fog/fog-exoscale` to ensure everything is up to date.
13
- * [Submit a pull request](https://github.com/fog/fog-exoscale/compare/)
12
+ * Commit your changes and rebase against `fog/fog-voxel` to ensure everything is up to date.
13
+ * [Submit a pull request](https://github.com/fog/fog-voxel/compare/)
14
14
 
15
15
  ### Non-Coding
16
16
 
17
- * Offer feedback on open [issues](https://github.com/fog/fog-exoscale/issues).
17
+ * Offer feedback on open [issues](https://github.com/fog/fog-voxel/issues).
18
18
  * Organize or volunteer at events.
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Fog::Voxel
2
2
 
3
- [![Build Status](https://travis-ci.org/fog/fog-voxel.svg?branch=master)](https://travis-ci.org/fog/fog-voxel) [![Dependency Status](https://gemnasium.com/fog/fog-voxel.svg)](https://gemnasium.com/fog/fog-voxel) [![Coverage Status](https://img.shields.io/coveralls/fog/fog-voxel.svg)](https://coveralls.io/r/fog/fog-voxel) [![Code Climate](https://codeclimate.com/github/fog/fog-voxel.png)](https://codeclimate.com/github/fog/fog-voxel)
3
+ [![Gem Version](https://badge.fury.io/rb/fog-voxel.svg)](http://badge.fury.io/rb/fog-voxel) [![Build Status](https://travis-ci.org/fog/fog-voxel.svg?branch=master)](https://travis-ci.org/fog/fog-voxel) [![Dependency Status](https://gemnasium.com/fog/fog-voxel.svg)](https://gemnasium.com/fog/fog-voxel) [![Coverage Status](https://img.shields.io/coveralls/fog/fog-voxel.svg)](https://coveralls.io/r/fog/fog-voxel?branch=master) [![Code Climate](https://codeclimate.com/github/fog/fog-voxel.png)](https://codeclimate.com/github/fog/fog-voxel)
4
4
 
5
5
  Module for the 'fog' gem to support Voxel
6
6
 
@@ -7,11 +7,11 @@ module Fog
7
7
  module Voxel
8
8
  extend Fog::Provider
9
9
 
10
- service(:voxel, 'Compute')
10
+ service(:compute, 'Compute')
11
11
 
12
12
  def self.create_signature(secret, options)
13
13
  to_sign = options.keys.map { |k| k.to_s }.sort.map { |k| "#{k}#{options[k.to_sym]}" }.join("")
14
- Digest::MD7.hexdigest( secret + to_sign )
14
+ Digest::MD5.hexdigest( secret + to_sign )
15
15
  end
16
16
  end
17
17
 
@@ -1,5 +1,5 @@
1
1
  module Fog
2
2
  module Voxel
3
- VERSION = "0.0.1"
3
+ VERSION = "0.0.2"
4
4
  end
5
5
  end
@@ -1,5 +1,4 @@
1
1
  require 'excon'
2
- require 'fog/core'
3
2
 
4
3
  if ENV['COVERAGE']
5
4
  require 'coveralls'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fog-voxel
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paulo Henrique Lopes Ribeiro
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-11-07 00:00:00.000000000 Z
11
+ date: 2014-12-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fog-core