I just installed redmine via apt-get on Linux Mint 14. Before I added the repository from https://launchpad.net/~ondrej/+archive/redmine. Everything works fine.
Environment:
Redmine version 2.3.1.stable
Ruby version 1.8.7 (x86_64-linux)
Rails version 3.2.13
Next step would be for me to install a few plugins. I followed the instructions on
http://www.redmine.org/projects/redmine/wiki/Plugins.
The plugin to install http://www.redmine.org/plugins/redmine-projects-accordion
I created a directory /plugins under /usr/share/redmine (this is
where also the app-folder is).
Next step to do a rake redmine:plugins:migrate RAILS_ENV=production.
Now im getting a little Warning: WARNING: 'require 'rake/rdoctask'' is deprecated.
Next step is to restart apache(using passenger-mod) to restart
redmine. But there is no plugin on my administration.
As Im not a ruby/rails dev I can only guess where to search. Any ideas where to look for further information etc? Would be thankful for any advice.
Thanks a lot in advance.
Redmine is a ticket system as well as it is a issue tracker. Some companies are recently using redmine and it is developed by rails frame work. Now Redmine is upgraded its version to 2.x (recently 2.3 is the stable version). So , How can we use plugins in redmine 2.3 versions which we already implemented in redmine 1.x version.
Generally we can easily search the plugins from redmine plugins directory and do install , migration and restart the server i am sure some of you may get some issue at configuration level of the plugin from admin panel. So it depends up on the plugin version too.
You can find the better approach to install the plugins in redmine 2.3 in step by step process is explained in detail from this blog
http://mywayonrails.wordpress.com/2013/07/08/plugins-for-redmine-2-3
Related
I want to install jekyll, for that purpose i have installed ruby (ruby version 2.3.3) but the error I am facing the error given above:
jekyll sass-converter requires ruby version 2.4
Download Ruby from Links: https://rubyinstaller.org/
I have tried solving the problem by downloading other versions (i.e., 2.4 and 2.5) as well but got the same error. How should I tackle this please guide me in this regard?
Thanks in Advance
Ruby and Ruby-on-Rails are two separate projects.
Ruby is a programming language and Rails is a web framework based on Ruby.
RailsInstaller is an outdated project. Ruby 2.3 has reached end-of-life and the latest rails version is v6.0.0.
If you're installing Ruby just to use Jekyll, then you should perhaps look into installing via RubyInstaller instead.
More details in the following link to Jekyll documentation:
https://jekyllrb.com/docs/installation/windows/
P.S. If you are not working on any other Ruby projects, uninstalling existing outdated versions of Ruby will ensure a smoother installation of the more recent versions.
I've got server with Linux Red Hat, Ruby 2.2 и Git Lab. Nginx + Passenger is running Git Lab on Ruby 2.2. I need to run Redmine 2.5.2 on Ruby version not higher than 2.1. No RVM installed yet. Please advce, is it possible to install second Ruby 2.0 on same server and make Redmine 2.5.2 work with it? Git Lab must be working too. It's not possible to uninstall anything already installed... Please help me with ths problem.
Yes it is possible. Just set the passenger_ruby directive for Redmine to Ruby 2.0.
Now i'm starting a new project on rails, but the packages for ruby from CentOs corresponds to an older version, so i decided to install the latest version manually. is this a good idea for a production enviroment?, considering the maintanability problems that comes without using the version from CentOs.
I have searched and i've found some discussions about this issue http://lwn.net/Articles/423732/ .
But i haven't found yet a good answer to this problem.
Any help? Thanks!.
You should develop with the same version of Ruby that is used in your Production environment, and you should manage that version of Ruby on your dev machine using RVM.
I upgraded to the latest Rails v3.1.3. And everything is fine, I'm able to run the 2.3 version of one website and the app for v3.1.3.
However I couldn't move it to a new machine, I installed all the required gems with
bundle install
and just cannot start Thin with the 2.3.2 version. I can only run the v3 apps. Thanks
Go read about RVM, and try to configure you machine according to the instructions given there.
As #Syed Aslam said the ideal way of doing is using RVM, but you may set bundler to your Rails 2.x project (because rails 3.x already have bundler..) and run both your projects in the same machine (actually currently I'm doing that).
Following is a tutorial how setting up bundle with Rails 2.x.
I'm running Windows 7 32 bit. I just installed Ruby 1.9.2 and Rails 3.0.1. I set up my rails sample application and everything seems to be working fine. I tried installing the restful_authentication plugin from github and it's been a nightmare. I'm executing the following command:
rails plugin install -force git://github.com/technoweenie/restful-authentication.git
...and i get the get the following error:
Cannot install using checkout because this project is not under subversion.
How do i get around this? I've installed both the SVN and Git command-line clients and they're in my PATH.
Yep, you should not use this plugin with Rails 3. Use devise.
Get a linux or a mac for Rails development.
According to the installation notes you need to simply clone the project to the plugins dir.
git clone git://github.com/technoweenie/restful-authentication.git restful_authentication
As others have suggested, devise is a better option.