mpesa 0.1.0.pre

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 87d0f0a88d0f4549c44ead246a3e7f24887e80b6b276ccb0f962e46ab010b836
4
+ data.tar.gz: 19544d4a6be564fe97afe0a50042713b108b0acd3a5f596d24ae76169a1537ff
5
+ SHA512:
6
+ metadata.gz: de4837bbfc73859fbf31b63cb5137ffac52d01abe7c5af98a04afdc697cb4130cd88b5446fc8d4c1efe0f46bd5ff11bda567330697c01661eb692100cf99a77c
7
+ data.tar.gz: 8563a4f94ada73267eb8547500adb84591f2d3c69db4c41b2cb972284ff7860e3bbb208290c378f1d5ca20c2f8169590a9d2daf0423e73fe1d6459fe441cae67
@@ -0,0 +1,5 @@
1
+ # Changelog
2
+
3
+ This file should detail the changes made to the repository, library, or application on every new version release. This is obviously dependent upon the versioning system that is being used.
4
+
5
+ <!-- Add your changelog entries below --->
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source "https://rubygems.org"
2
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
3
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2019 Edwin Onuonga <ed@eonu.net>
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 all
13
+ 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 THE
21
+ SOFTWARE.
@@ -0,0 +1,3 @@
1
+ # Mpesa
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/mpesa`. To experiment with that code, run `bin/console` for an interactive prompt.
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+ task default: :spec
@@ -0,0 +1,5 @@
1
+ require "mpesa/version"
2
+
3
+ module Mpesa
4
+ # TODO
5
+ end
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Mpesa
4
+
5
+ # The current version of Mpesa.
6
+ VERSION = {
7
+ major: 0,
8
+ minor: 1,
9
+ patch: 0,
10
+ meta: 'pre',
11
+ }.compact.values.join('.').freeze
12
+ end
@@ -0,0 +1,36 @@
1
+ lib = File.expand_path("../lib", __FILE__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+ require "mpesa/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "mpesa"
7
+ spec.version = Mpesa::VERSION
8
+ spec.authors = ["Edwin Onuonga"]
9
+ spec.email = ["ed@eonu.net"]
10
+ spec.homepage = 'https://github.com/eonu/mpesa'
11
+
12
+ spec.summary = %q{Write a short summary, because RubyGems requires one.}
13
+ spec.license = 'MIT'
14
+ spec.require_paths = ['lib']
15
+ spec.files = Dir.glob('lib/**/*', File::FNM_DOTMATCH) + %w[
16
+ Gemfile LICENSE CHANGELOG.md README.md Rakefile mpesa.gemspec
17
+ ]
18
+
19
+ spec.required_ruby_version = '~> 2.5'
20
+
21
+ # spec.add_runtime_dependency '', '~> 0.0'
22
+
23
+ spec.add_development_dependency 'bundler', '>= 1.17'
24
+ spec.add_development_dependency 'rake', '~> 12.3'
25
+ spec.add_development_dependency 'rspec', '~> 3.7'
26
+ spec.add_development_dependency 'coveralls', '0.8.23'
27
+ spec.add_development_dependency 'yard', '~> 0.9', '>= 0.9.10'
28
+
29
+ spec.metadata = {
30
+ 'source_code_uri' => spec.homepage,
31
+ 'homepage_uri' => spec.homepage,
32
+ 'documentation_uri' => 'https://www.rubydoc.info/github/eonu/mpesa/master/toplevel',
33
+ 'bug_tracker_uri' => "#{spec.homepage}/issues",
34
+ 'changelog_uri' => "#{spec.homepage}/blob/master/CHANGELOG.md"
35
+ }
36
+ end
metadata ADDED
@@ -0,0 +1,132 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mpesa
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0.pre
5
+ platform: ruby
6
+ authors:
7
+ - Edwin Onuonga
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-09-14 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '1.17'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '1.17'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '12.3'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '12.3'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.7'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.7'
55
+ - !ruby/object:Gem::Dependency
56
+ name: coveralls
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - '='
60
+ - !ruby/object:Gem::Version
61
+ version: 0.8.23
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - '='
67
+ - !ruby/object:Gem::Version
68
+ version: 0.8.23
69
+ - !ruby/object:Gem::Dependency
70
+ name: yard
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '0.9'
76
+ - - ">="
77
+ - !ruby/object:Gem::Version
78
+ version: 0.9.10
79
+ type: :development
80
+ prerelease: false
81
+ version_requirements: !ruby/object:Gem::Requirement
82
+ requirements:
83
+ - - "~>"
84
+ - !ruby/object:Gem::Version
85
+ version: '0.9'
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ version: 0.9.10
89
+ description:
90
+ email:
91
+ - ed@eonu.net
92
+ executables: []
93
+ extensions: []
94
+ extra_rdoc_files: []
95
+ files:
96
+ - CHANGELOG.md
97
+ - Gemfile
98
+ - LICENSE
99
+ - README.md
100
+ - Rakefile
101
+ - lib/mpesa.rb
102
+ - lib/mpesa/version.rb
103
+ - mpesa.gemspec
104
+ homepage: https://github.com/eonu/mpesa
105
+ licenses:
106
+ - MIT
107
+ metadata:
108
+ source_code_uri: https://github.com/eonu/mpesa
109
+ homepage_uri: https://github.com/eonu/mpesa
110
+ documentation_uri: https://www.rubydoc.info/github/eonu/mpesa/master/toplevel
111
+ bug_tracker_uri: https://github.com/eonu/mpesa/issues
112
+ changelog_uri: https://github.com/eonu/mpesa/blob/master/CHANGELOG.md
113
+ post_install_message:
114
+ rdoc_options: []
115
+ require_paths:
116
+ - lib
117
+ required_ruby_version: !ruby/object:Gem::Requirement
118
+ requirements:
119
+ - - "~>"
120
+ - !ruby/object:Gem::Version
121
+ version: '2.5'
122
+ required_rubygems_version: !ruby/object:Gem::Requirement
123
+ requirements:
124
+ - - ">"
125
+ - !ruby/object:Gem::Version
126
+ version: 1.3.1
127
+ requirements: []
128
+ rubygems_version: 3.0.3
129
+ signing_key:
130
+ specification_version: 4
131
+ summary: Write a short summary, because RubyGems requires one.
132
+ test_files: []