-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstringify_float.gemspec
More file actions
23 lines (20 loc) · 850 Bytes
/
stringify_float.gemspec
File metadata and controls
23 lines (20 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
VERSION = "1.0"
Gem::Specification.new do |spec|
spec.name = "stringify_float"
spec.version = VERSION
spec.authors = ["Michael Graff"]
spec.email = ["explorer@flame.org"]
spec.description = %q{Work around poor floating point support with RubyMotion and Core Data}
spec.summary = %q{Work around poor floating point support in RubyMotion + Core Data}
spec.homepage = "https://github.com/skandragon/stringify_float"
spec.license = "MIT"
files = []
files << 'README.md'
files.concat(Dir.glob('lib/**/*.rb'))
spec.files = files
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_development_dependency "rake"
end