-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgreensync-json_sequence.gemspec
38 lines (29 loc) · 1.54 KB
/
greensync-json_sequence.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
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "greensync/json_sequence/version"
Gem::Specification.new do |spec|
spec.name = "greensync-json_sequence"
spec.version = JsonSequence::VERSION
spec.authors = ['GreenSync Developers']
spec.email = ['[email protected]']
spec.summary = %q{Push parser for RFC7464 JSON Sequences}
spec.homepage = "https://github.com/greensync/json-sequence"
spec.license = "MIT"
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
Dir.glob("{bin,lib}/**/*") + %w[README.md Gemfile Gemfile.lock Rakefile LICENSE.txt greensync-json_sequence.gemspec]
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_runtime_dependency "multi_json", "~> 1.15"
spec.add_development_dependency "bundler", "~> 2.2"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency "json", "~> 2.0"
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/greensync/json-sequence'
spec.metadata['changelog_uri'] = 'https://github.com/greensync/json-sequence/releases'
spec.metadata['github_repo'] = 'https://github.com/greensync/json-sequence'
spec.metadata['rubygems_mfa_required'] = 'true'
spec.metadata['allowed_push_host'] = 'https://rubygems.pkg.github.com/greensync'
end