bjork 0.1.4 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +1 -0
- data/README.md +8 -16
- data/Rakefile +1 -0
- data/bjork.gemspec +2 -0
- data/lib/bjork.rb +6 -0
- data/lib/bjork/version.rb +1 -1
- metadata +3 -3
data/.gitignore
CHANGED
data/README.md
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
# Bjork
|
2
2
|
|
3
|
+
[Documentation](http://pixieengine.github.io/bjork/)
|
4
|
+
|
3
5
|
Magical HTML local game server. Serves up your CoffeeScript, JavaScript, image and sound assets.
|
4
6
|
|
5
7
|
Put your files in:
|
@@ -14,31 +16,21 @@ and they will be served by Bjork.
|
|
14
16
|
|
15
17
|
## Installation
|
16
18
|
|
17
|
-
|
18
|
-
|
19
|
-
gem 'bjork'
|
20
|
-
|
21
|
-
And then execute:
|
22
|
-
|
23
|
-
$ bundle
|
24
|
-
|
25
|
-
Or install it yourself as:
|
26
|
-
|
27
|
-
$ gem install bjork
|
19
|
+
gem install bjork
|
28
20
|
|
29
21
|
## Usage
|
30
22
|
|
31
|
-
|
23
|
+
Creating a new game is easy!
|
32
24
|
|
33
|
-
|
25
|
+
bjork create awesome_game
|
34
26
|
|
35
|
-
|
27
|
+
Start the server and it will serve up your game. On the command line from within your games root directory:
|
36
28
|
|
37
|
-
|
29
|
+
bjork
|
38
30
|
|
39
31
|
This will start the bjork server.
|
40
32
|
|
41
|
-
Your game will be accessible at http://localhost:
|
33
|
+
Your game will be accessible at http://localhost:1999
|
42
34
|
|
43
35
|
## FAQ
|
44
36
|
|
data/Rakefile
CHANGED
data/bjork.gemspec
CHANGED
data/lib/bjork.rb
CHANGED
data/lib/bjork/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bjork
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-05-
|
12
|
+
date: 2013-05-12 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|
@@ -204,7 +204,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
204
204
|
version: '0'
|
205
205
|
requirements: []
|
206
206
|
rubyforge_project:
|
207
|
-
rubygems_version: 1.8.
|
207
|
+
rubygems_version: 1.8.25
|
208
208
|
signing_key:
|
209
209
|
specification_version: 3
|
210
210
|
summary: A magical singing HTML5 game server
|