forked from wearefine/fae
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
49 lines (39 loc) · 1.32 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
44
45
46
47
48
49
source "https://rubygems.org"
# Declare your gem's dependencies in fae.gemspec.
# Bundler will treat runtime dependencies like base dependencies, and
# development dependencies will be added by default to the :development group.
gemspec
# Declare any dependencies that are still in development here instead of in
# your gemspec. These might include edge Rails or gems from your path or
# Git. Remember to move these dependencies to your gemspec before releasing
# your gem to rubygems.org.
# To use debugger
# gem 'debugger'
# Set the version of Rails for the dummy app
gem 'rails', '~> 5.0.0'
# Lock in Rake to a version compatible with rspec-rails 3.0
gem 'rake', '< 12.0.0'
gem 'jquery-rails'
gem 'jquery-ui-rails', '~> 4.2.1'
gem 'sass', require: 'sass'
gem 'carrierwave', '~> 0.10.0'
gem 'rmagick', '~> 2.13.3', require: false
group :test, :development do
gem 'rspec-rails', '~> 3.0.2'
gem 'pry'
end
group :test do
gem 'factory_girl_rails', '~> 4.4.1'
gem 'capybara-webkit', '~> 1.11.1'
gem 'capybara-screenshot'
gem 'guard-rspec', '~> 4.3.1'
gem 'selenium-webdriver', '~> 2.42.0'
gem 'shoulda-matchers', require: false
gem 'yarjuf'
gem 'database_cleaner'
gem 'rails-controller-testing'
end
gem 'capistrano', '~> 3.1'
gem 'capistrano-rails', git: 'https://github.com/wearefine/rails'
gem 'capistrano-rvm'
gem 'mysql2'