unlock_gateway 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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 0aa65cc7d374f0f362ca8e3a9282fc942c95db45
4
+ data.tar.gz: 2ed787f8de355f181f5adba88d7d268f782b2ead
5
+ SHA512:
6
+ metadata.gz: 7aded1386e4af7d54f1c6b4643bdb488b90c859644971f823293a554f8f8fd2fc25ca7e70b57eae4ebfcc1a24e66b58a5e50ef548d8f68fe271bfb7591de5412
7
+ data.tar.gz: aa5e840c491d950e4ae3bea6b7c714c5950a7276404fc74ed1fbfa75cf8863516dc0ccd395280f9e75a88adf8691821a544bf0da717d30b772b07d564b1dd9f7
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright 2014 YOURNAME
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/Rakefile ADDED
@@ -0,0 +1,21 @@
1
+ begin
2
+ require 'bundler/setup'
3
+ rescue LoadError
4
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
+ end
6
+
7
+ require 'rdoc/task'
8
+
9
+ RDoc::Task.new(:rdoc) do |rdoc|
10
+ rdoc.rdoc_dir = 'rdoc'
11
+ rdoc.title = 'UnlockGateway'
12
+ rdoc.options << '--line-numbers'
13
+ rdoc.rdoc_files.include('README.rdoc')
14
+ rdoc.rdoc_files.include('lib/**/*.rb')
15
+ end
16
+
17
+
18
+
19
+
20
+ Bundler::GemHelper.install_tasks
21
+
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :unlock_gateway do
3
+ # # Task goes here
4
+ # end
@@ -0,0 +1,10 @@
1
+ module UnlockMoip
2
+ module Models
3
+ module Contribution
4
+
5
+ def update_state_from_gateway!
6
+ end
7
+
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,28 @@
1
+ module UnlockMoip
2
+ module Models
3
+ module Gateway
4
+
5
+ def name
6
+ self.module_name
7
+ end
8
+
9
+ def description
10
+ end
11
+
12
+ def image
13
+ end
14
+
15
+ def path
16
+ end
17
+
18
+ def has_sandbox?
19
+ true
20
+ end
21
+
22
+ def available_settings
23
+ []
24
+ end
25
+
26
+ end
27
+ end
28
+ end
@@ -0,0 +1,13 @@
1
+ module UnlockGateway
2
+ class Setting
3
+
4
+ attr_accessor :key, :title, :description
5
+
6
+ def initialize(key, title, description)
7
+ self.key = key
8
+ self.title = title
9
+ self.description = description
10
+ end
11
+
12
+ end
13
+ end
@@ -0,0 +1,3 @@
1
+ module UnlockGateway
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,6 @@
1
+ require 'unlock_moip/setting'
2
+ require "unlock_moip/models/gateway"
3
+ require "unlock_moip/models/contribution"
4
+
5
+ module UnlockGateway
6
+ end
metadata ADDED
@@ -0,0 +1,66 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: unlock_gateway
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Daniel Weinmann
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-11-08 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: 4.1.6
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: 4.1.6
27
+ description: Abstract gateway for Unlock's payment gateway integrations
28
+ email:
29
+ - danielweinmann@gmail.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - MIT-LICENSE
35
+ - Rakefile
36
+ - lib/tasks/unlock_gateway_tasks.rake
37
+ - lib/unlock_gateway.rb
38
+ - lib/unlock_gateway/models/contribution.rb
39
+ - lib/unlock_gateway/models/gateway.rb
40
+ - lib/unlock_gateway/setting.rb
41
+ - lib/unlock_gateway/version.rb
42
+ homepage: https://github.com/danielweinmann/unlock_gateway
43
+ licenses:
44
+ - MIT
45
+ metadata: {}
46
+ post_install_message:
47
+ rdoc_options: []
48
+ require_paths:
49
+ - lib
50
+ required_ruby_version: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ required_rubygems_version: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - '>='
58
+ - !ruby/object:Gem::Version
59
+ version: '0'
60
+ requirements: []
61
+ rubyforge_project:
62
+ rubygems_version: 2.4.2
63
+ signing_key:
64
+ specification_version: 4
65
+ summary: Abstract gateway for Unlock's payment gateway integrations
66
+ test_files: []