forked from maestrano/maestrano-connector-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
34 lines (31 loc) · 721 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
source 'http://rubygems.org'
# Add dependencies required to use your gem here.
gem 'rails', '~> 4.2'
gem 'maestrano-rails'
gem 'hash_mapper'
gem 'haml-rails'
gem 'bootstrap-sass'
gem 'autoprefixer-rails'
gem 'attr_encrypted', '~> 1.4.0'
gem 'config'
gem 'figaro'
gem 'sidekiq'
# The missing unique jobs for sidekiq
gem 'sidekiq-unique-jobs'
gem 'sinatra', require: nil
gem 'sidekiq-cron'
gem 'slim'
# Add dependencies to develop your gem here.
group :development do
gem 'shoulda', '>= 0'
gem 'rdoc', '~> 3.12'
gem 'bundler', '~> 1.0'
gem 'jeweler', '~> 2.1.1'
gem 'simplecov', '>= 0'
gem 'rspec-rails'
gem 'factory_girl_rails'
gem 'sqlite3'
gem 'shoulda-matchers'
gem 'rubocop'
gem 'timecop'
end