forked from roodi/roodi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathroodi.gemspec
23 lines (19 loc) · 964 Bytes
/
roodi.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
$: << File.expand_path("../lib", __FILE__)
require "roodi"
require "roodi/version"
Gem::Specification.new do |gem|
gem.name = "metric_fu-roodi"
gem.summary = "Roodi stands for Ruby Object Oriented Design Inferometer"
gem.description = "Roodi stands for Ruby Object Oriented Design Inferometer"
gem.homepage = "http://roodi.rubyforge.org"
gem.authors = ["Marty Andrews"]
gem.email = "marty@cogent.co"
gem.post_install_message = Roodi.message
gem.version = Roodi::VERSION.dup
gem.platform = Gem::Platform::RUBY
gem.homepage = "http://github.com/metricfu/roodi"
gem.files = %w(lib/roodi.rb lib/roodi/version.rb bin/metric_fu-roodi bin/metric_fu-roodi-describe)
gem.executables = %w(metric_fu-roodi metric_fu-roodi-describe)
gem.require_paths = ["lib"]
gem.license = 'MIT'
end