-
Notifications
You must be signed in to change notification settings - Fork 34
/
Gemfile
38 lines (31 loc) · 1017 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
35
36
37
38
source 'http://rubygems.org'
gem 'rails', '~>5.1.0'
gem 'activerecord-session_store'
gem 'faker'
gem 'pg'
gem 'carrierwave'
gem 'netzke', '6.5.0.0'
# gem 'netzke', git: 'https://github.com/netzke/netzke.git', branch: '6-5-0'
# gem 'netzke-core', git: 'https://github.com/netzke/netzke-core.git', branch: '6-5-0'
# gem 'netzke-basepack', git: 'https://github.com/netzke/netzke-basepack.git', branch: '6-5-0'
# gem 'netzke-testing', git: 'https://github.com/netzke/netzke-testing.git', branch: '6-5-0'
gem 'awesome_nested_set'
gem 'whenever', :require => false
group :development, :test do
gem 'pry'
gem 'capybara'
gem 'capybara-screenshot'
gem 'selenium-webdriver', '~> 3.4.4'
gem 'chromedriver-helper'
gem 'rspec-rails'
# gem 'spork-rails'
gem 'launchy' # So you can do Then show me the page
gem 'factory_girl_rails'
end
group :development do
gem 'capistrano', '3.5.0'
gem 'capistrano-bundler'
gem 'capistrano-rails'
gem 'capistrano-rails-console'
gem 'capistrano-passenger'
end