File: gist.gemspec

package info (click to toggle)
gist 4.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 300 kB
  • ctags: 229
  • sloc: ruby: 2,870; makefile: 16
file content (20 lines) | stat: -rw-r--r-- 666 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# encoding: utf-8
require './lib/gist'
Gem::Specification.new do |s|
  s.name          = 'gist'
  s.version       = Gist::VERSION
  s.summary       = 'Just allows you to upload gists'
  s.description   = 'Provides a single function (Gist.gist) that uploads a gist.'
  s.homepage      = 'https://github.com/defunkt/gist'
  s.email         = ['conrad.irwin@gmail.com', 'rkingist@sharpsaw.org']
  s.authors       = ['Conrad Irwin', '☈king']
  s.license       = 'MIT'
  s.files         = `git ls-files`.split("\n")
  s.require_paths = ["lib"]

  s.executables << 'gist-paste'

  %w(rake rspec webmock ronn).each do |gem|
    s.add_development_dependency gem
  end
end