Sha256: 413a6154078990732bf89271a203ffda4eaa7c2c14f746a016805e50fd24572d

Contents?: true

Size: 1.29 KB

Versions: 5

Compression:

Stored size: 1.29 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'oxford_dictionary/version'

Gem::Specification.new do |spec|
  spec.name          = 'oxford_dictionary'
  spec.version       = OxfordDictionary::VERSION
  spec.authors       = ['swcraig']
  spec.email         = ['coverless.info@gmail.com']

  spec.summary       = 'A wrapper for the Oxford Dictionary API'
  spec.description   = 'https://developer.oxforddictionaries.com/documentation'
  spec.homepage      = 'https://github.com/swcraig/oxford-dictionary'
  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.13'
  spec.add_development_dependency 'rake', '~> 10.0'
  spec.add_development_dependency 'rspec', '~> 3.0'
  spec.add_development_dependency 'webmock', '~> 2.1.0'
  spec.add_development_dependency 'rubocop', '~> 0.45.0'
  spec.add_development_dependency 'pry'
  spec.add_development_dependency 'vcr', '~> 4.0.0'

  spec.add_runtime_dependency 'virtus', '~> 1.0.5'
  spec.add_runtime_dependency 'plissken', '~> 0.1.0'
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
oxford_dictionary-2.0.0 oxford_dictionary.gemspec
oxford_dictionary-1.3.1 oxford_dictionary.gemspec
oxford_dictionary-1.3.0 oxford_dictionary.gemspec
oxford_dictionary-1.2.0 oxford_dictionary.gemspec
oxford_dictionary-1.1.0 oxford_dictionary.gemspec