Skip to content
This repository has been archived by the owner on Jan 5, 2022. It is now read-only.

Commit

Permalink
tweaks to code to make bundler work
Browse files Browse the repository at this point in the history
  • Loading branch information
kevwil committed Mar 26, 2011
1 parent 2010f9c commit aaff89d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion aspen.gemspec
Expand Up @@ -4,7 +4,7 @@ require "aspen/version"

Gem::Specification.new do |s|
s.name = "aspen"
s.version = Aspen::VERSION
s.version = Aspen::VERSION::STRING
s.platform = Gem::Platform::CURRENT
s.authors = ["Kevin Williams"]
s.email = ["kevwil@gmail.com"]
Expand Down
4 changes: 4 additions & 0 deletions lib/aspen.rb
Expand Up @@ -5,3 +5,7 @@

require 'rack'
require 'aspen/version'

module Aspen
# should I use autoload?
end
2 changes: 1 addition & 1 deletion lib/aspen/version.rb
Expand Up @@ -12,7 +12,7 @@ module VERSION
TINY = 0

# version digits joined as a string
STRING = [MAJOR, MINOR, TINY].join('.')
STRING = [MAJOR, MINOR, TINY].join('.').freeze

# Rack protocol version
RACK = [1, 1].freeze
Expand Down

0 comments on commit aaff89d

Please sign in to comment.