crowd_pay 0.0.1 → 0.0.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: bec0fcfed8fb23b0a04b48bae47c2c0e39e64fb9
4
- data.tar.gz: 4ed397b249ac5af256c3d0445ebd2e9867136e8b
3
+ metadata.gz: 849c5665cb04c309cb813346f3019529446e96ac
4
+ data.tar.gz: d58a8111258eadd1d8c7536b70c7c6e14b2fb5ac
5
5
  SHA512:
6
- metadata.gz: 6c66abf20d3d9f0a6bf57526d5fd42552bc69944b628182468a745682fa76386fb0211845404147a0ea4e982097c49ed8c28ecefc4aaa60a6b3310ed8013948b
7
- data.tar.gz: c343df99d5447d4e0325a9a3c15721819685bf57923a34e66120d2f6bcb883d3746a93600c4a8f7c9cfe02f9ffc7b9a8df119d7a43cd5ac02a330e9bf0d922ac
6
+ metadata.gz: d55eff7cbf0943810cf23944ce669491720517e6ae166a22fbafe556fa60bb1fa0cec833edb1561bfdf2fd39727d72406f21590cf92002be0f30afb76fa69af8
7
+ data.tar.gz: 40e9b18088ff05ee02e3db6ac8e4e6334d29f9c67daa9843254ac8328e7fb027dfe8edfe23883176932b23bb2b78fc2527825cafee02f3f99d2527cedf98284d
data/README.md CHANGED
@@ -1,12 +1,12 @@
1
1
  # CrowdPay
2
2
 
3
- [![Gem Version](https://badge.fury.io/rb/qwinix%2Fcrowd_pay.svg)](https://badge.fury.io/rb/qwinix%2Fcrowd_pay)
3
+ [![Gem Version](https://badge.fury.io/rb/crowd_pay.svg)](https://badge.fury.io/rb/crowd_pay)
4
4
  [![Build Status](https://travis-ci.org/Qwinix/crowd_pay.svg?branch=master)](https://travis-ci.org/Qwinix/crowd_pay)
5
5
  [![Dependency Status](https://gemnasium.com/Qwinix/crowd_pay.svg)](https://gemnasium.com/Qwinix/crowd_pay)
6
6
  [![Test Coverage](https://codeclimate.com/github/Qwinix/crowd_pay/badges/coverage.svg)](https://codeclimate.com/github/Qwinix/crowd_pay/coverage)
7
7
  [![Code Climate](https://codeclimate.com/github/Qwinix/crowd_pay/badges/gpa.svg)](https://codeclimate.com/github/Qwinix/crowd_pay)
8
8
 
9
9
 
10
- A ruby client for [CrowdPay's API](//crowdpay.com/api-documentation) using ActiveRecord for easy to use ruby objects.
10
+ A ruby client for [CrowdPay's API](//crowdpay.com/api-documentation) using ActiveModel for easy to use ruby objects.
11
11
 
12
12
  This gem has been extracted from the [Vested.org](//vested.org) project courtesy of [Calvert Foundation](calvertfoundation.org).
@@ -4,8 +4,9 @@ Gem::Specification.new do |gem|
4
4
  gem.name = 'crowd_pay'
5
5
  gem.version = CrowdPay::VERSION
6
6
  gem.date = '2016-02-23'
7
- gem.summary =
8
- gem.description = 'CrowdPay.com API wrapper for Ruby'
7
+ gem.summary = 'A ruby client for the CrowdPay API using ActiveModel'
8
+ gem.description = 'A ruby client for CrowdPay\'s API using ActiveModel for easy to use ruby objects.' \
9
+ 'This gem has been extracted from the Vested.org project courtesy of Calvert Foundation.'
9
10
  gem.authors = ['Kelton Manzanares', 'Prakash Lingaiah', 'Krishnaprasad Varma']
10
11
  gem.email = ['kelton.manzanares@gmail.com', 'plingaiah@qwinix.io', 'kvarma@qwinix.io']
11
12
  gem.files = `git ls-files`.split($\)
@@ -1,3 +1,3 @@
1
1
  module CrowdPay
2
- VERSION = '0.0.1'
2
+ VERSION = '0.0.2'
3
3
  end
@@ -10,7 +10,9 @@ require 'crowd_pay'
10
10
  ENV['CROWD_PAY_DOMAIN'] = 'https://test.crowdpay.com'
11
11
  ENV['CROWD_PAY_API_KEY'] = 'test'
12
12
  ENV['CROWD_PAY_PORTAL_KEY'] = 'test'
13
- ENV['CROWD_PAY_BY_PASS_VALIDATION'] = 'test'
13
+ ENV['CROWD_PAY_BY_PASS'] = 'test'
14
+
15
+ WebMock.disable_net_connect!(:allow => "codeclimate.com")
14
16
 
15
17
  RSpec.configure do |config|
16
18
  config.include FactoryGirl::Syntax::Methods
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: crowd_pay
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
  - Kelton Manzanares
@@ -40,7 +40,9 @@ dependencies:
40
40
  - - "~>"
41
41
  - !ruby/object:Gem::Version
42
42
  version: '0.9'
43
- description: CrowdPay.com API wrapper for Ruby
43
+ description: A ruby client for CrowdPay's API using ActiveModel for easy to use ruby
44
+ objects.This gem has been extracted from the Vested.org project courtesy of Calvert
45
+ Foundation.
44
46
  email:
45
47
  - kelton.manzanares@gmail.com
46
48
  - plingaiah@qwinix.io
@@ -103,5 +105,5 @@ rubyforge_project:
103
105
  rubygems_version: 2.2.2
104
106
  signing_key:
105
107
  specification_version: 4
106
- summary: CrowdPay.com API wrapper for Ruby
108
+ summary: A ruby client for the CrowdPay API using ActiveModel
107
109
  test_files: []