|
1 | 1 | # -*- encoding: utf-8 -*- |
2 | 2 | $:.push File.expand_path("../lib", __FILE__) |
3 | | -require "bitarray" |
| 3 | + |
| 4 | +require 'bitarray' |
4 | 5 |
|
5 | 6 | Gem::Specification.new do |s| |
6 | | - s.name = "bitarray" |
7 | | - s.version = BitArray::VERSION |
8 | | - s.authors = ["Peter Cooper"] |
9 | | - s.email = ["git@peterc.org"] |
10 | | - s.homepage = "https://github.com/mceachen/bit-array/" |
11 | | - s.summary = %q{A fast(ish), pure Ruby bit field "type"} |
12 | | - s.description = %q{Rubygem packaging of Peter Cooper's BitArray class'} |
| 7 | + s.name = "bitarray" |
| 8 | + s.version = BitArray::VERSION |
| 9 | + s.authors = ["Peter Cooper"] |
| 10 | + s.email = ["git@peterc.org"] |
| 11 | + s.homepage = "https://github.com/peterc/bitarray" |
| 12 | + s.summary = %q{A simple, pure Ruby bit array implementation.} |
| 13 | + s.description = %q{A simple, pure Ruby bit array implementation.} |
13 | 14 |
|
14 | 15 | s.rubyforge_project = "bitarray" |
15 | 16 |
|
16 | | - s.files = `git ls-files`.split("\n") |
17 | | - s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") |
18 | | - s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) } |
| 17 | + s.files = `git ls-files`.split("\n") |
| 18 | + s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") |
| 19 | + s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } |
19 | 20 | s.require_paths = ["lib"] |
20 | | - |
| 21 | + |
21 | 22 | s.add_development_dependency "rake" |
22 | 23 | s.add_development_dependency "yard" |
23 | 24 | s.add_development_dependency "test-unit" |
|
0 commit comments