-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
40 lines (27 loc) · 777 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
source 'https://rubygems.org'
ruby File.read('.ruby-version')
def path_for p; p if ENV['LOCAL_GEMS']; end
gem 'activesupport'
gem 'dotenv'
gem 'hashie'
gem 'chronic'
gem 'chronic_duration'
gem 'iso-639'
gem 'telegram-bot-ruby', git: 'git@github.com:brauliobo/telegram-bot-ruby.git'
gem 'rack' # for better mime type
gem 'roda'
gem 'puma'
gem 'drb'
gem 'addressable'
gem 'mechanize'
gem 'srt'
gem 'tdlib-schema', github: 'brauliobo/tdlib-schema', path: path_for("#{ENV['HOME']}/Projects/tdlib-schema")
gem 'tdlib-ruby', github: 'brauliobo/tdlib-ruby', path: path_for("#{ENV['HOME']}/Projects/tdlib-ruby")
if ENV['DB']
gem 'pg'
gem 'sequel'
end
gem 'whisper.cpp', path: path_for('../ruby-whisper.cpp') if ENV['WHISPER']
group :development do
gem 'pry'
end