summaryrefslogtreecommitdiff
path: root/common_dependencies.rb
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2014-04-08 11:10:10 +0200
committerAzul <azul@leap.se>2014-04-08 11:10:10 +0200
commita5aee9ec29501cf2535cb42edb7dbca95e081b8a (patch)
tree79396631753567672d9dd67ca61a702e19a24f69 /common_dependencies.rb
parent045237ff88ffd5f1fe23d9621b043a9e604e54fa (diff)
move all dependencies into Gemfile
We used to keep them separated so one could require some engines without using the full webapp. We've never really supported this though and probably never will.
Diffstat (limited to 'common_dependencies.rb')
-rw-r--r--common_dependencies.rb22
1 files changed, 0 insertions, 22 deletions
diff --git a/common_dependencies.rb b/common_dependencies.rb
deleted file mode 100644
index 2225613..0000000
--- a/common_dependencies.rb
+++ /dev/null
@@ -1,22 +0,0 @@
-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
-
-group :production do
- gem 'SyslogLogger', '~> 2.0'
-end