forked from danielbayerlein/middleman-google-analytics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmiddleman-google-analytics.gemspec
26 lines (23 loc) · 1.16 KB
/
middleman-google-analytics.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'middleman-google-analytics/version'
Gem::Specification.new do |s|
s.name = 'middleman-google-analytics'
s.version = Middleman::GoogleAnalytics::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Daniel Bayerlein', 'Jon Frisby']
s.email = ['[email protected]', '[email protected]']
s.homepage = 'https://github.com/danielbayerlein/middleman-google-analytics'
s.summary = 'A Middleman plugin for handling Google Analytics tracking code.'
s.description = 'middleman-google-analytics is a Middleman extension that generates Google Analytics tracking code, and keeps your config in config.rb, where it belongs.'
s.license = 'MIT'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ['lib']
s.required_ruby_version = '>= 2.3.0'
s.add_dependency('middleman-core', ['>= 4.0'])
s.add_dependency('uglifier', ['~> 3.0'])
s.add_dependency('activesupport', ['>= 4.2', '< 5.2'])
s.add_dependency('erubis')
end