|
1 | 1 | # -*- encoding: utf-8 -*- |
2 | 2 | require File.expand_path('../lib/omniauth-ldap/version', __FILE__) |
3 | 3 |
|
4 | | -Gem::Specification.new do |gem| |
5 | | - gem.authors = ["Ping Yu", "Tom Milewski"] |
6 | | - |
7 | | - gem.description = %q{A LDAP strategy for OmniAuth.} |
8 | | - gem.summary = %q{A LDAP strategy for OmniAuth.} |
9 | | - gem.homepage = "https://github.com/intridea/omniauth-ldap" |
10 | | - gem.license = "MIT" |
| 4 | +Gem::Specification.new do |spec| |
| 5 | + spec.authors = ["Ping Yu", "Tom Milewski"] |
| 6 | + |
| 7 | + spec.description = %q{A LDAP strategy for OmniAuth.} |
| 8 | + spec.summary = %q{A LDAP strategy for OmniAuth.} |
| 9 | + spec.homepage = "https://github.com/intridea/omniauth-ldap" |
| 10 | + spec.license = "MIT" |
11 | 11 |
|
12 | | - gem.add_runtime_dependency 'omniauth', '~> 2.0.0' |
13 | | - gem.add_runtime_dependency 'net-ldap', '~> 0.16' |
14 | | - gem.add_runtime_dependency 'pyu-ruby-sasl', '~> 0.0.3.3' |
15 | | - gem.add_runtime_dependency 'rubyntlm', '~> 0.6.2' |
16 | | - gem.add_development_dependency 'rspec', '~> 3.0' |
17 | | - gem.add_development_dependency 'simplecov', '~> 0.11' |
18 | | - gem.add_development_dependency 'rack-test', '~> 0.6', '>= 0.6.3' |
| 12 | + spec.add_runtime_dependency 'omniauth', '~> 2.0.0' |
| 13 | + spec.add_runtime_dependency 'net-ldap', '~> 0.16' |
| 14 | + spec.add_runtime_dependency 'pyu-ruby-sasl', '~> 0.0.3.3' |
| 15 | + spec.add_runtime_dependency 'rubyntlm', '~> 0.6.2' |
| 16 | + spec.add_development_dependency 'rspec', '~> 3.0' |
| 17 | + spec.add_development_dependency 'simplecov', '~> 0.11' |
| 18 | + spec.add_development_dependency 'rack-test', '~> 0.6', '>= 0.6.3' |
19 | 19 |
|
20 | | - gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } |
21 | | - gem.files = `git ls-files`.split("\n") |
22 | | - gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") |
23 | | - gem.name = "omniauth-ldap" |
24 | | - gem.require_paths = ["lib"] |
25 | | - gem.version = OmniAuth::LDAP::VERSION |
| 20 | + spec.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } |
| 21 | + spec.files = `git ls-files`.split("\n") |
| 22 | + spec.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") |
| 23 | + spec.name = "omniauth-ldap" |
| 24 | + spec.require_paths = ["lib"] |
| 25 | + spec.version = OmniAuth::LDAP::VERSION |
26 | 26 | end |
0 commit comments