diff options
author | Alex Denisov <1101.debian@gmail.com> | 2012-09-20 10:25:29 +0300 |
---|---|---|
committer | Alex Denisov <1101.debian@gmail.com> | 2012-09-20 10:25:29 +0300 |
commit | e6ce47291b3f08ebe18c2450fc4f21a2a3a2b8a9 (patch) | |
tree | 0e5fa008658b3e890cc447477f533f35c45aafa5 /Gemfile | |
parent | 77bfc591bf5836892be26059d92411f9fbf04be9 (diff) | |
parent | 6104942438c14ec7bd21c6cd5bd995272b3faff6 (diff) | |
download | gitlab-ce-e6ce47291b3f08ebe18c2450fc4f21a2a3a2b8a9.tar.gz |
master merged
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 25 |
1 files changed, 22 insertions, 3 deletions
@@ -1,5 +1,13 @@ source "http://rubygems.org" +def darwin_only(require_as) + RUBY_PLATFORM.include?('darwin') && require_as +end + +def linux_only(require_as) + RUBY_PLATFORM.include?('linux') && require_as +end + gem "rails", "3.2.8" # Supported DBs @@ -8,6 +16,10 @@ gem "mysql2" # Auth gem "devise", "~> 2.1.0" +gem 'omniauth' +gem 'omniauth-google-oauth2' +gem 'omniauth-twitter' +gem 'omniauth-github' # GITLAB patched libs gem "grit", :git => "https://github.com/gitlabhq/grit.git", :ref => "7f35cb98ff17d534a07e3ce6ec3d580f67402837" @@ -98,21 +110,28 @@ group :development do end group :development, :test do + gem 'spinach-rails' gem "rspec-rails" gem "capybara" gem "capybara-webkit" gem "headless" - gem "autotest" - gem "autotest-rails" gem "pry" gem "awesome_print" gem "database_cleaner" gem "launchy" gem 'factory_girl_rails' + + # Guard + gem 'guard-rspec' + gem 'guard-spinach' + + # Notification + gem 'rb-fsevent', :require => darwin_only('rb-fsevent') + gem 'growl', :require => darwin_only('growl') + gem 'rb-inotify', :require => linux_only('rb-inotify') end group :test do - gem 'cucumber-rails', :require => false gem "simplecov", :require => false gem "shoulda-matchers" gem 'email_spec' |