-
Notifications
You must be signed in to change notification settings - Fork 15
/
red_alert.gemspec
25 lines (21 loc) · 999 Bytes
/
red_alert.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
$LOAD_PATH.push File.expand_path('lib', __dir__)
require File.expand_path('lib/project/version', __dir__)
Gem::Specification.new do |spec|
spec.name = 'RedAlert'
spec.version = RedAlert::VERSION
spec.authors = ['Gant Laborde']
spec.email = ['[email protected]']
spec.description = 'RMQ Plugin adds efficient and dynamic alerts/sheets for RubyMotion Apps on iOS 7 & 8'
spec.summary = 'RMQ Plugin adds efficient and dynamic alerts/sheets for RubyMotion Apps on iOS 7 & 8.'
spec.homepage = 'https://github.com/GantMan/RedAlert'
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_runtime_dependency 'ruby_motion_query', '>= 1.3.4'
spec.add_development_dependency 'rake'
end