-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Pedro Augusto
committed
Mar 24, 2024
1 parent
46ab588
commit 5d1d2c2
Showing
3 changed files
with
31 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
module Zspay | ||
VERSION = "1.0.0" | ||
VERSION = "1.0.1" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,34 @@ | ||
# frozen_string_literal: true | ||
|
||
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), "lib")) | ||
|
||
# Maintain your gem's version: | ||
require "zspay/version" | ||
require_relative "lib/zspay/version" | ||
|
||
# Describe your gem and declare its dependencies: | ||
Gem::Specification.new do |spec| | ||
spec.name = "zspay" | ||
spec.version = Zspay::VERSION | ||
spec.authors = ["Pedro Augusto Silva", "Edson Lima", "Nullbug"] | ||
spec.email = %w[[email protected] [email protected]] | ||
spec.homepage = "" | ||
spec.files = Dir["lib/**/**.rb"] | ||
spec.summary = "ZSPAY" | ||
spec.description = "ZSPAY" | ||
spec.homepage = "https://github.com/pedroaugustofsilva/zspay-ruby" | ||
spec.summary = "Ruby interface for Zspay API." | ||
spec.description = "A Ruby interface for integrating and managing payment and transfer functionalities with the " \ | ||
"Zspay platform." | ||
spec.license = "MIT" | ||
|
||
spec.required_ruby_version = Gem::Requirement.new("~> 3.0") | ||
|
||
# Specify which files should be added to the gem when it is released. | ||
# The `git ls-files -z` loads the files in the RubyGem that have been added into git. | ||
spec.files = Dir.chdir(__dir__) do | ||
`git ls-files -z`.split("\x0").reject do |f| | ||
(File.expand_path(f) == __FILE__) || | ||
f.start_with?(*%w[bin/ test/ spec/ features/ .git .github appveyor Gemfile]) | ||
end | ||
end | ||
spec.bindir = "exe" | ||
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) } | ||
spec.require_paths = ["lib"] | ||
|
||
spec.add_runtime_dependency "activesupport", ">= 6.0.0" | ||
spec.add_runtime_dependency "http", ">= 5.2.0" | ||
|
||
|