-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathlocomotive_plugins.gemspec
31 lines (23 loc) · 1.06 KB
/
locomotive_plugins.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'version'
Gem::Specification.new do |s|
s.name = 'locomotive_plugins'
s.version = LocomotivePlugins::VERSION
s.summary = 'Gem for creating plugins for Locomotive'
s.description = 'This gem allows developers to create plugins for Locomotive CMS with particular functionality. See the README for more details'
s.authors = ['Colibri Software']
s.email = '[email protected]'
s.homepage = 'https://github.com/colibri-software/locomotive_plugins'
s.add_dependency 'locomotive_liquid', '~> 2.4'
s.add_dependency 'haml', '~> 4.0'
s.add_dependency 'bson_ext'
s.add_dependency 'mongoid', '~> 3.1.5'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec'
s.files = Dir['Rakefile',
*%w{bin lib man test spec}.collect { |dir| "#{dir}/**/*" },
*%w{README LICENSE CHANGELOG}.collect { |file| "#{file}*" }
]
end