Sha256: a60521897f9238b4c6690b1864c0ee27efee7d61c03452f3fe6607af10698b44
Contents?: true
Size: 1.02 KB
Versions: 17
Compression:
Stored size: 1.02 KB
Contents
# frozen_string_literal: true require_relative "lib/nexus/invision/version" Gem::Specification.new do |spec| spec.name = "nexus-invision" spec.version = Nexus::Invision::VERSION spec.authors = ["Jack Robertson"] spec.email = ["jack.robertson@nexusmods.com"] spec.summary = "A client for the Invision Community REST API." spec.homepage = "https://gitlab.nexdev.uk/nexus-mods/public/nexus-invision" 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(__dir__) do %x(git ls-files -z).split("\x0").reject do |f| (File.expand_path(f) == __FILE__) || f.start_with?( "bin/", "test/", "spec/", "features/", ".git", ".circleci", "appveyor", ) end end spec.bindir = "exe" spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] end
Version data entries
17 entries across 17 versions & 1 rubygems