golf 0.0.8 → 0.0.9
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/bin/golf +0 -0
- data/lib/golf/cli.rb +1 -1
- data/lib/golf/rack.rb +191 -3
- data/lib/golf/version.rb +1 -1
- data/resources/app_error.html +60 -0
- data/{template/golfapp → resources}/controller.js +0 -0
- data/resources/index.html +61 -0
- data/resources/jquery.address.js +439 -0
- data/resources/jquery.golf.js +943 -0
- data/resources/jquery.js +4376 -0
- data/resources/welcome2golf.html +50 -0
- data/{template → templates/new}/404.txt +0 -0
- data/{template → templates/new}/Gemfile +2 -1
- data/{template/golfapp → templates/new}/components/HelloWorld/HelloWorld.html +0 -0
- data/{template → templates/new}/config.ru +0 -1
- data/templates/new/controller.js +7 -0
- data/test/data/jquery.golf.js +1 -0
- data/test/test_rack.rb +9 -0
- metadata +13 -6
@@ -0,0 +1,50 @@
|
|
1
|
+
<style type="text/css">
|
2
|
+
* {
|
3
|
+
font-family: sans-serif;
|
4
|
+
margin: 0;
|
5
|
+
padding: 0;
|
6
|
+
color: #222;
|
7
|
+
}
|
8
|
+
|
9
|
+
h1 {
|
10
|
+
padding: .5em 20px .5em 20px;
|
11
|
+
background: cadetblue;
|
12
|
+
margin: 2px;
|
13
|
+
}
|
14
|
+
|
15
|
+
h3 {
|
16
|
+
padding: .5em 20px .5em 20px;
|
17
|
+
background: yellowgreen;
|
18
|
+
margin: 2px;
|
19
|
+
}
|
20
|
+
|
21
|
+
p {
|
22
|
+
padding: .75em 20px .75em 20px;
|
23
|
+
background: orange;
|
24
|
+
margin: 2px;
|
25
|
+
}
|
26
|
+
|
27
|
+
a, a:visited {
|
28
|
+
color: darkblue;
|
29
|
+
}
|
30
|
+
|
31
|
+
a:hover {
|
32
|
+
color: white;
|
33
|
+
}
|
34
|
+
|
35
|
+
.content {
|
36
|
+
position: relative;
|
37
|
+
top: 5em;
|
38
|
+
width: 35em;
|
39
|
+
margin: 0 auto;
|
40
|
+
}
|
41
|
+
</style>
|
42
|
+
|
43
|
+
<div class="content">
|
44
|
+
<h1>Hi there!</h1>
|
45
|
+
<h3>Your Golf Web Application Server is up and running.</h3>
|
46
|
+
<p>
|
47
|
+
Look at the <a href="http://golf.github.com/">documentation</a> to
|
48
|
+
get started!
|
49
|
+
</p>
|
50
|
+
</div>
|
File without changes
|
File without changes
|
data/test/data/jquery.golf.js
CHANGED
data/test/test_rack.rb
CHANGED
@@ -12,6 +12,15 @@ class RackTest < Test::Unit::TestCase
|
|
12
12
|
assert last_response.ok?
|
13
13
|
end
|
14
14
|
|
15
|
+
def test_resource_serving
|
16
|
+
get "/jquery.js"
|
17
|
+
assert last_response.ok?
|
18
|
+
|
19
|
+
get "/jquery.golf.js"
|
20
|
+
assert last_response.ok?
|
15
21
|
|
22
|
+
get "/"
|
23
|
+
assert last_response.ok?
|
24
|
+
end
|
16
25
|
|
17
26
|
end
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: golf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.0.
|
5
|
+
version: 0.0.9
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Micha Niskin, Alan Dipert, Julio Capote
|
@@ -56,11 +56,18 @@ files:
|
|
56
56
|
- lib/golf/compiler.rb
|
57
57
|
- lib/golf/rack.rb
|
58
58
|
- lib/golf/version.rb
|
59
|
-
-
|
60
|
-
-
|
61
|
-
-
|
62
|
-
-
|
63
|
-
-
|
59
|
+
- resources/app_error.html
|
60
|
+
- resources/controller.js
|
61
|
+
- resources/index.html
|
62
|
+
- resources/jquery.address.js
|
63
|
+
- resources/jquery.golf.js
|
64
|
+
- resources/jquery.js
|
65
|
+
- resources/welcome2golf.html
|
66
|
+
- templates/new/404.txt
|
67
|
+
- templates/new/Gemfile
|
68
|
+
- templates/new/components/HelloWorld/HelloWorld.html
|
69
|
+
- templates/new/config.ru
|
70
|
+
- templates/new/controller.js
|
64
71
|
- test/data/app_error.html
|
65
72
|
- test/data/components.js
|
66
73
|
- test/data/components/HelloWorld/HelloWorld.html
|