Sha256: c2c99ff7411fcdf568e686bfecd5f657d2454ca138dbb78366edbcaabe9c0091

Contents?: true

Size: 1015 Bytes

Versions: 2

Compression:

Stored size: 1015 Bytes

Contents

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

Gem::Specification.new do |spec|
  spec.name          = 'jot-ruby'
  spec.version       = Jot::Ruby::VERSION
  spec.authors       = ['Kostrov Alexander']
  spec.email         = ['bombazook@gmail.com']

  spec.summary       = 'ruby adapter for JOT OT-library protocol'
  spec.description   = 'ruby adapter for JOT OT-library protocol. Js implementation is available under GPLv3 license'
  spec.homepage      = 'https://github.com/bombazook/jot-ruby'
  spec.license       = 'MIT'

  spec.files         = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end
  spec.bindir        = 'exe'
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ['lib']

  spec.add_development_dependency 'bundler', '~> 1.16'
  spec.add_development_dependency 'rake', '~> 10.0'
  spec.add_development_dependency 'rspec', '~> 3.0'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
jot-ruby-0.1.4 jot-ruby.gemspec
jot-ruby-0.1.3 jot-ruby.gemspec