Sha256: ff08c09e17913259a719fc8f677c74a05f4c23225bc7932905a9debf15cdd50a
Contents?: true
Size: 943 Bytes
Versions: 2
Compression:
Stored size: 943 Bytes
Contents
lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "words_with_dave/version" Gem::Specification.new do |spec| spec.name = "words_with_dave" spec.version = WordsWithDave::VERSION spec.authors = ["David Jungst"] spec.email = ["djungst@gmail.com"] spec.summary = "This is an example Gem" spec.homepage = "https://github.com/wdjungst/words_with_dave" 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.a" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" spec.add_development_dependency "pry" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
words_with_dave-1.0.0 | words_with_dave.gemspec |
words_with_dave-0.3.0 | words_with_dave.gemspec |