-
Notifications
You must be signed in to change notification settings - Fork 1
/
dre.gemspec
27 lines (23 loc) · 1.08 KB
/
dre.gemspec
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
$:.push File.expand_path("../lib", __FILE__)
require "dre/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "dre"
s.version = Dre::VERSION
s.authors = ["Anton Ivanopoulos"]
s.email = ["[email protected]"]
s.homepage = "http://www.papercloud.com.au"
s.summary = "A device registration engine for Rails."
s.description = "An engine to easily add in a Device model and registration / deregistration system by supplying a token provided mobile applications. Provides easy associations to device owner models."
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["test/**/*"]
s.add_dependency 'rails', '>= 3.2'
s.add_dependency 'responders'
s.add_development_dependency 'sqlite3'
s.add_development_dependency 'rspec-rails', '~> 3.0'
s.add_development_dependency 'factory_girl_rails'
s.add_development_dependency 'pry'
s.add_development_dependency 'appraisal'
s.add_development_dependency 'shoulda-matchers'
end