Skip to content

Commit

Permalink
Fix loadpath for grape
Browse files Browse the repository at this point in the history
  • Loading branch information
2maz authored and Rock User committed May 4, 2018
1 parent 64934fe commit b7a3178
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions grape/grape.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
$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 = ['[email protected]']
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 'rack', '>= 1.3.0'
s.add_runtime_dependency 'mustermann-grape', '~> 1.0.0'
s.add_runtime_dependency 'rack-accept'
s.add_runtime_dependency 'activesupport'
s.add_runtime_dependency 'virtus', '>= 1.0.0'
s.add_runtime_dependency 'builder'

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

0 comments on commit b7a3178

Please sign in to comment.