File: unsorted_names.gemspec

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

Gem::Specification.new do |s|
  s.name        = "unsorted_names"
  s.version     = "1.0"
  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/file2.rb
    lib/file1.rb
    Rakefile
    unsorted_names.gemspec
  ]
  s.test_files = %w[
    lib/file2.rb
    lib/file1.rb
  ]
  s.require_paths = ["lib"]
end