-
Notifications
You must be signed in to change notification settings - Fork 6
/
alexa.gemspec
25 lines (20 loc) · 897 Bytes
/
alexa.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "alexa/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "alexa-rails"
s.version = Alexa::VERSION
s.authors = ["Sri Vishnu Totakura"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/tsrivishnu/alexa-rails"
s.summary = "Serve Alexa skills with your rails app as backend"
s.description = "The gem adds additional capabilities to your rails app to "\
"serve as a backend for your Alexa skill by providing routing, "\
"controllers, views and structure to easily develop and maintain "\
"skills' backend"
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
s.add_dependency "rails", ">= 5.1"
s.add_development_dependency "pg"
end