-
Notifications
You must be signed in to change notification settings - Fork 12
/
umlify.gemspec
38 lines (37 loc) · 1008 Bytes
/
umlify.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
$:.push File.expand_path('../lib', __FILE__)
require 'umlify/version'
Gem::Specification.new do |spec|
spec.name = 'umlify'
spec.author = 'Michael Sokol'
spec.email = '[email protected]'
spec.homepage = 'https://github.com/mikaa123/umlify'
spec.version = Umlify::VERSION
spec.summary = "umlify is a tool that creates class diagrams from your code."
spec.files = %w[
Rakefile
README.md
bin/umlify
lib/umlify.rb
lib/umlify/version.rb
lib/umlify/runner.rb
lib/umlify/parser_sexp.rb
lib/umlify/extension.rb
lib/umlify/uml_class.rb
lib/umlify/diagram.rb
test/diagram_test.rb
test/uml_class_test.rb
test/runner_test.rb
test/string_test.rb
]
spec.test_files = %w[
test/uml_class_test.rb
test/parser_sexp_test.rb
test/diagram_test.rb
test/runner_test.rb
test/string_test.rb
]
spec.executables = ['umlify']
spec.add_dependency('ruby_parser')
spec.add_dependency('activesupport')
spec.add_dependency('i18n')
end