-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathroar-atom.gemspec
More file actions
30 lines (24 loc) · 1.01 KB
/
roar-atom.gemspec
File metadata and controls
30 lines (24 loc) · 1.01 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
29
30
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'roar/atom/version'
Gem::Specification.new do |spec|
spec.name = 'roar-atom'
spec.version = Roar::Atom::VERSION
spec.authors = ['Fanny Cheung']
spec.email = ['fanny@ynote.hk']
spec.summary = 'A representable back-end that generates Atom feeds.'
spec.homepage = 'https://github.com/KissKissBankBank/roar-atom'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.require_paths = ['lib']
if spec.respond_to?(:metadata)
spec.metadata['allowed_push_host'] = 'https://gemfury.com/'
end
# Manage representers.
spec.add_dependency 'roar', '>= 1.1.0'
spec.add_dependency 'ratom', '>= 0.9.0'
spec.add_development_dependency 'bundler', '~> 2.0.1'
spec.add_development_dependency 'rake', '~> 11.0'
spec.add_development_dependency 'rails', '>= 3.2'
end