fbox 0.1.1 → 0.1.2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e024dd370cdc042f670053a8a092cfbd7bc672fb
4
- data.tar.gz: 276843611e6b0bc5c725c392e35318792e70c53c
3
+ metadata.gz: 576ee9625070377c717fce8d137ec603f302fec4
4
+ data.tar.gz: ceea671f3d2d857f5182c88b6b1dc5b1a9dd1115
5
5
  SHA512:
6
- metadata.gz: eb909bd1da51f864abad3302789acff57c46f515ff2836221eaafbf7e712fefdd4332229b74cf7e456b6f4bcde8bd70b732a4cf8cb19bba13b7ca0bab0883586
7
- data.tar.gz: a671c9010df2c42463f6f74ac4b35d121b5eb89c956b7b65e99df956d4829e04eaaa4548d54fc688e38d3d96cadf4a1a3bae82e89784cb4ed2d164f671863d29
6
+ metadata.gz: b1bf3a1e28162ededdf72ceb184a6916104a59913f3f405c1d55ad8a3571e5b78f5b36809762b86bec19ad813043584c5b6b1cfd28109913e0894284cae4817a
7
+ data.tar.gz: 1ecef9da974dee78628c391b77214ed207246096a5d1cda8263c61c6a3b936468bc322b9af899c036bb15f6020dd08e4ddb2d5eda8d5d3d5cbde2e53e970427a
@@ -1,3 +1,6 @@
1
1
  language: ruby
2
2
  rvm:
3
3
  - 2.2.1
4
+ addons:
5
+ code_climate:
6
+ repo_token: 8a2b5c84e2f6be41afc62a86c6c083bf8b0ab558672944f03676323f34a9bd43
data/README.md CHANGED
@@ -1,9 +1,15 @@
1
- # Fbox
1
+ # Fbox [![Build Status](https://travis-ci.org/Hothza/fbox.svg)](https://travis-ci.org/Hothza/fbox) [![Gem Version](https://badge.fury.io/rb/fbox.svg)](https://badge.fury.io/rb/fbox) [![Test Coverage](https://codeclimate.com/github/Hothza/fbox/badges/coverage.svg)](https://codeclimate.com/github/Hothza/fbox/coverage)
2
2
 
3
3
  This gem is a [FaucetBox](https://faucetbox.com) REST API helper. It allows you
4
4
  to integrate FaucetBox API in an easy way in your RubyOnRails application.
5
5
 
6
- Build status: [![Build Status](https://travis-ci.org/Hothza/fbox.svg)](https://travis-ci.org/Hothza/fbox)
6
+ If you find this gem useful please send few coins for coffee:
7
+
8
+ - BTC: 1HRqmR2dbuHKeNWp478W77NxLzPi63QoKi
9
+ - LTC: LUzmQEYEMHxh7Q8JWh3vjW2BYCGd8VxANF
10
+ - DASH: XtPu4gA71zMdp37x3XiYdG2U25UA85Gq1w
11
+
12
+ Thank you! :)
7
13
 
8
14
  ## Installation
9
15
 
@@ -43,7 +49,7 @@ Fbox has four FaucetBox API releated methods:
43
49
  require 'fbox'
44
50
 
45
51
  # Unfortunately at this moment API key used in examples on FaucetBox site
46
- # gives 403 status, so you have tou use your own
52
+ # gives 403 status, so you have to use your own
47
53
 
48
54
  api_key = '4VdBEIAQKPpZ4SWOhQLUMn7mMNVql' # Put your API key here
49
55
  currency = 'BTC'
@@ -7,7 +7,7 @@ Gem::Specification.new do |spec|
7
7
  spec.name = "fbox"
8
8
  spec.version = Fbox::VERSION
9
9
  spec.authors = ["Hothza"]
10
- spec.email = ["hothza@users.noreply.github.com"]
10
+ spec.email = ["hothza@gmx.com"]
11
11
 
12
12
  # if spec.respond_to?(:metadata)
13
13
  # spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com' to prevent pushes to rubygems.org, or delete to allow pushes to any server."
@@ -24,6 +24,7 @@ Gem::Specification.new do |spec|
24
24
 
25
25
  spec.add_development_dependency "bundler", "~> 1.8"
26
26
  spec.add_development_dependency "rake", "~> 10.0"
27
+ spec.add_development_dependency "codeclimate-test-reporter"
27
28
  spec.add_dependency "minitest"
28
29
  spec.add_dependency "coins_address_validator"
29
30
  end
@@ -23,5 +23,5 @@
23
23
  # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
24
 
25
25
  module Fbox
26
- VERSION = "0.1.1"
26
+ VERSION = "0.1.2"
27
27
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fbox
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hothza
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-11-26 00:00:00.000000000 Z
11
+ date: 2015-11-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -38,6 +38,20 @@ dependencies:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: codeclimate-test-reporter
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
41
55
  - !ruby/object:Gem::Dependency
42
56
  name: minitest
43
57
  requirement: !ruby/object:Gem::Requirement
@@ -68,7 +82,7 @@ dependencies:
68
82
  version: '0'
69
83
  description:
70
84
  email:
71
- - hothza@users.noreply.github.com
85
+ - hothza@gmx.com
72
86
  executables: []
73
87
  extensions: []
74
88
  extra_rdoc_files: []