- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunction_parser.gemspec
More file actions
Latest commit
27 lines (19 loc) · 695 Bytes
/
Copy pathfunction_parser.gemspec
File metadata and controls
27 lines (19 loc) · 695 Bytes
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
require_relative'lib/function_parser/version'
Gem::Specification.newdo |s|
s.name='function_parser'
s.version=FunctionParser::VERSION
s.platform=Gem::Platform::RUBY
s.date=Date.today.to_s
s.summary="Safely parse strings into Ruby procs"
s.description=""
s.authors=["David Feldman"]
s.email="dbfeldman@gmail.com"
s.license="MIT"
s.homepage="https://github.com/fledman/function_parser"
s.files=Dir[
'Rakefile','README*','LICENSE*','{lib,test}/**/*'
] & `git ls-files -z`.split("\x0")
s.require_paths=["lib"]
s.add_dependency'activesupport','~> 3.2'
s.add_development_dependency"rake","~> 10"
end