Sha256: d1039a7692ff52684b4573308819762d38e1dc558878e2b951187a0345c7830a

Contents?: true

Size: 944 Bytes

Versions: 2

Compression:

Stored size: 944 Bytes

Contents

# frozen_string_literal: true

lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'jsonview/version'

Gem::Specification.new do |spec|
  spec.name          = 'json_viewer_gtk3'
  spec.version       = JsonView::VERSION
  spec.authors       = ['kojix2']
  spec.email         = ['2xijok@gmail.com']

  spec.summary       = 'Simple GUI Json viewer'
  spec.description   = 'Simple GUI Json Viewer'
  spec.homepage      = 'https://github.com/kojix2/json_viewer_gtk3'
  spec.license       = 'MIT'

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

  spec.add_dependency 'gtk3'
  spec.add_development_dependency 'bundler'
  spec.add_development_dependency 'rake'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
json_viewer_gtk3-0.0.3 json_viewer_gtk3.gemspec
json_viewer_gtk3-0.0.2 json_viewer_gtk3.gemspec