I want to install fluent-plugin-route
, but I don't know how.
i can't use gem install fluent-plugin-route
because there's no internet.
Any ideas?
I want to install fluent-plugin-route
, but I don't know how.
i can't use gem install fluent-plugin-route
because there's no internet.
Any ideas?
Suggestion: Build the package with rake and install it with gem
1) git clone "Your Repository"
2) bundle install
3) bundle exec rake build
4) gem install pkg/xxx.gem (Location would be pkg folder)
Copy paste your gem via gem install --local as mentioned by DeeChok on your offline VM via gem produced on your online VM by following step 1-4
gem install -N --conservative --minimal-deps --no-document --force --local *gem
N.B: You will have to have ruby installed. You can do that install ruby from source by following the steps here. You may need to install gcc, gcc-c++, openssl-dev(OR libel-dev on RHEL7) before hand.
Hope this helps :)