-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathGemfile
117 lines (72 loc) · 3.92 KB
/
Gemfile
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
source 'https://rubygems.org'
gem 'kramdown' # all ruby markdown processor/engine
gem 'rails', '3.2.12'
gem 'rails-i18n' # see https://github.com/svenfuchs/rails-i18n
gem 'sinatra', require: 'sinatra/base'
gem 'bcrypt-ruby', '~> 3.0.0'
gem 'worlddb', '2.0.4' # see https://github.com/geraldb/world.db.ruby
gem 'sportdb', '1.9.8' # see https://github.com/geraldb/sport.db.ruby
gem 'activityutils', '0.1.0' # see https://github.com/rubylibs/activityutils
gem 'props', '1.1.1'
gem 'tagutils', '0.2.2'
####################################
## add sportdb addons/plugins
gem 'sportdb-market', '0.5.1' # see https://github.com/openbookie/sport.db.market
gem 'sportdb-play', '0.2.5' # see https://github.com/openbookie/sport.db.play
##########################
## add rails engines
gem 'worlddb-admin', '0.1.1'
gem 'sportdb-admin', '0.3.0'
#########################
## add logos n flags
gem 'worlddb-flags', '0.1.0' # use bundled country flags
gem 'sportdb-logos', '0.1.0', git: 'https://github.com/sportlogos/sport.db.logos.ruby.git', branch: 'gh-pages'
gem 'footballdb-logos', '0.1.0', git: 'https://github.com/sportlogos/football.db.logos.ruby.git', branch: 'gh-pages'
###################
## add data
gem 'worlddb-data', '9.9.9', git: 'https://github.com/openmundi/world.db.git'
## -- stadiums/grounds
gem 'sportdb-data-stadiums', '9.9.9', git: 'https://github.com/openfootball/stadiums.git'
## -- national football teams
gem 'sportdb-data-national-teams', '9.9.9', git: 'https://github.com/openfootball/national-teams.git'
gem 'sportdb-data-world-cup', '9.9.9', git: 'https://github.com/openfootball/world-cup.git'
# gem 'sportdb-data-africa-cup', '9.9.9', git: 'https://github.com/openfootball/africa-cup.git'
# gem 'sportdb-data-north-america-gold-cup', '9.9.9', git: 'https://github.com/openfootball/north-america-gold-cup.git'
# gem 'sportdb-data-copa-america', '9.9.9', git: 'https://github.com/openfootball/copa-america.git'
# gem 'sportdb-data-euro-cup', '9.9.9', git: 'https://github.com/openfootball/euro-cup.git'
## -- football clubs
gem 'sportdb-data-de', '9.9.9', git: 'https://github.com/openfootball/de-deutschland.git'
gem 'sportdb-data-at', '9.9.9', git: 'https://github.com/openfootball/at-austria.git'
gem 'sportdb-data-en', '9.9.9', git: 'https://github.com/openfootball/en-england.git'
gem 'sportdb-data-es', '9.9.9', git: 'https://github.com/openfootball/es-espana.git'
gem 'sportdb-data-it', '9.9.9', git: 'https://github.com/openfootball/it-italy.git'
gem 'sportdb-data-fr', '9.9.9', git: 'https://github.com/openfootball/fr-france.git'
gem 'sportdb-data-ch', '9.9.9', git: 'https://github.com/openfootball/ch-confoederatio-helvetica.git'
gem 'sportdb-data-clubs', '9.9.9', git: 'https://github.com/openfootball/clubs.git'
gem 'sportdb-data-europe-champions-league', '9.9.9', git: 'https://github.com/openfootball/europe-champions-league.git'
## american football (nfl teams)
gem 'sportdb-data-american-football', '9.9.9', git: 'https://github.com/opensport/american-football.db.git'
## gem 'sportdb-data-market', '9.9.9', :git => 'https://github.com/openbookie/football.db.market.git'
####### add mountable apps
gem 'about' # mountable app - about - sys info pages
gem 'dbbrowser' # mountable app
group :production do
gem 'pg'
gem 'thin' # use faster multiplexed (w/ eventmachine) web server
end
group :development do
gem 'sqlite3'
gem 'annotate', '~> 2.4.1.beta'
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer'
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'
gem 'bourbon', '1.4.0' # scss mixins (see http://thoughtbot.com/bourbon)
gem 'ri_cal'