Skip to content

Commit e0cad08

Browse files
committed
♻️ gemspec gem => spec
1 parent f6d52da commit e0cad08

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

omniauth-ldap.gemspec

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
# -*- encoding: utf-8 -*-
22
require File.expand_path('../lib/omniauth-ldap/version', __FILE__)
33

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"
1111

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'
1919

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
2626
end

0 commit comments

Comments
 (0)