fix dependency on ruby

pull/2/merge v1.0.1
Anton Smirnov 2014-10-31 01:48:03 +03:00
parent 51c453a5dd
commit af35d024d4
3 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,7 @@
# journald-native
[![Gem Version](https://badge.fury.io/rb/journald-native.svg)](http://badge.fury.io/rb/journald-native)
A systemd-journal native logging lib wrapper.
[See sd-journal help for more info](http://www.freedesktop.org/software/systemd/man/sd_journal_print.html)

View File

@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
spec.extensions << 'ext/journald_native/extconf.rb'
spec.add_dependency 'ruby', '>= 1.9.2'
spec.required_ruby_version = '>= 1.9.2'
spec.add_development_dependency 'bundler', '~> 1.6'
spec.add_development_dependency 'rake'

View File

@ -1,5 +1,5 @@
module Journald
module Native
VERSION = '1.0.0'
VERSION = '1.0.1'
end
end