Skip to content

Commit

Permalink
Add instructions to install ICU
Browse files Browse the repository at this point in the history
Since
ytti/oxidized-web@1d65a79
added charlock_holmes which requires ICU to be installed
  • Loading branch information
ytti committed Jun 3, 2018
1 parent ca45110 commit b2269a5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ Check out the [Oxidized TREX 2014 presentation](http://youtu.be/kBQ_CTUuqeU#t=3h
Install all required packages and gems.

```shell
apt-get install ruby ruby-dev libsqlite3-dev libssl-dev pkg-config cmake libssh2-1-dev
apt-get install ruby ruby-dev libsqlite3-dev libssl-dev pkg-config cmake libssh2-1-dev libicu-dev
gem install oxidized
gem install oxidized-script oxidized-web # if you don't install oxidized-web, make sure you remove "rest" from your config
```
Expand All @@ -88,13 +88,13 @@ gem install oxidized-script oxidized-web # if you don't install oxidized-web, ma
On CentOS 6 / RHEL 6, install Ruby 2.0 or greater (for Ruby 2.1.2 installation instructions see [Installing Ruby 2.1.2 using RVM](#installing-ruby-212-using-rvm)), then install Oxidized dependencies

```shell
yum install cmake sqlite-devel openssl-devel libssh2-devel
yum install cmake sqlite-devel openssl-devel libssh2-devel libicu-devel
```

RHEL 7 / CentOS 7 will work out of the box with the following package list:

```shell
yum install cmake sqlite-devel openssl-devel libssh2-devel ruby gcc ruby-devel
yum install cmake sqlite-devel openssl-devel libssh2-devel ruby gcc ruby-devel libicu-devel
```

Now let's install oxidized via Rubygems:
Expand Down
2 changes: 1 addition & 1 deletion lib/oxidized/version.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module Oxidized
VERSION = '0.22.0'
VERSION_FULL = '0.22.0-295-g45ada82'
VERSION_FULL = '0.22.0'
def self.version_set
version_full = %x(git describe --tags).chop rescue ""
version = %x(git describe --tags --abbrev=0).chop rescue ""
Expand Down

0 comments on commit b2269a5

Please sign in to comment.