Hello
Just to say I completely succeed in installing this gem plugin.
So here are the steps I have followed :
- Download the gem from rubygems.org with this command line : gem install "your plugin" --http_proxy=http://user:pass@server:port
- Copy & Paste 2 files from installation :
- From /your folder/vendor\jruby\lib\ruby\gems\shared\gems
Copy logstash-filter-elasticsearch-0.1.6 folder to /your folder/logstash-1.5.3\vendor\bundle\jruby\1.9\gems folder (where all the other plugins are stored into) - expand logstash-filter-elasticsearch-0.1.6 and copy gemspec file from this folder to
/your folder/logstash-1.5.3\vendor\bundle\jruby\1.9\specifications
- Modyfy s.file like this s.files = Dir.glob('vendor/*')
- and then from /your folder/logstash-1.5.3\bin\plugin install your gem plugin.
- Plugin list command shows you your plugin installed with "standards".
I think we can also download gem plugin directly and execute a local gem plugin install and then modify the s.file gemspec otherwise it tries to access git and it is a pain.
So it works for me now. Hope it helps.
Many thanks for people who gave me the clues in the posts above.
