forked from ashleygwilliams/trebek
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.rb
77 lines (62 loc) · 1.63 KB
/
app.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
require "bundler"
Bundler.require
Dir.glob('./lib/*.rb') do |model|
require model
end
class Gambit < Sinatra::Application
configure do
set :root, File.dirname(__FILE__)
set :public_folder, 'public'
end
get "/styles.css" do
scss :trebek
end
get "/" do
haml :index
end
get "/games/new/" do
haml :game_form
end
post "/games/" do
@game = Game.new(Deck.new("data/#{params[:deck_file]}.yml"))
end
get "/games/:type/:deck_file" do
deck = Deck.new("data/#{params[:deck_file]}.yml")
@cards = deck.cards
haml :"#{params[:type]}"
end
get "/games/students/:type/:deck_file" do
deck = Deck.new("data/#{params[:deck_file]}.yml")
@cards = deck.cards
haml :"#{params[:type]}2"
end
get "/decks/:deck_file" do
deck = Deck.new("data/#{params[:deck_file]}.yml")
@cards = deck.cards
haml :deck
end
get "/:deck_file" do
@deck = YAML::load(File.open("data/#{params[:deck_file]}.yml"))
haml :test
end
helpers do
def partial(template,locals=nil)
if template.is_a?(String) || template.is_a?(Symbol)
template = :"_#{template}"
else
locals=template
template = template.is_a?(Array) ? :"_#{template.first.class.to_s.downcase}" : :"_#{template.class.to_s.downcase}"
end
if locals.is_a?(Hash)
haml template, {}, locals
elsif locals
locals=[locals] unless locals.respond_to?(:inject)
locals.inject([]) do |output,element|
output << haml(template,{template.to_s.delete("_").to_sym => element})
end.join("\n")
else
haml template
end
end
end
end