Sha256: 56a49645731bc7f02ad985d83b5ba9e0a6e269bf8f5600ec1f04ecbc207ce0ee

Contents?: true

Size: 1.03 KB

Versions: 1

Compression:

Stored size: 1.03 KB

Contents

# frozen_string_literal: true

require File.expand_path('lib/object_paths/version', __dir__)

Gem::Specification.new do |spec|
  spec.name                  = 'object_path'
  spec.version               = ObjectPaths::VERSION
  spec.authors               = ['Drew Thorp']
  spec.email                 = ['gems@fishfur.com']
  spec.summary               = 'Object representing a path through an object graph.'
  spec.description           = 'Also the create of an object that hold the steps through an ' \
                               'object graph to retrieve a value(s).'
  spec.homepage              = 'https://github.com/Fish-Fur/object_path'
  spec.license               = 'Apache-2.0'
  spec.platform              = Gem::Platform::RUBY
  spec.required_ruby_version = '>= 3.3.0'
  spec.files = Dir[
    'README.md', 'LICENSE',
    'CHANGELOG.md', 'lib/**/*.rb',
    'lib/**/*.rake',
    'object_path.gemspec', '.github/*.md',
    'Gemfile', 'Rakefile'
  ]
  spec.extra_rdoc_files = ['README.md']
  spec.add_development_dependency 'rubocop', '~> 1.6'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
object_path-1.0.0 object_path.gemspec