Sha256: 02ecdff859781c53ef1d2a8607e50b5105d42e7f841ffe987ff5550cc6c3fe05
Contents?: true
Size: 1.03 KB
Versions: 7
Compression:
Stored size: 1.03 KB
Contents
# coding: utf-8 require File.expand_path(File.join(File.dirname(__FILE__),"files.rb")) ### Specification for the new Gem Gem::Specification.new do |spec| spec.name = "grape-dsl" spec.version = File.open(File.join(File.dirname(__FILE__),"VERSION")).read.split("\n")[0].chomp.gsub(' ','') spec.authors = ["Adam Luzsi"] spec.email = ["adamluzsi@gmail.com"] spec.description = %q{DSL for Grape module that let you use some basic function much easier. For example mount all Grape class into a single one with a simple line} spec.summary = %q{Simple Grape DSL for easer use cases} spec.homepage = "https://github.com/adamluzsi/grape-dsl" spec.license = "MIT" spec.files = GrapeDSL::SpecFiles spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] #spec.add_dependency "bindless" spec.add_dependency "mpatch", '>= 2.8.0' spec.add_dependency "grape" end
Version data entries
7 entries across 7 versions & 1 rubygems