-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathublisherp.gemspec
29 lines (24 loc) · 1.01 KB
/
ublisherp.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
28
29
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
Gem::Specification.new do |s|
root = File.dirname(__FILE__)
s.name = 'ublisherp'
s.version = '0.0.1'
s.authors = ['Dan Brown', 'Alex Barlow']
s.email = ['[email protected]', '[email protected]']
s.summary = 'Publisher from ActiveRecord to Redis'
s.homepage = 'https://github.com/madebymany/ublisherp'
s.files = Dir[File.join(root, 'lib/**/*.rb')]
s.test_files = Dir[File.join(root, 'spec/**/*.rb')]
s.require_paths = ['lib']
s.add_runtime_dependency 'redis', '~> 3.0'
s.add_runtime_dependency 'redis-namespace'
s.add_runtime_dependency 'activesupport', '>= 3.2'
s.add_runtime_dependency 'activemodel', '>= 3.2', '< 5'
s.add_runtime_dependency 'multi_json', '~> 1.0'
s.add_runtime_dependency 'oj', '~> 2.0.11'
s.add_runtime_dependency 'hooks', '~> 0.3.1'
s.add_development_dependency 'rspec'
s.add_development_dependency 'sqlite3'
s.add_development_dependency 'activerecord', '~> 3.2'
end