-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
37 lines (30 loc) · 1 KB
/
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
source 'https://rubygems.org'
gem 'rails', '3.2.8'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'sqlite3'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'uglifier', '>= 1.0.3'
end
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'jquery-rails'
# devise for auth, activeadmin for admin auth, grape for entities
gem 'devise'
gem 'activeadmin'
gem 'meta_search', '>= 1.1.0.pre'
gem 'grape', :git => 'git://github.com/intridea/grape.git'
gem 'grape-swagger', :git => 'git://github.com/tim-vandecasteele/grape-swagger.git'
group :development, :test do
gem 'rb-fsevent' # Guards uses this to look for file changes on OSX
gem 'terminal-notifier-guard' # This is if you are using Mac OS X Mountain Lion
gem "rspec-rails"
gem 'shoulda-matchers'
gem 'rack-test'
gem 'coolline' # readline support for guard.
gem 'rb-fsevent'
gem 'guard'
gem 'guard-rspec'
end