fixed import bug

This commit is contained in:
Hendrik Schneider 2017-04-17 03:11:36 +03:00
parent 426d74c421
commit 0612872490
2 changed files with 3 additions and 3 deletions

View file

@ -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"]

View file

@ -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"