Skip to content

Commit

Permalink
Move version to version.rb file
Browse files Browse the repository at this point in the history
  • Loading branch information
pablofullana committed May 28, 2017
1 parent 192eb24 commit dfc732b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
3 changes: 2 additions & 1 deletion goby.gemspec
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'goby/version'

Gem::Specification.new do |spec|
spec.name = "goby"
spec.version = Goby::VERSION
spec.version = Goby::VERSION.dup
spec.authors = ["Nicholas Skinsacos"]
spec.email = ["[email protected]"]

Expand Down
5 changes: 0 additions & 5 deletions lib/goby.rb
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
# Main module of the framework.
module Goby
# Version of the framework.
VERSION = "0.1.0"
end

# Import order matters.

require 'i18n'
Expand Down
4 changes: 4 additions & 0 deletions lib/goby/version.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
module Goby
# Version of the framework.
VERSION = "0.1.0".freeze
end

0 comments on commit dfc732b

Please sign in to comment.