gitrb.gemspec in gitrb-0.1.5 vs gitrb.gemspec in gitrb-0.1.6
- old
+ new
@@ -1,19 +1,17 @@
Gem::Specification.new do |s|
s.name = 'gitrb'
- s.version = '0.1.5'
+ s.version = '0.1.6'
s.summary = 'Pure ruby git implementation'
s.author = 'Daniel Mendler'
s.email = 'mail@daniel-mendler.de'
s.homepage = 'https://github.com/minad/gitrb'
s.rubyforge_project = %q{gitrb}
- s.description = <<END
-Pure ruby git implementation similar to grit.
-END
+ s.description = 'Fast and lightweight ruby git implementation'
s.require_path = 'lib'
s.has_rdoc = true
- s.extra_rdoc_files = ['README.md']
+ s.extra_rdoc_files = ['README.md']
s.files = %w{
LICENSE
README.md
Rakefile
gitrb.gemspec
@@ -28,14 +26,16 @@
lib/gitrb/tag.rb
lib/gitrb/tree.rb
lib/gitrb/trie.rb
lib/gitrb/user.rb
lib/gitrb/util.rb
-test/bare_repository_spec.rb
+test/bare_repository_test.rb
test/benchmark.rb
-test/commit_spec.rb
-test/repository_spec.rb
-test/trie_spec.rb
-test/tree_spec.rb
+test/commit_test.rb
+test/helper.rb
+test/profile.rb
+test/repository_test.rb
+test/trie_test.rb
+test/tree_test.rb
}
+ s.add_development_dependency('bacon')
end
-