File: ipynbdiff.gemspec

package info (click to toggle)
ruby-ipynbdiff 0.4.7-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 148 kB
  • sloc: ruby: 363; makefile: 5
file content (36 lines) | stat: -rw-r--r-- 1,265 bytes parent folder | download
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
# frozen_string_literal: true

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

require 'lib/version'

Gem::Specification.new do |s|
  s.name        = 'ipynbdiff'
  s.version     = IpynbDiff::VERSION
  s.summary     = 'Human Readable diffs for Jupyter Notebooks'
  s.description = 'Better diff for Jupyter Notebooks by first preprocessing them and removing clutter'
  s.authors     = ['Eduardo Bonet']
  s.email       = 'ebonet@gitlab.com'
  # Specify which files should be added to the gem when it is released.
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
  s.files         = Dir.glob('lib/**/*')
  s.homepage =
    'https://gitlab.com/gitlab-org/incubation-engineering/mlops/rb-ipynbdiff'
  s.license       = 'MIT'

  s.require_paths = ['lib']

  s.add_runtime_dependency 'diffy', '~> 3.3'
  s.add_runtime_dependency 'json', '~> 2.5', '>= 2.5.1'

  s.add_development_dependency 'bundler', '~> 2.2'
  s.add_development_dependency 'guard-rspec'
  s.add_development_dependency 'pry'
  s.add_development_dependency 'rake'
  s.add_development_dependency 'rspec'
  s.add_development_dependency 'rspec-parametized'
  s.metadata = {
    'rubygems_mfa_required' => 'true'
  }
end