-
Notifications
You must be signed in to change notification settings - Fork 12
/
hiroshimarb.gemspec
29 lines (24 loc) · 1.11 KB
/
hiroshimarb.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
# -*- coding: utf-8 -*-
$LOAD_PATH << File.expand_path('../lib', __FILE__)
require 'hiroshimarb/version'
require 'hiroshimarb/member'
Gem::Specification.new do |gem|
gem.authors = Hiroshimarb::Member.all.map(&:name)
gem.email = ["[email protected]"]
gem.description = %q{provide `hiroshimarb` command. hiroshimarb is Hiroshima.rb. Hiroshima.rb is local community of Ruby in Hiroshima/Japan}
gem.summary = %q{provide `hiroshimarb` command. hiroshimarb is Hiroshima.rb}
gem.homepage = "http://github.com/hiroshimarb/hiroshimarb-gem"
gem.rubyforge_project = 'github'
gem.license = 'MIT'
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "hiroshimarb"
gem.require_paths = ["lib"]
gem.version = Hiroshimarb::VERSION
gem.add_dependency "launchy", "~> 2.1.2"
gem.add_dependency "rdf"
gem.add_development_dependency "rspec", "~> 2.11"
gem.add_development_dependency "aruba"
gem.add_development_dependency "rake"
end