forked from mutewinter/Showbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
52 lines (45 loc) · 811 Bytes
/
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
source :rubyforge
# Regular
gem 'tzinfo'
gem 'i18n'
# Backups
gem 'backup'
gem 'fog'
gem 'whenever', require: false
# Web
gem 'sinatra'
gem 'sinatra-reloader'
gem 'thin'
gem 'haml'
gem 'sass'
gem 'coffee-script'
gem 'execjs'
gem 'therubyracer'
# Showbot Specific
gem 'cinch', '1.1.3'
gem 'cinchize', '0.3.0'
gem 'chronic', ">= 0.6.0"
gem 'chronic_duration', ">= 0.9.6"
gem 'ri_cal', '0.8.8'
gem 'twitter'
gem 'stopwords', '0.2'
# Data Mapper
gem 'data_mapper'
gem 'dm-core'
gem 'dm-timestamps'
gem 'dm-validations'
gem 'dm-aggregates'
gem 'dm-migrations'
gem 'dm-mysql-adapter'
gem 'dm-types'
gem 'dm-is-counter_cacheable'
# Development Gems
group :development do
gem 'dm-sqlite-adapter'
gem 'foreman'
gem 'rb-fsevent'
gem 'irbtools-more'
end
group :test do
gem 'rack-test', require: false
end