-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathruby_it.gemspec
More file actions
32 lines (24 loc) · 1.02 KB
/
ruby_it.gemspec
File metadata and controls
32 lines (24 loc) · 1.02 KB
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
gem_name = "ruby_it"
require File.join( File.dirname(__FILE__), 'lib', gem_name )
spec = Gem::Specification.new do |s|
s.name = gem_name
s.version = RubyIt::VERSION
s.platform = Gem::Platform::RUBY
s.summary = 'Executable and Object class to evaluate erb templates'
s.homepage = 'http://morganp.github.com/RubyIt/'
s.authors = "Morgan Prior"
s.email = gem_name + "_gem@amaras-tech.co.uk"
s.description = <<-eos
Comand Line Interface (CLI) and Object class can be used to evaluate erb template files
file.rtxt will be evaluated and written as file.txt
eos
s.files = Dir.glob("bin/*")
s.files += Dir.glob("LICENSE.rtf")
s.files += Dir.glob("examples/*")
s.files += Dir.glob("lib/**/*")
s.files += Dir.glob("spec/**/*")
s.bindir = 'bin'
s.executables = [gem_name]
s.has_rdoc = false
s.post_install_message = "To use '#{gem_name}' as a executable application the gems folder must be on your path"
end