master merged
This commit is contained in:
commit
e6ce47291b
269 changed files with 4223 additions and 2129 deletions
25
Gemfile
25
Gemfile
|
@ -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'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue