diff --git a/Gemfile b/Gemfile index 47c900e..d070247 100644 --- a/Gemfile +++ b/Gemfile @@ -1,15 +1,17 @@ source "http://rubygems.org" -group :development, :test do +gemspec + +group :development do gem 'guard' - gem 'guard-rspec' gem 'guard-bundler' - gem 'rb-fsevent' - gem 'simplecov' - gem 'rspec' + gem 'guard-rspec' gem 'rake' +end + +group :test do gem 'coveralls' gem 'rack-test' + gem 'simplecov' + gem 'rspec' end - -gemspec diff --git a/README.md b/README.md index 6af5ff7..ee5e37b 100644 --- a/README.md +++ b/README.md @@ -2,16 +2,12 @@ The Omniauth Remote User gem provides a way for application to utilize a authentication with remote user HTTP header. -# Omniauth Gitlab Remote User - -This gem provides authentication of remote users in gitlab. - # Instalation -Include in you gitlab Gemfile +Include in your Gemfile ```ruby -gem "omniauth-remote-user", :git => "git@beta.softwarepublico.gov.br:softwarepublico/omniauth-remote-user.git" +gem "omniauth-remote-user" ``` Then run `bundle install` from the command line: diff --git a/omniauth-remote-user.gemspec b/omniauth-remote-user.gemspec index c6a8e86..413789f 100644 --- a/omniauth-remote-user.gemspec +++ b/omniauth-remote-user.gemspec @@ -1,19 +1,12 @@ require File.dirname(__FILE__) + '/lib/omniauth-remote-user/version' Gem::Specification.new do |gem| - gem.add_runtime_dependency 'omniauth' - - gem.add_runtime_dependency 'simplecov' - gem.add_runtime_dependency 'bundler' - gem.add_runtime_dependency 'rake' - gem.add_runtime_dependency 'rspec' - gem.add_runtime_dependency 'rack-test' - gem.add_runtime_dependency 'activerecord' - + gem.add_runtime_dependency 'omniauth', '~> 1.0' + gem.add_development_dependency 'bundler', '~> 1.0' gem.name = 'omniauth-remote-user' gem.version = Omniauth::RemoteUser::VERSION - gem.description = %q{Authentication with Remote-User HTTP header for Omniauth.} - gem.summary = gem.description + gem.description = 'Authentication with Remote-User HTTP header for Omniauth.' + gem.summary = 'Authentication with HTTP Remote User' gem.email = ['kanashiro.duarte@gmail.com', 'thiagitosouza@gmail.com', 'rodrigosiqueiramelo@gmail.com','macartur.sc@gmail.com','Antonio Terceiro'] gem.homepage = 'http://beta.softwarepublico.gov.br/gitlab/softwarepublico/omiauth-remote-user' gem.authors = ['Lucas Kanashiro', 'Thiago Ribeiro', 'Rodrigo Siqueira','Macartur Sousa', 'Antonio Terceiro'] -- libgit2 0.21.2