File: peek-host.gemspec

package info (click to toggle)
ruby-peek-host 1.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 100 kB
  • sloc: ruby: 26; makefile: 4
file content (21 lines) | stat: -rw-r--r-- 840 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'peek-host/version'

Gem::Specification.new do |gem|
  gem.name          = 'peek-host'
  gem.version       = Peek::Host::VERSION
  gem.authors       = ['Jacob Bednarz']
  gem.email         = ['jacob.bednarz@gmail.com']
  gem.description   = %q{Take a peek into the host which served your Rails request.}
  gem.summary       = %q{Take a peek into the host which served your Rails request.}
  gem.homepage      = 'https://github.com/jacobbednarz/peek-host'

  gem.files         = `git ls-files`.split($/)
  gem.executables   = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
  gem.test_files    = gem.files.grep(%r{^(test|spec|features)/})
  gem.require_paths = ['lib']

  gem.add_dependency 'peek'
end