-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsplit.gemspec
More file actions
42 lines (34 loc) · 1.62 KB
/
split.gemspec
File metadata and controls
42 lines (34 loc) · 1.62 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# frozen_string_literal: true
require_relative 'lib/split/version'
Gem::Specification.new do |spec|
spec.name = 'split'
spec.version = Split::VERSION
spec.authors = ['Bolo Michelin']
spec.email = ['wecare@scionx.io']
spec.summary = 'A Ruby gem for interacting with 0xSplits V2 protocol contracts'
spec.description = 'This gem provides functionality to create, manage, and interact with 0xSplits V2 protocol contracts for automated revenue distribution.'
spec.homepage = 'https://github.com/ScionX/split'
spec.license = 'MIT'
spec.required_ruby_version = '>= 3.0.0'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = spec.homepage
spec.metadata['changelog_uri'] = "#{spec.homepage}/blob/main/CHANGELOG.md"
# Specify which files should be added to the gem when it is released.
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir['{lib,constants}/**/*', 'README.md', 'LICENSE', 'CHANGELOG.md']
end
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
# Runtime dependencies
spec.add_runtime_dependency 'eth', '~> 0.5'
spec.add_runtime_dependency 'graphql-client', '~> 0.18'
spec.add_runtime_dependency 'pimlico', '>= 0.0.1'
# Development dependencies
spec.add_development_dependency 'bundler', '~> 2.0'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'minitest', '~> 5.0'
spec.add_development_dependency 'rubocop', '~> 1.0'
spec.add_development_dependency 'rubocop-performance', '~> 1.0'
spec.add_development_dependency 'rubocop-rake', '~> 0.6'
end