diff options
author | Azul <azul@leap.se> | 2014-04-08 11:10:10 +0200 |
---|---|---|
committer | Azul <azul@leap.se> | 2014-04-08 11:10:10 +0200 |
commit | a5aee9ec29501cf2535cb42edb7dbca95e081b8a (patch) | |
tree | 79396631753567672d9dd67ca61a702e19a24f69 /common_dependencies.rb | |
parent | 045237ff88ffd5f1fe23d9621b043a9e604e54fa (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.rb | 22 |
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 |