-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathobjects.gemspec
More file actions
27 lines (21 loc) · 927 Bytes
/
Copy pathobjects.gemspec
File metadata and controls
27 lines (21 loc) · 927 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# frozen_string_literal: true
require_relative 'lib/version'
Gem::Specification.new do |spec|
spec.name = 'objects'
spec.version = Objects::VERSION
spec.authors = ['maedi']
spec.email = ['maediprichard@gmail.com']
spec.summary = 'Sync client-side objects with the server'
spec.description = 'Object-driven interface for bi-directional communication between browser and server'
spec.homepage = 'https://github.com/raindeer-rb/objects'
spec.required_ruby_version = '>= 3.3.0'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/raindeer-rb/objects/src/branch/main'
# Specify which files should be added to the gem when it is released.
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir.glob('lib/**/*')
end
spec.require_paths = ['lib']
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
end