mirror of
https://github.com/hendrikschneider/jekyll-analytics
synced 2024-11-15 00:27:23 +00:00
fixed import bug
This commit is contained in:
parent
426d74c421
commit
0612872490
2 changed files with 3 additions and 3 deletions
|
@ -1,10 +1,10 @@
|
|||
|
||||
Gem::Specification.new do |s|
|
||||
s.name = 'jekyll-analytics'
|
||||
s.version = '0.1.3'
|
||||
s.version = '0.1.4'
|
||||
s.date = '2017-04-17'
|
||||
s.summary = "Jekyll plugin "
|
||||
s.description = "Plugin to easily add web analytics to your jekyll site"
|
||||
s.description = "Plugin to easily add web analytics to your jekyll site without modifying your templates"
|
||||
s.authors = ["Hendrik Schneider"]
|
||||
s.email = ''
|
||||
s.files = ["lib/jekyll-analytics.rb", "lib/analytics/GoogleAnalytics.rb", "lib/analytics/Piwik.rb"]
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Dir[File.dirname(__FILE__) + '/analytics/*.rb'].each {|file| puts file[0..-4] }
|
||||
Dir[File.dirname(__FILE__) + '/analytics/*.rb'].each {|file| require file[0..-4] }
|
||||
|
||||
CONFIG_KEY = "jekyll_analytics"
|
||||
|
||||
|
|
Loading…
Reference in a new issue