-
Notifications
You must be signed in to change notification settings - Fork 0
/
usefuldb.gemspec
31 lines (26 loc) · 1.01 KB
/
usefuldb.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
require 'rubygems'
require 'rake'
Gem::Specification.new do |s|
s.name = 'usefuldb'
s.version = '0.2.0'
s.date = '2015-10-02'
s.summary = "usefuldb - simple database for storage of useful commands and or urls."
s.description = "Accessible through a commandline script, UsefulDB allows the user to store information about a useful command or useful url"
s.authors = ["David Kirwan"]
s.email = ['[email protected]']
s.require_paths = ["lib"]
s.files = FileList['lib/**/*.rb',
'bin/*',
'[A-Z]*',
'resources/*',
'test/**/*'].to_a
s.homepage = 'http://rubygems.org/gems/usefuldb'
s.required_ruby_version = '>= 1.8.7'
s.executables << 'usefuldb'
s.post_install_message = <<-INSTALL
usefuldb - simple database for storage of useful commands and or urls
INSTALL
s.license = 'GPL 2.0'
s.add_development_dependency "bundler"
s.add_development_dependency "test-unit"
end