summaryrefslogtreecommitdiff
path: root/common_dependencies.rb
blob: c795d662c9beeb066cd1af808f91c24abc7b7d15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
source "http://rubygems.org"

group :test do
  # moching and stubing
  gem 'mocha', '~> 0.13.0', :require => false
  # integration testing
  gem 'capybara'
  # headless js integration testing
  gem 'poltergeist'
  # required for save_and_open_page in integration tests
  # gem 'launchy'
  gem 'fake_braintree' #depends on rspec?
  gem 'faker'
  gem 'factory_girl_rails'
end

group :test, :development do
  gem 'thin'
  gem 'quiet_assets'
end