-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbmo.gemspec
23 lines (19 loc) · 887 Bytes
/
bmo.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require File.expand_path('../lib/bmo/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = 'bmo'
gem.summary = 'Push notifications to iOS and Android devices'
gem.description = gem.summary
gem.authors = ['Antoine Lyset']
gem.email = ['[email protected]']
gem.homepage = 'https://github.com/antoinelyset/bmo'
gem.require_paths = ['lib']
gem.version = BMO::VERSION.dup
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.add_runtime_dependency 'equalizer', '~> 0.0.0'
gem.add_runtime_dependency 'faraday', '> 0.8.0'
gem.add_development_dependency 'bundler', '~> 1.3'
gem.add_development_dependency 'rake'
gem.license = 'MIT'
end