-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathmatrix-sdk.gemspec
More file actions
25 lines (19 loc) · 888 Bytes
/
matrix-sdk.gemspec
File metadata and controls
25 lines (19 loc) · 888 Bytes
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
# frozen_string_literal: true
require File.join File.expand_path('lib', __dir__), 'matrix_sdk/version'
Gem::Specification.new do |spec|
spec.name = 'matrix_sdk'
spec.version = MatrixSdk::VERSION
spec.authors = ['Alexander Olofsson']
spec.email = ['ace@haxalot.com']
spec.summary = 'SDK for applications using the Matrix protocol'
spec.description = spec.summary
spec.homepage = 'https://github.com/ananace/ruby-matrix-sdk'
spec.license = 'MIT'
spec.extra_rdoc_files = %w[CHANGELOG.md LICENSE.txt README.md]
spec.files = Dir['lib/**/*'] + spec.extra_rdoc_files
spec.add_development_dependency 'mocha'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'simplecov'
spec.add_development_dependency 'test-unit'
spec.add_dependency 'logging', '~> 2'
end