Sha256: 168ff835007ca2d1796c78b5f1f738170256033e0c221aa85a145e7bf7ddece3

Contents?: true

Size: 1.09 KB

Versions: 8

Compression:

Stored size: 1.09 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ralyxa/version'

Gem::Specification.new do |spec|
  spec.name          = "ralyxa"
  spec.version       = Ralyxa::VERSION
  spec.authors       = ["Sam Morgan"]
  spec.email         = ["samm@makersacademy.com"]

  spec.summary       = %q{A Ruby framework for interacting with Amazon Alexa.}
  spec.description   = %q{A Ruby framework for interacting with Amazon Alexa. Designed to work with Sinatra, although can be used with a few other web frameworks.}
  spec.homepage      = "https://github.com/sjmog/ralyxa"
  spec.license       = "MIT"
  spec.files         = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]
  spec.required_ruby_version = '>= 2.3.1'
  spec.add_development_dependency "bundler", "~> 1.14"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "rspec", "~> 3.0"
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
ralyxa-1.5.2 ralyxa.gemspec
ralyxa-1.5.0 ralyxa.gemspec
ralyxa-1.4.0 ralyxa.gemspec
ralyxa-1.3.0 ralyxa.gemspec
ralyxa-1.2.0 ralyxa.gemspec
ralyxa-1.1.1 ralyxa.gemspec
ralyxa-1.1.0 ralyxa.gemspec
ralyxa-1.0.0 ralyxa.gemspec