-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweatherlight.gemspec
29 lines (23 loc) · 977 Bytes
/
weatherlight.gemspec
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
26
27
28
29
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "weatherlight/version"
Gem::Specification.new do |gem|
gem.name = "weatherlight"
gem.version = Weatherlight::VERSION
gem.date = Date.today.to_s
gem.authors = ["emp.justine"]
gem.email = ["emp.justine@gmail.com"]
gem.homepage = "http://github.com/empjustine/git-explorer"
gem.summary = %q{Gtk 2 GUI for Git.}
gem.description = %q{A Gtk2 GUI for Git version control system. Because gitting
should be fun}
gem.rubyforge_project = "weatherlight"
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.require_paths = ["lib"]
# gem.add_development_dependency "rspec"
gem.add_runtime_dependency "gtk2"
gem.add_runtime_dependency "grit"
gem.add_runtime_dependency "amatch"
end