-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
32 lines (25 loc) · 843 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
ruby '~> 2.6.3'
source 'https://rubygems.org'
gem 'dotenv'
gem 'rake', '~> 12.3.2'
gem 'irb' # no longer included with ruby 2.6
# posting methods, used by most bots
gem 'twitter', git: 'https://github.com/ckolderup/twitter.git', branch: 'video-upload-fix'
gem 'mastodon-api', '~> 2.0.0'
gem 'discordrb-webhooks', '~> 3.4.2'
# image stuff, used by a number of bots
gem 'rmagick', '~> 2.15.4'
gem 'ruby-opencv', '~> 0.0.18'
# generally useful things
gem 'rest-client'
gem 'colourlovers'
gem 'color'
gem 'wordnik'
gem 'noun-project-api', '~> 0.2.2'
gem 'word_wrap'
# specific to card game bot
gem 'squib', git: 'https://github.com/andymeneely/squib', branch: 'master'
# specific to but-with-guns
gem 'giantbomb', git: 'http://github.com/ckolderup/giantbomb.git'
# pinning a version of nokogiri that isn't hacked
gem 'nokogiri', '>= 1.8.5'