-
Notifications
You must be signed in to change notification settings - Fork 2
/
amazon-chime-sdk-rails.gemspec
29 lines (24 loc) · 1.27 KB
/
amazon-chime-sdk-rails.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
$:.push File.expand_path("../lib", __FILE__)
require "chime_sdk/version"
Gem::Specification.new do |s|
s.name = "amazon-chime-sdk-rails"
s.version = ChimeSdk::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Shota Yamazaki"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/simukappu/amazon-chime-sdk-rails"
s.summary = "Server-side implementation of Amazon Chime SDK for Ruby on Rails application"
s.description = "amazon-chime-sdk-rails provides server-side API implementation for Amazon Chime SDK as wrapper functions of AWS SDK for Ruby, and basic controller implementation for Ruby on Rails application."
s.license = "MIT"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- spec/*`.split("\n")
s.require_paths = ["lib"]
s.required_ruby_version = '>= 2.2.2'
s.add_dependency 'railties', '>= 5.0.0'
s.add_dependency 'aws-sdk-chimesdkmeetings', '>= 1.0.0'
s.add_development_dependency 'rspec-rails', '>= 4.0.1'
s.add_development_dependency 'factory_bot_rails', '>= 6.1.0'
s.add_development_dependency 'ammeter', '>= 1.1.4'
s.add_development_dependency 'yard', '>= 0.9.25'
s.add_development_dependency 'devise_token_auth', '>= 1.1.4'
end