File: simplegit.gemspec

package info (click to toggle)
gem2deb 2.2.6
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 1,228 kB
  • sloc: ruby: 5,562; sh: 140; perl: 46; ansic: 33; makefile: 31
file content (24 lines) | stat: -rw-r--r-- 662 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "simplegit/version"

Gem::Specification.new do |s|
  s.name        = "simplegit"
  s.version     = Simplegit::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Antonio Terceiro"]
  s.email       = ["terceiro@softwarelivre.org"]
  s.homepage    = ""
  s.summary     = %q{Simple gem faking code from git}
  s.description = %q{This gem is used to test the case where dh-make-ruby is called on a directory}

  s.files = %w[
    lib
    lib/simplegit.rb
    lib/simplegit
    lib/simplegit/version.rb
    Rakefile
    simplegit.gemspec
  ]
  s.require_paths = ["lib"]
end