-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathGemfile
More file actions
32 lines (28 loc) · 1.12 KB
/
Gemfile
File metadata and controls
32 lines (28 loc) · 1.12 KB
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
source "https://rubygems.org"
# As programmers, we sometimes want to re-use code other people have written.
# When people write code and publish it for other programmers to use it's
# called a "library."
#
# In Ruby, we call our libraries "gems." Why? Because programmeres like to
# think we're funny. This file (called the "Gemfile") is a list of the gems
# that our program is going to use.
#
# We'll be using Bundler (http://bundler.io) to download these gems to our
# system with the following command:
#
# `bundle install`
#
# The `source` line tells Bundler to download gems from `rubygems.org`, where
# most public libraries are published.
# Excon is a gem for making HTTP requests.
# Docs are at: https://github.com/excon/excon
gem 'excon'
# simple_oauth makes it easy to interact with APIs that require authentication
# by taking our application and user credentials and turning them into an
# Authorization header.
gem 'simple_oauth'
# dotenv allows us to put sensitive information (like the twitter credentials!)
# in a .env file and keep them out of our git repository.
#
# See https://github.com/codeunion/dotenv-example
gem 'dotenv'