-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
80 lines (50 loc) · 2.17 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
source 'https://rubygems.org'
gem 'rails', '3.2.12'
gem 'sinatra', require: 'sinatra/base'
gem 'bourbon', '1.4.0' # scss mixins (see http://thoughtbot.com/bourbon)
gem 'logutils'
gem 'worlddb', '1.8.2'
gem 'beerdb', '0.9.2'
#########################3
# data
gem 'worlddb-data', '99', :git => 'https://github.com/openmundi/world.db.git'
gem 'beerdb-data-world', '99', :git => 'https://github.com/openbeer/world.git'
gem 'beerdb-data-de', '99', :git => 'https://github.com/openbeer/de-deutschland.git'
gem 'beerdb-data-at', '99', :git => 'https://github.com/openbeer/at-austria.git'
gem 'beerdb-data-ch', '99', :git => 'https://github.com/openbeer/ch-confoederatio-helvetica.git'
gem 'beerdb-data-cz', '99', :git => 'https://github.com/openbeer/cz-czech-republic.git'
gem 'beerdb-data-be', '99', :git => 'https://github.com/openbeer/be-belgium.git'
gem 'beerdb-data-nl', '99', :git => 'https://github.com/openbeer/nl-netherlands.git'
gem 'beerdb-data-ie', '99', :git => 'https://github.com/openbeer/ie-ireland.git'
gem 'beerdb-data-ca', '99', :git => 'https://github.com/openbeer/ca-canada.git'
gem 'beerdb-data-us', '99', :git => 'https://github.com/openbeer/us-united-states.git'
gem 'beerdb-data-mx', '99', :git => 'https://github.com/openbeer/mx-mexico.git'
gem 'beerdb-data-jp', '99', :git => 'https://github.com/openbeer/jp-japan.git'
##################################
# logos
gem 'worlddb-flags', '0.1.0' # use bundled country flags
########
# add engines
gem 'beerdb-admin' # , '0.0.1', path: './engine'
##########
# add sinatra (mountable) app(let)s
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'