Skip to content

Commit

Permalink
updated gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
jfederico committed May 28, 2020
1 parent a412061 commit dfbbc1b
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 11 deletions.
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/.bundle/
/.yardoc
/_yardoc/
/coverage/
/doc/
/pkg/
/spec/reports/
/tmp/
*.gem
30 changes: 19 additions & 11 deletions bn-ldap-authentication.gemspec
Original file line number Diff line number Diff line change
@@ -1,18 +1,26 @@
lib = File.expand_path("../lib", __FILE__)
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

Gem::Specification.new do |gem|
gem.name = "bn-ldap-authentication"
gem.version = "0.1.3"
gem.authors = ["shawn-higgins1"]
gem.email = ["[email protected]"]
Gem::Specification.new do |spec|
spec.name = "bn-ldap-authentication"
spec.version = "0.1.3"
spec.authors = ["shawn-higgins1"]
spec.email = ["[email protected]"]

gem.summary = "An ruby gem for authenticating users with ldap"
gem.description = "A ruby gem for using ldap to authenticate greenlight users"
spec.summary = "An ruby gem for authenticating users with ldap"
spec .description = "A ruby gem for using ldap to authenticate greenlight users"
spec.homepage = "https://github.com/blindsidenetworks/bn-ldap-authentication"
spec.license = "MIT"

gem.files = 'git ls-files'.split("\n")
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

gem.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 1.11"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "rspec", "~> 3.0"

gem.add_runtime_dependency 'net-ldap'
spec.add_runtime_dependency 'net-ldap', '~> 0'
end

0 comments on commit dfbbc1b

Please sign in to comment.