forked from faradayio/hangar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhangar.gemspec
More file actions
22 lines (18 loc) · 810 Bytes
/
Copy pathhangar.gemspec
File metadata and controls
22 lines (18 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "hangar/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "hangar"
s.version = Hangar::VERSION
s.authors = ["Andy Rossmeissl"]
s.email = ["andy@rossmeissl.net"]
s.homepage = "http://github.com/faradayio/hangar"
s.summary = "Use Rails factories from your frontend"
s.description = "Exposes routes (in the test environment only!) that allow your frontend to factory objects and clear them between tests"
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
s.add_dependency "rails", ">= 4.1.0"
s.add_dependency 'database_cleaner'
s.add_development_dependency 'rspec'
end