-
Notifications
You must be signed in to change notification settings - Fork 0
/
kiosk.gemspec
31 lines (24 loc) · 1.02 KB
/
kiosk.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
30
31
$:.push File.expand_path('../lib', __FILE__)
require 'kiosk/version'
Gem::Specification.new do |s|
s.name = 'kiosk'
s.summary = 'Simple WordPress integration for Ruby applications.'
s.description = (<<-end_).split.join(' ')
Kiosk provides APIs for integrating WordPress content into a Ruby
application: a base REST model for retrieving content, a caching layer,
and a rewriting engine for canonicalizing and contextualizing content
elements.
end_
s.platform = Gem::Platform::RUBY
s.authors = ['Daniel Duvall']
s.email = ['dan@mutual.io']
s.homepage = 'https://github.com/lettersandlight/kiosk'
s.files = Dir['{lib}/**/*'] + ['MIT-LICENSE', 'Rakefile', 'Gemfile', 'README.md']
s.version = Kiosk::VERSION
s.require_paths = ['lib']
s.add_runtime_dependency 'nokogiri', '~> 1.5.4'
s.add_runtime_dependency 'rails', '~> 3.2.3'
s.add_development_dependency 'rspec', '~> 2.5'
s.add_development_dependency 'shoulda-matchers', '~> 1.1'
s.add_development_dependency 'thinking-sphinx', '~> 2.0.3'
end