-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrobert.gemspec
More file actions
26 lines (22 loc) · 868 Bytes
/
robert.gemspec
File metadata and controls
26 lines (22 loc) · 868 Bytes
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
$:.unshift File.expand_path("../lib", __FILE__)
require 'robert/version'
Gem::Specification.new do |s|
s.name = "robert"
s.version = Robert::Version::STRING
s.platform = Gem::Platform::RUBY
s.authors = ["Michael Bushkov"]
s.email = "realbushman@gmail.com"
s.homepage = "https://github.com/mbushkov/robert"
s.summary = "robert-#{Robert::Version::STRING}"
s.description = "Generic configuration system"
s.rubygems_version = "1.3.7"
s.add_development_dependency "aruba"
s.add_development_dependency "cucumber"
s.add_development_dependency "flexmock"
s.add_development_dependency "rspec"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.rdoc_options = ["--charset=UTF-8"]
s.require_path = "lib"
end