-
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
1 parent
9ae1b5f
commit 835fc8f
Showing
6 changed files
with
63 additions
and
24 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 |
---|---|---|
|
@@ -21,3 +21,4 @@ gemfiles/*.gemfile.lock | |
vendor/cache | ||
.byebug_history | ||
node_modules/ | ||
.env |
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
2 changes: 1 addition & 1 deletion
2
...ater_at_to_spree_vpago_payment_sources.rb → ...30052432_add_fields_to_payment_sources.rb
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,19 +1,9 @@ | ||
module SpreeVpago | ||
module_function | ||
|
||
# Returns the version of the currently loaded SpreeVpago as a | ||
# <tt>Gem::Version</tt>. | ||
def version | ||
Gem::Version.new VERSION::STRING | ||
end | ||
VERSION = '0.1.0-beta'.freeze | ||
|
||
module VERSION | ||
MAJOR = 0 | ||
MINOR = 1 | ||
TINY = 11 | ||
# PRE = 'alpha'.freeze | ||
|
||
# STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.') | ||
STRING = [MAJOR, MINOR, TINY].compact.join('.') | ||
def version | ||
Gem::Version.new VERSION | ||
end | ||
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