Sha256: b1ba7da77b3108a7547a33fc9523d26cfeb460b232be3d1dd200af2706620766

Contents?: true

Size: 940 Bytes

Versions: 6

Compression:

Stored size: 940 Bytes

Contents

$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'grape/version'

Gem::Specification.new do |s|
  s.name        = 'grape'
  s.version     = Grape::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ['Michael Bleigh']
  s.email       = ['michael@intridea.com']
  s.homepage    = 'https://github.com/ruby-grape/grape'
  s.summary     = 'A simple Ruby framework for building REST-like APIs.'
  s.description = 'A Ruby framework for rapid API development with great conventions.'
  s.license     = 'MIT'

  s.add_runtime_dependency 'activesupport'
  s.add_runtime_dependency 'builder'
  s.add_runtime_dependency 'mustermann-grape', '~> 1.0.0'
  s.add_runtime_dependency 'rack', '>= 1.3.0'
  s.add_runtime_dependency 'rack-accept'
  s.add_runtime_dependency 'virtus', '>= 1.0.0'

  s.files         = Dir['**/*'].keep_if { |file| File.file?(file) }
  s.test_files    = Dir['spec/**/*']
  s.require_paths = ['lib']
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
grape-1.2.4 grape.gemspec
grape-1.2.3 grape.gemspec
grape-1.2.2 grape.gemspec
grape-1.2.1 grape.gemspec
grape-1.2.0 grape.gemspec
grape-1.1.0 grape.gemspec