forked from unfold/vae_local
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvae.gemspec
More file actions
30 lines (27 loc) · 1.2 KB
/
vae.gemspec
File metadata and controls
30 lines (27 loc) · 1.2 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
Gem::Specification.new do |s|
version = File.open(File.dirname(__FILE__) + "/lib/version.rb") { |f| f.read }.match(/"(.*)"/)[0].gsub('"', "")
s.name = "vae"
s.version = version
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Action Verb, LLC", "Kevin Bombino"]
s.bindir = "bin"
s.description = "Supports local development for Vae Platform (http://vaeplatform.com/)"
s.email = "support@actionverb.com"
s.executables << "vae"
s.files = Dir.glob("{bin,lib,test}/**/*")
s.homepage = "http://docs.vaeplatform.com/vae_local"
s.license = "GPL-3.0"
s.rubygems_version = '1.8.10'
s.summary = "This gem allows for local development for sites on Vae Platform (http://vaeplatform.com/)"
s.add_dependency 'chunky_png', '~> 1'
s.add_dependency 'compass', '~> 1'
s.add_dependency 'directory_watcher', '~> 1'
# s.add_dependency 'github-pages', '87'
s.add_dependency 'haml', '~> 4'
s.add_dependency 'highline', '~> 1'
s.add_dependency 'jekyll-multiple-languages-plugin', '~> 1.4'
s.add_dependency 'json', '~> 1'
s.add_dependency 'mongrel', '1.2.0.pre2'
s.add_dependency 'ptools', '~> 1'
s.add_dependency 'sass', '~> 3.4'
end