Skip to content

Commit

Permalink
fix gem deps (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
valexsantos authored Feb 27, 2024
1 parent dc01d25 commit ea15177
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This is micro kubernetes(tm) on Ruby(tm), a simple tool to deploy containers to

It's also a frontend for `docker`, providing an easier way for your services to be locally available, without the need to care about local `ports` availability.

It contains an internal DNS and uses HAProxy for routing/balancing/fail-over for Pods access.
It contains an internal DNS and uses HAProxy as ingress for Pod access.
The database is a simple sqlite3 db and the server is a Sinatra based application.

A client is also included to access the API, e.g. `mkitc ps`.
Expand All @@ -18,7 +18,7 @@ The daemon is responsible for HAProxy pods routing configuration. It also provid
* Docker
* Linux (iproute2 package)

**Note:** in order to have **ssl support**, you must install `openssl-dev` package (e.g. `libssl-dev` on Ubuntu) prior to install MKIt gem.
**Note:** in order to have **ssl support**, you must install `openssl-dev` package (e.g. `libssl-dev` on Ubuntu) prior to install MKIt gem, due to `eventmachine` gem native extensions.

## Install

Expand Down
2 changes: 1 addition & 1 deletion lib/mkit/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module MKIt
VERSION = "0.6.0"
VERSION = "0.6.1"
end

1 change: 1 addition & 0 deletions mkit.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,5 @@ Gem::Specification.new do |s|
s.add_runtime_dependency 'sqlite3', '~> 1.5', '>= 1.5.4'
s.add_runtime_dependency 'standalone_migrations', '~> 7.1', '>= 7.1.0'
s.add_runtime_dependency 'thin', '~> 1.8', '>= 1.8.1'
s.add_runtime_dependency 'text-table', '~> 1.2', '>= 1.2.4'
end

0 comments on commit ea15177

Please sign in to comment.