-
- Downloads
Fixed test and travis
Showing
- .travis.yml 6 additions, 0 deletions.travis.yml
- Gemfile 4 additions, 5 deletionsGemfile
- Gemfile.lock 24 additions, 54 deletionsGemfile.lock
- lib/omniauth-ldap/adaptor.rb 5 additions, 5 deletionslib/omniauth-ldap/adaptor.rb
- omniauth-ldap.gemspec 4 additions, 9 deletionsomniauth-ldap.gemspec
- spec/omniauth/strategies/ldap_spec.rb 24 additions, 16 deletionsspec/omniauth/strategies/ldap_spec.rb
- spec/spec_helper.rb 0 additions, 2 deletionsspec/spec_helper.rb
.travis.yml
0 → 100644
Loading
| Loading
| @@ -3,9 +3,8 @@ source 'http://rubygems.org' |
gemspec | ||
group :development, :test do | ||
gem 'guard' | ||
gem 'guard-rspec' | ||
gem 'guard-bundler' | ||
gem 'growl' | ||
gem 'rb-fsevent' | ||
gem 'rspec' | ||
gem 'pry' | ||
gem 'rake' | ||
gem 'rack-test' | ||
end |
Loading
| Loading
| @@ -6,22 +6,17 @@ Gem::Specification.new do |gem| |
gem.email = ["ping@intridea.com"] | ||
gem.description = %q{A LDAP strategy for OmniAuth.} | ||
gem.summary = %q{A LDAP strategy for OmniAuth.} | ||
gem.homepage = "https://github.com/intridea/omniauth-ldap" | ||
gem.homepage = "https://github.com/gitlabhq/omniauth-ldap" | ||
gem.add_runtime_dependency 'omniauth', '~> 1.0' | ||
gem.add_runtime_dependency 'net-ldap', '~> 0.2.2' | ||
gem.add_runtime_dependency 'pyu-ruby-sasl', '~> 0.0.3.1' | ||
gem.add_runtime_dependency 'rubyntlm', '~> 0.1.1' | ||
gem.add_development_dependency 'rspec', '~> 2.7' | ||
gem.add_development_dependency 'simplecov' | ||
gem.add_development_dependency 'rack-test' | ||
gem.add_development_dependency 'libnotify' | ||
gem.add_development_dependency 'ruby-debug19' | ||
gem.add_runtime_dependency 'rubyntlm', '~> 0.1.1' | ||
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } | ||
gem.files = `git ls-files`.split("\n") | ||
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") | ||
gem.name = "omniauth-ldap" | ||
gem.name = "gitlab_omniauth-ldap" | ||
gem.require_paths = ["lib"] | ||
gem.version = OmniAuth::LDAP::VERSION | ||
end |
Please register or sign in to comment