forked from rpush/rpush
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rpush.gemspec
62 lines (53 loc) · 2.43 KB
/
rpush.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# -*- encoding: utf-8 -*-
$LOAD_PATH.push File.expand_path("../lib", __FILE__)
require "rpush/version"
Gem::Specification.new do |s|
s.name = "rpush"
s.version = Rpush::VERSION
s.authors = ["Ian Leitch"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/rpush/rpush"
s.summary = 'The push notification service for Ruby.'
s.description = 'The push notification service for Ruby.'
s.license = 'MIT'
s.metadata = {
"bug_tracker_uri" => "https://github.com/rpush/rpush/issues",
"changelog_uri" => "https://github.com/rpush/rpush/blob/master/CHANGELOG.md",
"source_code_uri" => "https://github.com/rpush/rpush"
}
s.files = `git ls-files -- lib README.md CHANGELOG.md LICENSE`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}`.split("\n")
s.executables = `git ls-files -- bin`.split("\n").map { |f| File.basename(f) }
s.require_paths = ["lib"]
s.required_ruby_version = '>= 2.3.0'
s.post_install_message = <<~POST_INSTALL_MESSAGE
When upgrading Rpush, don't forget to run `bundle exec rpush init` to get all the latest migrations.
For details on this specific release, refer to the CHANGELOG.md file.
https://github.com/rpush/rpush/blob/master/CHANGELOG.md
POST_INSTALL_MESSAGE
s.add_runtime_dependency 'multi_json', '~> 1.0'
s.add_runtime_dependency 'net-http-persistent'
s.add_runtime_dependency 'net-http2', '~> 0.18', '>= 0.18.3'
s.add_runtime_dependency 'jwt', '>= 1.5.6'
s.add_runtime_dependency 'activesupport', '>= 5.2'
s.add_runtime_dependency 'thor', ['>= 0.18.1', '< 2.0']
s.add_runtime_dependency 'railties'
s.add_runtime_dependency 'rainbow'
s.add_runtime_dependency 'webpush', '~> 1.0'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec', '~> 3.4.0'
s.add_development_dependency 'database_cleaner'
s.add_development_dependency 'timecop'
s.add_development_dependency 'stackprof'
s.add_development_dependency 'modis', '>= 2.0'
s.add_development_dependency 'rpush-redis', '~> 1.0'
s.add_development_dependency 'appraisal'
s.add_development_dependency 'codeclimate-test-reporter'
s.add_development_dependency 'simplecov'
s.add_development_dependency 'rubocop'
s.add_development_dependency 'rubocop-performance'
s.add_development_dependency 'byebug'
s.add_development_dependency 'pg'
s.add_development_dependency 'mysql2'
s.add_development_dependency 'sqlite3'
end