crowd_pay 0.0.1

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.
metadata ADDED
@@ -0,0 +1,107 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: crowd_pay
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Kelton Manzanares
8
+ - Prakash Lingaiah
9
+ - Krishnaprasad Varma
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+ date: 2016-02-23 00:00:00.000000000 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: activemodel
17
+ requirement: !ruby/object:Gem::Requirement
18
+ requirements:
19
+ - - ">="
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ requirements:
26
+ - - ">="
27
+ - !ruby/object:Gem::Version
28
+ version: '0'
29
+ - !ruby/object:Gem::Dependency
30
+ name: faraday
31
+ requirement: !ruby/object:Gem::Requirement
32
+ requirements:
33
+ - - "~>"
34
+ - !ruby/object:Gem::Version
35
+ version: '0.9'
36
+ type: :runtime
37
+ prerelease: false
38
+ version_requirements: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - "~>"
41
+ - !ruby/object:Gem::Version
42
+ version: '0.9'
43
+ description: CrowdPay.com API wrapper for Ruby
44
+ email:
45
+ - kelton.manzanares@gmail.com
46
+ - plingaiah@qwinix.io
47
+ - kvarma@qwinix.io
48
+ executables: []
49
+ extensions: []
50
+ extra_rdoc_files: []
51
+ files:
52
+ - ".gitignore"
53
+ - ".rspec"
54
+ - ".travis.yml"
55
+ - Gemfile
56
+ - Gemfile.lock
57
+ - LICENSE
58
+ - README.md
59
+ - Rakefile
60
+ - crowd_pay.gemspec
61
+ - lib/crowd_pay.rb
62
+ - lib/crowd_pay/account.rb
63
+ - lib/crowd_pay/asset.rb
64
+ - lib/crowd_pay/escrow.rb
65
+ - lib/crowd_pay/investor.rb
66
+ - lib/crowd_pay/transaction.rb
67
+ - lib/crowd_pay/verification.rb
68
+ - lib/crowd_pay/version.rb
69
+ - spec/account_spec.rb
70
+ - spec/asset_spec.rb
71
+ - spec/crowd_pay_spec.rb
72
+ - spec/escrow_spec.rb
73
+ - spec/factories/accounts.rb
74
+ - spec/factories/assets.rb
75
+ - spec/factories/escrows.rb
76
+ - spec/factories/investors.rb
77
+ - spec/factories/transactions.rb
78
+ - spec/factories/verifications.rb
79
+ - spec/investor_spec.rb
80
+ - spec/spec_helper.rb
81
+ - spec/transaction_spec.rb
82
+ - spec/verification_spec.rb
83
+ homepage: https://github.com/qwinix/crowd_pay
84
+ licenses:
85
+ - MIT
86
+ metadata: {}
87
+ post_install_message:
88
+ rdoc_options: []
89
+ require_paths:
90
+ - lib
91
+ required_ruby_version: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - ">="
94
+ - !ruby/object:Gem::Version
95
+ version: '0'
96
+ required_rubygems_version: !ruby/object:Gem::Requirement
97
+ requirements:
98
+ - - ">="
99
+ - !ruby/object:Gem::Version
100
+ version: '0'
101
+ requirements: []
102
+ rubyforge_project:
103
+ rubygems_version: 2.2.2
104
+ signing_key:
105
+ specification_version: 4
106
+ summary: CrowdPay.com API wrapper for Ruby
107
+ test_files: []