Skip to content

Commit 50562b9

Browse files
committed
add initial exe
Signed-off-by: Daijiro Fukuda <fukuda@clear-code.com>
1 parent b1fa828 commit 50562b9

2 files changed

Lines changed: 9 additions & 2 deletions

File tree

exe/tailcheck

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/usr/bin/env ruby
2+
# frozen_string_literal: true
3+
4+
require 'fluent/tail_checker'
5+
6+
Fluent::TailChecker.run

lib/fluent/tail_checker.rb

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44

55
module Fluent
66
module TailChecker
7-
class Error < StandardError; end
8-
# Your code goes here...
7+
def self.run
8+
puts Fluent::TailChecker::VERSION
9+
end
910
end
1011
end

0 commit comments

Comments
 (0)