forked from mavenlink/brainstem
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbrainstem.gemspec
More file actions
28 lines (24 loc) · 1.1 KB
/
brainstem.gemspec
File metadata and controls
28 lines (24 loc) · 1.1 KB
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
26
27
28
# -*- encoding: utf-8 -*-
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require "brainstem/version"
Gem::Specification.new do |gem|
gem.name = "brainstem"
gem.authors = ["Mavenlink"]
gem.email = ["opensource@mavenlink.com"]
gem.description = %q{Brainstem allows you to create rich API presenters that know how to filter, sort, and include associations.}
gem.summary = %q{ActiveRecord presenters with a rich request API}
gem.homepage = "http://github.com/mavenlink/brainstem"
gem.license = "MIT"
gem.files = Dir["**/*"]
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.version = Brainstem::VERSION
gem.add_dependency "activerecord", ">= 3.2"
gem.add_development_dependency "rake"
gem.add_development_dependency "redcarpet" # for markdown in yard
gem.add_development_dependency "rr"
gem.add_development_dependency "rspec"
gem.add_development_dependency "sqlite3"
gem.add_development_dependency "yard"
end