Sha256: 503a7e007dd852082b408a63955741ba95b819e35ea32ee5326f24aae13ab62a
Contents?: true
Size: 1.22 KB
Versions: 2
Compression:
Stored size: 1.22 KB
Contents
# frozen_string_literal: true require_relative "lib/orthoses/rails/version" Gem::Specification.new do |spec| spec.name = "orthoses-rails" spec.version = Orthoses::Rails::VERSION spec.authors = ["ksss"] spec.email = ["co000ri@gmail.com"] spec.summary = "Orthoses middleware collection for Ruby on Rails" spec.description = "Orthoses middleware collection for Ruby on Rails" spec.homepage = "https://github.com/ksss/orthoses-rails" spec.license = "MIT" spec.required_ruby_version = ">= 2.6.0" spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = spec.homepage spec.metadata["changelog_uri"] = spec.homepage spec.files = Dir.chdir(File.expand_path(__dir__)) do `git ls-files -z`.split("\x0").reject do |f| next true if (f == __FILE__) next true if f.match?(%r{\A(?:bin|known_sig)/}) # dir next true if f.match?(%r{\A\.(?:git)}) # git next true if f.match?(%r{\A(?:rbs_collection|Steepfile|Rakefile|Gemfile)}) # top file next true if f.match?(%r{_test\.rb\z}) # test false end end spec.bindir = "exe" spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_dependency "orthoses" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
orthoses-rails-0.3.0 | orthoses-rails.gemspec |
orthoses-rails-0.2.0 | orthoses-rails.gemspec |