-
Notifications
You must be signed in to change notification settings - Fork 0
/
feedcellar-gtk.gemspec
48 lines (43 loc) · 1.98 KB
/
feedcellar-gtk.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# coding: utf-8
#
# feedcellar-gtk.gemspec
#
# Copyright (C) 2015 Masafumi Yokoyama <[email protected]>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'feedcellar/gtk/version'
Gem::Specification.new do |spec|
spec.name = "feedcellar-gtk"
spec.version = Feedcellar::Gtk::VERSION
spec.authors = ["Masafumi Yokoyama"]
spec.email = ["[email protected]"]
spec.description = %q{GTK+ interface for Feedcellar is full-text searchable RSS feed reader by Rroonga. Using Ruby/GTK2.}
spec.summary = %q{GTK+ interface for Feedcellar}
spec.homepage = "https://github.com/feedcellar/feedcellar-gtk/"
spec.license = "LGPLv2.1+"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) {|f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_runtime_dependency("feedcellar", ">= 0.4.0")
spec.add_runtime_dependency("gtk2")
spec.add_development_dependency("test-unit")
spec.add_development_dependency("test-unit-notify")
spec.add_development_dependency("test-unit-rr")
spec.add_development_dependency("bundler")
spec.add_development_dependency("rake")
end