Commit 338f5dbeb5c3534ae298d69da5021b807cab4991

Authored by Thiago Ribeiro
1 parent ecf67888

Quick corrections for publish the gem.

Rakefile
1 1 require 'bundler'
2 2 Bundler::GemHelper.install_tasks
3 3  
4   -require 'rspec/core/rake_test'
5   -desc "Run specs."
6   -RSpec::Core::RakeTask.new(:spec)
7 4  
8 5 task :default => :spec
9 6 task :test => :spec
... ...
lib/omniauth-remote-user/version.rb
1 1 module Omniauth
2 2 module RemoteUser
3   - VERSION = '0.0.1'
  3 + VERSION = '0.0.3'
4 4 end
5 5 end
... ...
omniauth-remote-user.gemspec
... ... @@ -7,7 +7,7 @@ Gem::Specification.new do |gem|
7 7 gem.description = 'Authentication with Remote-User HTTP header for Omniauth.'
8 8 gem.summary = 'Authentication with HTTP Remote User'
9 9 gem.email = ['kanashiro.duarte@gmail.com', 'thiagitosouza@gmail.com', 'rodrigosiqueiramelo@gmail.com','macartur.sc@gmail.com','terceiro@softwarelivre.org']
10   - gem.homepage = 'http://beta.softwarepublico.gov.br/gitlab/softwarepublico/omiauth-remote-user'
  10 + gem.homepage = 'http://beta.softwarepublico.gov.br/gitlab/softwarepublico/omniauth-remote-user'
11 11 gem.authors = ['Lucas Kanashiro', 'Thiago Ribeiro', 'Rodrigo Siqueira','Macartur Sousa', 'Antonio Terceiro']
12 12 gem.require_paths = %w(lib)
13 13 gem.files = `git ls-files -z`.split("\x0").reject {|f| f.start_with?('spec/')}
... ...