-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathve.gemspec
More file actions
22 lines (19 loc) · 773 Bytes
/
ve.gemspec
File metadata and controls
22 lines (19 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- coding: utf-8 -*-
Gem::Specification.new do |s|
s.name = 've'
s.version = '0.0.4'
s.platform = Gem::Platform::RUBY
s.authors = ['Kim Ahlström']
s.email = ['kim.ahlstrom@gmail.com']
s.license = 'MIT'
s.homepage = 'http://github.com/kimtaro/ve'
s.summary = 'Ve is a linguistic framework for programmers'
s.description = 'Ve is a linguistic framework for programmers.'
# The list of files to be contained in the gem
s.files = `git ls-files`.split("\n")
# s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
# s.extensions = `git ls-files ext/extconf.rb`.split("\n")
s.require_paths = ['lib']
# For C extensions
# s.extensions = 'ext/extconf.rb'
end