Sha256: f1d9adb733cdb6487f8d1d289ea64e55a711854f472669d11798fa37f9eb397b

Contents?: true

Size: 1.06 KB

Versions: 8

Compression:

Stored size: 1.06 KB

Contents

# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('lib', __dir__)
require 'notion/version'

Gem::Specification.new do |s|
  s.name = 'notion-ruby-client'
  s.version = Notion::VERSION
  s.authors = ['Nicolas Goutay']
  s.email = 'nicolas@orbit.love'
  s.platform = Gem::Platform::RUBY
  s.required_rubygems_version = '>= 1.3.6'
  s.files = `git ls-files`.split("\n")
  s.test_files = `git ls-files -- spec/*`.split("\n")
  s.require_paths = ['lib']
  s.homepage = 'http://github.com/orbit-love/notion-ruby-client'
  s.licenses = ['MIT']
  s.summary = 'Notion API client for Ruby.'
  s.add_dependency 'faraday', '>= 1.0'
  s.add_dependency 'faraday_middleware'
  s.add_dependency 'hashie'
  s.add_development_dependency 'rake', '~> 10'
  s.add_development_dependency 'rspec'
  s.add_development_dependency 'rubocop', '~> 0.82.0'
  s.add_development_dependency 'rubocop-performance', '~> 1.5.2'
  s.add_development_dependency 'rubocop-rspec', '~> 1.39.0'
  s.add_development_dependency 'timecop'
  s.add_development_dependency 'vcr'
  s.add_development_dependency 'webmock'
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
notion-ruby-client-0.0.8 notion-ruby-client.gemspec
notion-ruby-client-0.0.7 notion-ruby-client.gemspec
notion-ruby-client-0.0.6 notion-ruby-client.gemspec
notion-ruby-client-0.0.5 notion-ruby-client.gemspec
notion-ruby-client-0.0.4 notion-ruby-client.gemspec
notion-ruby-client-0.0.3 notion-ruby-client.gemspec
notion-ruby-client-0.0.2 notion-ruby-client.gemspec
notion-ruby-client-0.0.1 notion-ruby-client.gemspec