-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathds_ruby.gemspec
More file actions
23 lines (19 loc) · 867 Bytes
/
ds_ruby.gemspec
File metadata and controls
23 lines (19 loc) · 867 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = 'ds_ruby'
spec.version = '0.1.0'
spec.authors = ['Roy Chanunkha']
spec.email = ['your.email@example.com']
spec.summary = 'A simple Ruby library for data structures'
spec.description = 'This library provides implementations of various data structures in Ruby.'
spec.homepage = 'https://github.com/Skipper-116/ds-ruby.git'
spec.license = 'MIT'
spec.files = Dir['lib/**/*.rb']
spec.bindir = 'bin'
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.7.0'
spec.add_development_dependency 'bundler', '~> 2.0'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'rspec', '~> 3.10'
end