Sha256: b2574326c2b6a46ed327bc1c49a13c876ecd4b9c64af2e029ee52ec1805dd6c9
Contents?: true
Size: 1.2 KB
Versions: 2
Compression:
Stored size: 1.2 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_runtime_dependency 'virtus', '~> 1.0.5' spec.add_runtime_dependency 'plissken', '~> 0.1.0' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
oxford_dictionary-1.0.1 | oxford_dictionary.gemspec |
oxford_dictionary-1.0.0 | oxford_dictionary.gemspec |