Sha256: 77af5365b5e3e45e7d0bed437045a4806547d8c8eb5316317883d02e0343a5d5

Contents?: true

Size: 1.02 KB

Versions: 3

Compression:

Stored size: 1.02 KB

Contents

# frozen_string_literal: true

require_relative "lib/omniauth/whalespace/version"

Gem::Specification.new do |spec|
  spec.name = "omniauth-whalespace"
  spec.version = Omniauth::Whalespace::VERSION
  spec.authors = ["이창환"]
  spec.email = ["lch@team-mono.com"]

  spec.summary = "Whalespace OAuth2 Strategy for OmniAuth"
  spec.homepage = "https://github.com/team-monolith-product/omniauth-whalespace"
  spec.license = "MIT"
  spec.required_ruby_version = ">= 2.6.0"

  # Specify which files should be added to the gem when it is released.
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
  spec.files = Dir.chdir(File.expand_path(__dir__)) do
    `git ls-files -z`.split("\x0").reject do |f|
      (f == __FILE__) || f.match(%r{\A(?:(?:test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
    end
  end
  spec.bindir = "exe"
  spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_runtime_dependency "omniauth-oauth2", "~> 1.2"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
omniauth-whalespace-0.3.0 omniauth-whalespace.gemspec
omniauth-whalespace-0.2.0 omniauth-whalespace.gemspec
omniauth-whalespace-0.1.0 omniauth-whalespace.gemspec