Sha256: dd3a8d1c3cd2132f3a18492f51082065cb40b06f9808f109d30c8b876f77518a
Contents?: true
Size: 1.28 KB
Versions: 3
Compression:
Stored size: 1.28 KB
Contents
lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "lichess/version" Gem::Specification.new do |spec| spec.name = "ruby-lichess" spec.version = Lichess::VERSION spec.authors = ["omgrr"] spec.email = ["jerwis0731@gmail.com"] spec.summary = %q{Ruby library for lichess api} spec.description = %q{Ruby library for lichess api} spec.homepage = "https://github.com/omgrr/ruby-lichess.git" spec.license = "MIT" # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host' # to allow pushing to a single host or delete this section to allow pushing to any host. 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_dependency "ndjson", "~> 1.0" spec.add_dependency "http", "~> 4.0" spec.add_development_dependency "bundler", "~> 1.16" spec.add_development_dependency "dotenv", "2.5.0" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" spec.add_development_dependency "pry", "~> 0.11" end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ruby-lichess-0.3.0 | ruby-lichess.gemspec |
ruby-lichess-0.2.1 | ruby-lichess.gemspec |
ruby-lichess-0.2.0 | ruby-lichess.gemspec |