master merged
Showing
CONTRIBUTING.md
0 → 100644
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' | ||
... | ... |
Guardfile
0 → 100644
app/helpers/notes_helper.rb
0 → 100644
app/roles/upvote.rb
deleted
100644 → 0
app/roles/votes.rb
0 → 100644
File moved
config/cucumber.yml
deleted
100644 → 0
config/resque.yml.example
0 → 100644
doc/api/keys.md
0 → 100644
lib/api/keys.rb
0 → 100644
lib/gitlab/app_logger.rb
0 → 100644
lib/gitlab/auth.rb
0 → 100644
lib/gitlab/git_logger.rb
0 → 100644
script/cucumber
deleted
100755 → 0
spec/lib/auth_spec.rb
0 → 100644
spec/roles/votes_spec.rb
0 → 100644
spec/routing/routing_spec.rb
0 → 100644
1.89 KB
4.34 KB
1.58 KB
3.37 KB
1.41 KB
3.3 KB