Skip to content

Commit 937d4e0

Browse files
committed
Import project
0 parents  commit 937d4e0

17 files changed

Lines changed: 251 additions & 0 deletions

.autotest

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# -*- ruby -*-
2+
3+
require 'autotest/restart'
4+
5+
# Autotest.add_hook :initialize do |at|
6+
# at.extra_files << "../some/external/dependency.rb"
7+
#
8+
# at.libs << ":../some/external"
9+
#
10+
# at.add_exception 'vendor'
11+
#
12+
# at.add_mapping(/dependency.rb/) do |f, _|
13+
# at.files_matching(/test_.*rb$/)
14+
# end
15+
#
16+
# %w(TestA TestB).each do |klass|
17+
# at.extra_class_map[klass] = "test/test_misc.rb"
18+
# end
19+
# end
20+
21+
# Autotest.add_hook :run_command do |at|
22+
# system "rake build"
23+
# end

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
doc
2+
pkg

History.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
=== 1.0.0 / 2014-02-08
2+
3+
* 1 major enhancement
4+
5+
* Birthday!
6+

Manifest.txt

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
.autotest
2+
History.txt
3+
Manifest.txt
4+
README.txt
5+
Rakefile
6+
bin/rubyhop
7+
lib/background.png
8+
lib/gameover.mp3
9+
lib/hoop.png
10+
lib/hop.mp3
11+
lib/music.mp3
12+
lib/rubyguy-dead.png
13+
lib/rubyguy-fall.png
14+
lib/rubyguy-rise.png
15+
lib/rubyhop.rb
16+
test/test_rubyhop.rb

README.txt

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
= rubyhop
2+
3+
http://blowmage.com/rubyhop
4+
5+
== DESCRIPTION:
6+
7+
Super awesome Ruby-themed game
8+
9+
$ gem install rubyhop
10+
$ rubyhop
11+
12+
== DEVELOPERS:
13+
14+
After checking out the source, run:
15+
16+
$ gem install hoe
17+
$ rake newb
18+
19+
This task will install any missing dependencies, run the tests/specs,
20+
and generate the RDoc.
21+
22+
== LICENSE:
23+
24+
(The MIT License)
25+
26+
Copyright (c) 2014 Mike Moore
27+
28+
Permission is hereby granted, free of charge, to any person obtaining
29+
a copy of this software and associated documentation files (the
30+
'Software'), to deal in the Software without restriction, including
31+
without limitation the rights to use, copy, modify, merge, publish,
32+
distribute, sublicense, and/or sell copies of the Software, and to
33+
permit persons to whom the Software is furnished to do so, subject to
34+
the following conditions:
35+
36+
The above copyright notice and this permission notice shall be
37+
included in all copies or substantial portions of the Software.
38+
39+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
40+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
41+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
42+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
43+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
44+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
45+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Rakefile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
require "rubygems"
2+
require "hoe"
3+
4+
Hoe.plugin :git
5+
Hoe.plugin :minitest
6+
7+
Hoe.spec "rubyhop" do
8+
developer "Mike Moore", "mike@blowmage.com"
9+
end

bin/rubyhop

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/usr/bin/env ruby
2+
require "rubyhop"
3+
RubyhopGame.new.show

lib/background.png

205 KB
Loading

lib/gameover.mp3

62.2 KB
Binary file not shown.

lib/hoop.png

4.95 KB
Loading

0 commit comments

Comments
 (0)