Skip to content
This repository has been archived by the owner on Apr 27, 2018. It is now read-only.

Commit

Permalink
Externalized VERSION for ore
Browse files Browse the repository at this point in the history
  • Loading branch information
koraktor committed Jan 23, 2011
1 parent 0953cb8 commit 802cdd6
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
1 change: 0 additions & 1 deletion gemspec.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
name: rubikon
version: 0.5.3
summary: Rubikon - A Ruby console app framework
description: A simple to use, yet powerful Ruby framework for building
console-based applications.
Expand Down
7 changes: 2 additions & 5 deletions lib/rubikon.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This code is free software; you can redistribute it and/or modify it under
# the terms of the new BSD License.
#
# Copyright (c) 2009-2010, Sebastian Staudt
# Copyright (c) 2009-2011, Sebastian Staudt

libdir = File.dirname(__FILE__)
$:.unshift(libdir) unless $:.include?(libdir)
Expand All @@ -10,6 +10,7 @@
require 'core_ext/object'
require 'core_ext/string'
require 'rubikon/application/base'
require 'rubikon/version'

# Rubikon is a simple to use, yet powerful Ruby framework for building
# console-based applications. Rubikon aims to provide an easy to write and easy
Expand All @@ -23,8 +24,4 @@
# @author Sebastian Staudt
# @since 0.1.0
module Rubikon

# This is the current version of the Rubikon gem
VERSION = '0.5.3'

end
11 changes: 11 additions & 0 deletions lib/rubikon/version.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# This code is free software; you can redistribute it and/or modify it under
# the terms of the new BSD License.
#
# Copyright (c) 2011, Sebastian Staudt

module Rubikon

# This is the current version of the Rubikon gem
VERSION = '0.5.3'

end

0 comments on commit 802cdd6

Please sign in to comment.