Skip to content

Commit

Permalink
fixing my git messups
Browse files Browse the repository at this point in the history
  • Loading branch information
jwoertink committed Aug 5, 2012
1 parent b6c377d commit c4db1e5
Show file tree
Hide file tree
Showing 18 changed files with 25 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Expand Up @@ -2,4 +2,4 @@ source :rubygems

gem 'gosu', '0.7.45'

#gem 'ocra'
gem 'releasy'
22 changes: 21 additions & 1 deletion Gemfile.lock
@@ -1,14 +1,34 @@
GEM
remote: http://rubygems.org/
specs:
cri (2.1.0)
faster_xml_simple (0.5.0)
libxml-ruby (>= 0.3.8.4)
gosu (0.7.45)
gosu (0.7.45-x86-mingw32)
httpclient (2.2.5)
json (1.7.4)
libxml-ruby (2.3.3)
net-github-upload (0.0.8)
faster_xml_simple
httpclient
json
nokogiri (>= 1.4.0)
nokogiri (1.5.5)
ocra (1.3.0)
rake (0.9.2.2)
releasy (0.2.2)
cri (~> 2.1.0)
net-github-upload (~> 0.0.8)
ocra (~> 1.3.0)
rake (~> 0.9.2.2)
thor (~> 0.14.6)
thor (0.14.6)

PLATFORMS
ruby
x86-mingw32

DEPENDENCIES
gosu (= 0.7.45)
ocra
releasy
Empty file added LICENSE.txt
Empty file.
Empty file added Rakefile
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion play.rb → lib/play.rb
@@ -1,6 +1,6 @@
require 'rubygems'
require 'gosu'
require File.join(File.dirname(__FILE__), 'utilities')
require_relative 'utilities'
include Utilities

require lib_path('timer')
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions utilities.rb → lib/utilities.rb
@@ -1,6 +1,6 @@
module Utilities

ROOT_PATH = File.dirname(__FILE__)
ROOT_PATH = File.join(File.dirname(__FILE__), '..')

def asset_path(filename)
folder = case filename.split('.').last
Expand All @@ -15,7 +15,7 @@ def asset_path(filename)
end

def lib_path(filename)
File.join(ROOT_PATH, filename)
File.join(ROOT_PATH, 'lib', filename)
end

end
File renamed without changes.

0 comments on commit c4db1e5

Please sign in to comment.