Skip to content

Commit

Permalink
cleanup rake warnings, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
briangann committed Jul 15, 2019
1 parent c58eacf commit eb33e81
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 2 deletions.
2 changes: 2 additions & 0 deletions fluentd/fluent-plugin-grafana-loki/Gemfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

source 'https://rubygems.org'

gemspec
Expand Down
2 changes: 2 additions & 0 deletions fluentd/fluent-plugin-grafana-loki/Rakefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

require 'bundler/gem_tasks'
require 'rspec/core/rake_task'
require 'rubocop/rake_task'
Expand Down
2 changes: 2 additions & 0 deletions fluentd/fluent-plugin-grafana-loki/docker/Gemfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

source 'https://rubygems.org'

gem 'fluent-plugin-kubernetes_metadata_filter', '~> 0.7.0'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# frozen_string_literal: true

$LOAD_PATH.push File.expand_path('lib', __dir__)

Gem::Specification.new do |spec|
spec.name = 'fluent-plugin-grafana-loki'
spec.version = '1.0.0'
spec.version = '1.0.1'
spec.authors = %w[woodsaj briangann]
spec.email = ['[email protected]', '[email protected]']

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

#
# Copyright 2018- Grafana Labs
#
Expand Down Expand Up @@ -27,7 +29,7 @@ class LokiOutput < Fluent::Plugin::Output

helpers :compat_parameters

DEFAULT_BUFFER_TYPE = 'memory'.freeze
DEFAULT_BUFFER_TYPE = 'memory'

# url of loki server
config_param :url, :string, default: 'https://logs-us-west1.grafana.net'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

require 'spec_helper'
require 'time'
require 'yajl'
Expand Down
2 changes: 2 additions & 0 deletions fluentd/fluent-plugin-grafana-loki/spec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

require 'rubocop'
require 'rubocop/rspec/support'

Expand Down

0 comments on commit eb33e81

Please sign in to comment.