Sha256: bb27924950bd3431599fe04fe34a3d54e20317014906f07c9d33e2fe4b671741

Contents?: true

Size: 954 Bytes

Versions: 1

Compression:

Stored size: 954 Bytes

Contents

lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "words_with_jared/version"

Gem::Specification.new do |spec|
  spec.name          = "words_with_jared"
  spec.version       = WordsWithJared::VERSION
  spec.authors       = ["Jared Gallardo"]
  spec.email         = ["jaredgg@gmail.com"]

  spec.summary       = "This is an example gem."
  spec.homepage      = "https://github.com/jaretogarato/words_with_jared"
  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

1 entries across 1 versions & 1 rubygems

Version Path
words_with_jared-0.2.0 words_with_jared.gemspec