-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcobradeps.gemspec
39 lines (33 loc) · 1.43 KB
/
cobradeps.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |spec|
spec.name = 'cobradeps'
spec.version = '0.4.1'
spec.authors = ['Stephan Hagemann']
spec.email = ['[email protected]']
spec.summary = %q{Prints and exports the dependencies within component-based Ruby/Rails applications}
spec.description = <<-DOC
Component-based Ruby/Rails applications use local 'path' gem references to structure an application. This gem provides
utilities for printing and exporting such dependencies.
DOC
spec.homepage = 'https://github.com/shageman/cobradeps'
spec.license = 'MIT'
spec.files = %w(
bin/cobradeps
cobradeps.gemspec
Gemfile
lib/cobradeps/gemfile_scraper.rb
lib/cobradeps.rb
LICENSE
Rakefile
README.md
)
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_dependency 'ruby-graphviz'
spec.add_development_dependency 'bundler', '~> 1.5'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rspec'
end