spree-midtrans-gateway 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: ea6f75437dd6b44b86a9d79a1de84592520b3850
4
+ data.tar.gz: 00b69ce6995dfc336aec4165879b5d4074d7071d
5
+ SHA512:
6
+ metadata.gz: 15374671d5f1923bfdd6f6a93955f966025676e65cab2f6c82cabd8a6b649dd9e49adf76f644c042fb56f37a8d4588752c260ff487fd6256c69917ea4e86438e
7
+ data.tar.gz: 0c7b11e736111ed481cd930522bf653a2a1452a84c77ea8a871b6e4d4ccfd1389fb724b45052c75a9dd6b0fe44517f79afd8d45bef26d4c46de0a7af7ca66999
@@ -0,0 +1,8 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --require spec_helper
@@ -0,0 +1,24 @@
1
+ Style/StringLiterals:
2
+ EnforcedStyle: double_quotes
3
+ SupportedStyles:
4
+ - double_quotes
5
+ # If `true`, strings which span multiple lines using `\` for continuation must
6
+ # use the same type of quotes on each line.
7
+ ConsistentQuotesInMultiline: false
8
+
9
+ Style/StringLiteralsInInterpolation:
10
+ EnforcedStyle: double_quotes
11
+ SupportedStyles:
12
+ - double_quotes
13
+
14
+ Style/ClassAndModuleChildren:
15
+ EnforcedStyle: compact
16
+
17
+ Style/DocumentationMethod:
18
+ RequireForNonPublicMethods: false
19
+
20
+ Style/FrozenStringLiteralComment:
21
+ Enabled: false
22
+
23
+ Documentation:
24
+ Enabled: false
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.3.1
5
+ before_install: gem install bundler -v 1.16.0.pre.2
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at dimazniawan@gmail.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in spree-midtrans-gateway.gemspec
6
+ gemspec
@@ -0,0 +1,267 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ spree-midtrans-gateway (0.0.1)
5
+ spree_core (~> 3)
6
+ veritrans (~> 2.2)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actioncable (5.1.4)
12
+ actionpack (= 5.1.4)
13
+ nio4r (~> 2.0)
14
+ websocket-driver (~> 0.6.1)
15
+ actionmailer (5.1.4)
16
+ actionpack (= 5.1.4)
17
+ actionview (= 5.1.4)
18
+ activejob (= 5.1.4)
19
+ mail (~> 2.5, >= 2.5.4)
20
+ rails-dom-testing (~> 2.0)
21
+ actionpack (5.1.4)
22
+ actionview (= 5.1.4)
23
+ activesupport (= 5.1.4)
24
+ rack (~> 2.0)
25
+ rack-test (>= 0.6.3)
26
+ rails-dom-testing (~> 2.0)
27
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
+ actionview (5.1.4)
29
+ activesupport (= 5.1.4)
30
+ builder (~> 3.1)
31
+ erubi (~> 1.4)
32
+ rails-dom-testing (~> 2.0)
33
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
34
+ activejob (5.1.4)
35
+ activesupport (= 5.1.4)
36
+ globalid (>= 0.3.6)
37
+ activemerchant (1.72.0)
38
+ activesupport (>= 3.2.14, < 6.x)
39
+ builder (>= 2.1.2, < 4.0.0)
40
+ i18n (>= 0.6.9)
41
+ nokogiri (~> 1.4)
42
+ activemodel (5.1.4)
43
+ activesupport (= 5.1.4)
44
+ activerecord (5.1.4)
45
+ activemodel (= 5.1.4)
46
+ activesupport (= 5.1.4)
47
+ arel (~> 8.0)
48
+ activesupport (5.1.4)
49
+ concurrent-ruby (~> 1.0, >= 1.0.2)
50
+ i18n (~> 0.7)
51
+ minitest (~> 5.1)
52
+ tzinfo (~> 1.1)
53
+ acts-as-taggable-on (5.0.0)
54
+ activerecord (>= 4.2.8)
55
+ acts_as_list (0.9.7)
56
+ activerecord (>= 3.0)
57
+ addressable (2.5.2)
58
+ public_suffix (>= 2.0.2, < 4.0)
59
+ arel (8.0.0)
60
+ ast (2.3.0)
61
+ awesome_nested_set (3.1.3)
62
+ activerecord (>= 4.0.0, < 5.2)
63
+ builder (3.2.3)
64
+ camertron-eprun (1.1.1)
65
+ cancancan (2.0.0)
66
+ carmen (1.0.2)
67
+ activesupport (>= 3.0.0)
68
+ cldr-plurals-runtime-rb (1.0.1)
69
+ climate_control (0.2.0)
70
+ cocaine (0.5.8)
71
+ climate_control (>= 0.0.3, < 1.0)
72
+ concurrent-ruby (1.0.5)
73
+ css_parser (1.6.0)
74
+ addressable
75
+ deface (1.2.0)
76
+ nokogiri (~> 1.6)
77
+ polyglot
78
+ rails (>= 4.1)
79
+ rainbow (>= 2.1.0)
80
+ diff-lcs (1.3)
81
+ erubi (1.6.1)
82
+ excon (0.59.0)
83
+ ffaker (2.7.0)
84
+ friendly_id (5.2.2)
85
+ activerecord (>= 4.0.0)
86
+ globalid (0.4.0)
87
+ activesupport (>= 4.2.0)
88
+ highline (1.6.21)
89
+ htmlentities (4.3.4)
90
+ i18n (0.8.6)
91
+ kaminari (1.0.1)
92
+ activesupport (>= 4.1.0)
93
+ kaminari-actionview (= 1.0.1)
94
+ kaminari-activerecord (= 1.0.1)
95
+ kaminari-core (= 1.0.1)
96
+ kaminari-actionview (1.0.1)
97
+ actionview
98
+ kaminari-core (= 1.0.1)
99
+ kaminari-activerecord (1.0.1)
100
+ activerecord
101
+ kaminari-core (= 1.0.1)
102
+ kaminari-core (1.0.1)
103
+ loofah (2.0.3)
104
+ nokogiri (>= 1.5.9)
105
+ mail (2.6.6)
106
+ mime-types (>= 1.16, < 4)
107
+ method_source (0.8.2)
108
+ mime-types (3.1)
109
+ mime-types-data (~> 3.2015)
110
+ mime-types-data (3.2016.0521)
111
+ mimemagic (0.3.2)
112
+ mini_portile2 (2.3.0)
113
+ minitest (5.10.3)
114
+ monetize (1.7.0)
115
+ money (~> 6.9)
116
+ money (6.9.0)
117
+ i18n (>= 0.6.4, < 0.9)
118
+ nio4r (2.1.0)
119
+ nokogiri (1.8.1)
120
+ mini_portile2 (~> 2.3.0)
121
+ paperclip (5.1.0)
122
+ activemodel (>= 4.2.0)
123
+ activesupport (>= 4.2.0)
124
+ cocaine (~> 0.5.5)
125
+ mime-types
126
+ mimemagic (~> 0.3.0)
127
+ parallel (1.12.0)
128
+ paranoia (2.3.1)
129
+ activerecord (>= 4.0, < 5.2)
130
+ parser (2.4.0.0)
131
+ ast (~> 2.2)
132
+ polyamorous (1.3.1)
133
+ activerecord (>= 3.0)
134
+ polyglot (0.3.5)
135
+ powerpack (0.1.1)
136
+ premailer (1.10.4)
137
+ addressable
138
+ css_parser (>= 1.4.10)
139
+ htmlentities (>= 4.0.0)
140
+ premailer-rails (1.9.7)
141
+ actionmailer (>= 3, < 6)
142
+ premailer (~> 1.7, >= 1.7.9)
143
+ public_suffix (3.0.0)
144
+ rack (2.0.3)
145
+ rack-test (0.7.0)
146
+ rack (>= 1.0, < 3)
147
+ rails (5.1.4)
148
+ actioncable (= 5.1.4)
149
+ actionmailer (= 5.1.4)
150
+ actionpack (= 5.1.4)
151
+ actionview (= 5.1.4)
152
+ activejob (= 5.1.4)
153
+ activemodel (= 5.1.4)
154
+ activerecord (= 5.1.4)
155
+ activesupport (= 5.1.4)
156
+ bundler (>= 1.3.0)
157
+ railties (= 5.1.4)
158
+ sprockets-rails (>= 2.0.0)
159
+ rails-dom-testing (2.0.3)
160
+ activesupport (>= 4.2.0)
161
+ nokogiri (>= 1.6)
162
+ rails-html-sanitizer (1.0.3)
163
+ loofah (~> 2.0)
164
+ railties (5.1.4)
165
+ actionpack (= 5.1.4)
166
+ activesupport (= 5.1.4)
167
+ method_source
168
+ rake (>= 0.8.7)
169
+ thor (>= 0.18.1, < 2.0)
170
+ rainbow (2.2.2)
171
+ rake
172
+ rake (10.5.0)
173
+ ransack (1.8.3)
174
+ actionpack (>= 3.0)
175
+ activerecord (>= 3.0)
176
+ activesupport (>= 3.0)
177
+ i18n
178
+ polyamorous (~> 1.3)
179
+ responders (2.4.0)
180
+ actionpack (>= 4.2.0, < 5.3)
181
+ railties (>= 4.2.0, < 5.3)
182
+ rspec (3.6.0)
183
+ rspec-core (~> 3.6.0)
184
+ rspec-expectations (~> 3.6.0)
185
+ rspec-mocks (~> 3.6.0)
186
+ rspec-core (3.6.0)
187
+ rspec-support (~> 3.6.0)
188
+ rspec-expectations (3.6.0)
189
+ diff-lcs (>= 1.2.0, < 2.0)
190
+ rspec-support (~> 3.6.0)
191
+ rspec-mocks (3.6.0)
192
+ diff-lcs (>= 1.2.0, < 2.0)
193
+ rspec-support (~> 3.6.0)
194
+ rspec-support (3.6.0)
195
+ rubocop (0.50.0)
196
+ parallel (~> 1.10)
197
+ parser (>= 2.3.3.1, < 3.0)
198
+ powerpack (~> 0.1)
199
+ rainbow (>= 2.2.2, < 3.0)
200
+ ruby-progressbar (~> 1.7)
201
+ unicode-display_width (~> 1.0, >= 1.0.1)
202
+ ruby-progressbar (1.8.3)
203
+ spree_core (3.3.2)
204
+ activemerchant (~> 1.67)
205
+ acts-as-taggable-on (~> 5.0)
206
+ acts_as_list (~> 0.8)
207
+ awesome_nested_set (~> 3.1.3)
208
+ cancancan (~> 2.0)
209
+ carmen (~> 1.0.0)
210
+ deface (~> 1.0)
211
+ ffaker (~> 2.2)
212
+ friendly_id (~> 5.2.1)
213
+ highline (~> 1.6.18)
214
+ kaminari (~> 1.0.1)
215
+ monetize (~> 1.1)
216
+ paperclip (~> 5.1.0)
217
+ paranoia (~> 2.3.0)
218
+ premailer-rails
219
+ rails (~> 5.1.4)
220
+ ransack (~> 1.8.0)
221
+ responders
222
+ sprockets-rails
223
+ state_machines-activerecord (~> 0.5)
224
+ stringex
225
+ twitter_cldr (~> 4.3)
226
+ sprockets (3.7.1)
227
+ concurrent-ruby (~> 1.0)
228
+ rack (> 1, < 3)
229
+ sprockets-rails (3.2.1)
230
+ actionpack (>= 4.0)
231
+ activesupport (>= 4.0)
232
+ sprockets (>= 3.0.0)
233
+ state_machines (0.5.0)
234
+ state_machines-activemodel (0.5.0)
235
+ activemodel (>= 4.1, < 5.2)
236
+ state_machines (>= 0.5.0)
237
+ state_machines-activerecord (0.5.0)
238
+ activerecord (>= 4.1, < 5.2)
239
+ state_machines-activemodel (>= 0.5.0)
240
+ stringex (2.7.1)
241
+ thor (0.20.0)
242
+ thread_safe (0.3.6)
243
+ twitter_cldr (4.4.2)
244
+ camertron-eprun
245
+ cldr-plurals-runtime-rb (~> 1.0)
246
+ tzinfo
247
+ tzinfo (1.2.3)
248
+ thread_safe (~> 0.1)
249
+ unicode-display_width (1.3.0)
250
+ veritrans (2.2.0)
251
+ excon (~> 0.20)
252
+ websocket-driver (0.6.5)
253
+ websocket-extensions (>= 0.1.0)
254
+ websocket-extensions (0.1.2)
255
+
256
+ PLATFORMS
257
+ ruby
258
+
259
+ DEPENDENCIES
260
+ bundler (~> 1.16.a)
261
+ rake (~> 10.0)
262
+ rspec (~> 3)
263
+ rubocop (~> 0.50)
264
+ spree-midtrans-gateway!
265
+
266
+ BUNDLED WITH
267
+ 1.16.0.pre.2
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 Dimas J. Taniawan
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,43 @@
1
+ # Spree::Midtrans::Gateway
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/spree/midtrans/gateway`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'spree-midtrans-gateway'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install spree-midtrans-gateway
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/spree-midtrans-gateway. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
36
+
37
+ ## License
38
+
39
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
40
+
41
+ ## Code of Conduct
42
+
43
+ Everyone interacting in the Spree::Midtrans::Gateway project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/spree-midtrans-gateway/blob/master/CODE_OF_CONDUCT.md).
@@ -0,0 +1,10 @@
1
+ require "bundler/gem_tasks"
2
+ require "rake/testtask"
3
+
4
+ Rake::TestTask.new(:test) do |t|
5
+ t.libs << "test"
6
+ t.libs << "lib"
7
+ t.test_files = FileList["test/**/*_test.rb"]
8
+ end
9
+
10
+ task :default => :test
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "spree/midtrans/gateway"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,4 @@
1
+ module Spree
2
+ class MidtransGateway
3
+ end
4
+ end
@@ -0,0 +1,3 @@
1
+ module SpreeMidtransGateway
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,33 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "spree_midtrans_gateway/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "spree-midtrans-gateway"
8
+ spec.version = SpreeMidtransGateway::VERSION
9
+ spec.authors = ["Dimas J. Taniawan"]
10
+ spec.email = ["dimazniawan@gmail.com"]
11
+
12
+ spec.summary = "Midtrans gateway for Spree"
13
+ spec.description = "Midtrans payment gateway for Spree framework"
14
+ spec.homepage = "https://github.com/dimasjt/spree_midtrans_gateway"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
18
+ f.match(%r{^(test|spec|features)/})
19
+ end
20
+ spec.bindir = "exe"
21
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
22
+ spec.require_paths = ["lib"]
23
+
24
+ spec.required_ruby_version = ">= 2.1.0"
25
+
26
+ spec.add_dependency "spree_core", "~> 3"
27
+ spec.add_dependency "veritrans", "~> 2.2"
28
+
29
+ spec.add_development_dependency "bundler", "~> 1.16.a"
30
+ spec.add_development_dependency "rake", "~> 10.0"
31
+ spec.add_development_dependency "rspec", "~> 3"
32
+ spec.add_development_dependency "rubocop", "~> 0.50"
33
+ end
metadata ADDED
@@ -0,0 +1,143 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: spree-midtrans-gateway
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Dimas J. Taniawan
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2017-09-21 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: spree_core
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: veritrans
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '2.2'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '2.2'
41
+ - !ruby/object:Gem::Dependency
42
+ name: bundler
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 1.16.a
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 1.16.a
55
+ - !ruby/object:Gem::Dependency
56
+ name: rake
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '10.0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '10.0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rspec
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '3'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '3'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rubocop
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '0.50'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '0.50'
97
+ description: Midtrans payment gateway for Spree framework
98
+ email:
99
+ - dimazniawan@gmail.com
100
+ executables: []
101
+ extensions: []
102
+ extra_rdoc_files: []
103
+ files:
104
+ - ".gitignore"
105
+ - ".rspec"
106
+ - ".rubocop.yml"
107
+ - ".travis.yml"
108
+ - CODE_OF_CONDUCT.md
109
+ - Gemfile
110
+ - Gemfile.lock
111
+ - LICENSE.txt
112
+ - README.md
113
+ - Rakefile
114
+ - bin/console
115
+ - bin/setup
116
+ - lib/spree_midtrans_gateway.rb
117
+ - lib/spree_midtrans_gateway/version.rb
118
+ - spree-midtrans-gateway.gemspec
119
+ homepage: https://github.com/dimasjt/spree_midtrans_gateway
120
+ licenses:
121
+ - MIT
122
+ metadata: {}
123
+ post_install_message:
124
+ rdoc_options: []
125
+ require_paths:
126
+ - lib
127
+ required_ruby_version: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: 2.1.0
132
+ required_rubygems_version: !ruby/object:Gem::Requirement
133
+ requirements:
134
+ - - ">="
135
+ - !ruby/object:Gem::Version
136
+ version: '0'
137
+ requirements: []
138
+ rubyforge_project:
139
+ rubygems_version: 2.6.11
140
+ signing_key:
141
+ specification_version: 4
142
+ summary: Midtrans gateway for Spree
143
+ test_files: []