Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com>2012-10-31 15:53:38 +0400
committerDmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com>2012-10-31 15:53:38 +0400
commitb6fc0310316eb61f68551a3b37f340b0fb4d0b20 (patch)
tree5350535e77a829aa105b61821b72c2ba389dd398 /Gemfile
parent6d2e64164a46633afa7409461e4635834288e717 (diff)
Update Gemfile with 1.9 syntax. Define ref for forks
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile26
1 files changed, 13 insertions, 13 deletions
diff --git a/Gemfile b/Gemfile
index 65c69e7e629..95070221dcb 100644
--- a/Gemfile
+++ b/Gemfile
@@ -11,9 +11,9 @@ end
gem "rails", "3.2.8"
# Supported DBs
-gem "sqlite3", :group => :sqlite
-gem "mysql2", :group => :mysql
-gem "pg", :group => :postgres
+gem "sqlite3", group: :sqlite
+gem "mysql2", group: :mysql
+gem "pg", group: :postgres
# Auth
gem "devise", "~> 2.1.0"
@@ -23,10 +23,10 @@ gem 'omniauth-twitter'
gem 'omniauth-github'
# GITLAB patched libs
-gem "grit", :git => "https://github.com/gitlabhq/grit.git", :ref => "7f35cb98ff17d534a07e3ce6ec3d580f67402837"
-gem "omniauth-ldap", :git => "https://github.com/gitlabhq/omniauth-ldap.git", :ref => "f038dd852d7bd473a557e385d5d7c2fd5dc1dc2e"
-gem 'yaml_db', :git => "https://github.com/gitlabhq/yaml_db.git"
-gem 'grack', :git => "https://github.com/gitlabhq/grack.git"
+gem "grit", git: "https://github.com/gitlabhq/grit.git", ref: '7f35cb98ff17d534a07e3ce6ec3d580f67402837'
+gem "omniauth-ldap", git: "https://github.com/gitlabhq/omniauth-ldap.git", ref: 'f038dd852d7bd473a557e385d5d7c2fd5dc1dc2e'
+gem 'yaml_db', git: "https://github.com/gitlabhq/yaml_db.git", ref: '98e9a5dca43e3fedd3268c76a73af40d1bdf1dfd'
+gem 'grack', git: "https://github.com/gitlabhq/grack.git", ref: 'ba46f3b0845c6a09d488ae6abdce6ede37e227e8'
# Gitolite client (for work with gitolite-admin repo)
gem "gitolite", '1.1.0'
@@ -35,7 +35,7 @@ gem "gitolite", '1.1.0'
gem "pygments.rb", "0.3.1"
# Language detection
-gem "github-linguist", "~> 2.3.4" , :require => "linguist"
+gem "github-linguist", "~> 2.3.4" , require: "linguist"
# API
gem "grape", "~> 0.2.1"
@@ -115,7 +115,7 @@ end
group :development do
gem "letter_opener"
- gem "annotate", :git => "https://github.com/ctran/annotate_models.git"
+ gem "annotate", git: "https://github.com/ctran/annotate_models.git"
gem 'rack-mini-profiler'
end
@@ -137,13 +137,13 @@ group :development, :test do
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')
+ 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 "simplecov", :require => false
+ gem "simplecov", require: false
gem "shoulda-matchers"
gem 'email_spec'
gem 'resque_spec'