-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
43 lines (36 loc) · 1.01 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
38
39
40
41
42
43
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.1.4'
# Use sqlite3 as the database for Active Record
gem 'sqlite3'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.3'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
gem "therubyracer"
gem 'bootstrap-sass', '~> 3.3.1'
gem 'autoprefixer-rails'
gem 'shoulda-matchers', github: "thoughtbot/shoulda-matchers" # Using this because it has more matchers
gem 'haml'
gem 'haml-rails'
gem 'turbolinks'
gem 'angularjs-rails', "1.3.10"
gem 'angular-rails-templates'
gem 'has_scope'
gem 'angular-ui-bootstrap-rails'
gem 'active_model_serializers', "~> 0.8.0"
gem 'quiet_assets', :group => :development
gem 'jquery-rails'
group :development, :test do
gem 'faker'
gem 'factory_girl_rails', '~> 4.0'
gem 'rspec-rails'
gem 'faker'
gem 'capybara', '>= 2.2.0'
end
group :test do
gem 'database_cleaner'
gem 'timecop'
gem 'webmock'
end