forked from infinitered/cdq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cdq.gemspec
28 lines (25 loc) · 985 Bytes
/
cdq.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/cdq/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["infinitered", "kemiller"]
gem.email = ["[email protected]"]
gem.description = "Core Data Query for RubyMotion"
gem.summary = "A streamlined library for working with Core Data outside XCode"
gem.homepage = "http://infinitered.com/cdq"
gem.license = 'MIT'
files = []
files << 'README.md'
files << 'LICENSE'
files.concat(Dir.glob('lib/**/*.rb'))
files.concat(Dir.glob('motion/**/*.rb'))
files.concat(Dir.glob('templates/**/*.rb'))
files.concat(Dir.glob('vendor/**/*.{rb,m,h}'))
gem.files = files
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "cdq"
gem.require_paths = ["lib"]
gem.add_runtime_dependency 'ruby-xcdm', '~> 0.0', '>= 0.0.8'
gem.add_runtime_dependency 'motion-yaml'
gem.executables << 'cdq'
gem.version = CDQ::VERSION
end