Sha256: 1ecb6d5743378ba47dcd7351fc33a006c0f4bdc4252f684ede52a267c91e872e
Contents?: true
Size: 1.49 KB
Versions: 1
Compression:
Stored size: 1.49 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'show_me_the_object/version' Gem::Specification.new do |spec| spec.name = "show_me_the_object" spec.version = ShowMeTheObject::VERSION spec.authors = ["Jake Moffatt"] spec.email = ["jakeonrails@gmail.com"] spec.summary = %q{Displays the Ruby object that raised an exception on the console} spec.description = %q{Displays the Ruby object that raised an exception on the console} spec.homepage = "https://github.com" # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host' # to allow pushing to a single host or delete this section to allow pushing to any host. if spec.respond_to?(:metadata) spec.metadata['allowed_push_host'] = 'https://rubygems.org' else raise 'RubyGems 2.0 or newer is required to protect against public gem pushes.' end spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.12" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" spec.add_development_dependency "pry-byebug" spec.add_development_dependency "awesome_print" spec.add_dependency "binding_of_caller" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
show_me_the_object-0.1.0 | show_me_the_object.gemspec |