IDE for redmine/rails and configuring the project - ruby-on-rails

I am actually developing a plugin for redmine, Currently using netbeans 6.9
(OS: Linux)
But the problem i am facing is to get the changes i have manually restart the redmine server from console.
Is there a better IDE/ Configurations? Any one who has worked in same area, can provide some guidance?
Also i would like to know how to run Redmine server in development mode, so that it eases the development process.
Any suggestions/Directions would be helpful, appreciated.
Thanx in advance.

Well i can recommend you using RubyMine as an IDE from my personal experience. It is an excellent IDE with a lot of new features.
you can download it for free from the link given below
http://www.jetbrains.com/ruby/

Related

Run Apache Isis Application on Eclipse

I just started learning Apache ISIS. I have configured the application and imported into Eclipse(Mars). Can anyone tell me how I can run the application from eclipse.
The main thing you need to do is to set up the DataNucleus enhancer. There's details and a screencast here
We have found that the DN enhancer can be a little unreliable on larger projects, which was one of the reasons as developers we ended up moving to using IntelliJ (community edition is fine). YMMV.
Within an IDE you run the app using the org.apache.isis.WebServer helper class (it's just a wrapper around jetty).
HTH

how to run SmartStore.NET in visual studio 2015?

how start smartstore.net in visual studio localhost without any error
i download github code and open project file from
SmartStoreNET-3.x\src\SmartStoreNET.sln
The download link https://github.com/smartstoreag/SmartStoreNET
I use visual studio 2015 enterprise edition and windows 10.
First, you must be change the "Solution Configuration" to Debug mode, and second change the "Solution Plataform" to Any CPU.
This work for me.
I recently went through this integration/configuration procedure trying to get a local instance of SmartStore.NET up and running with demo data. I was able to get there eventually, but the development environment setup was by far the most tricky.
I would suggest starting with these two links:
http://docs.smartstore.com/display/SMNET30/Installing+SmartStore.NET
http://docs.smartstore.com/display/SMNET30/How+to+build+SmartStore.NET
I have a hunch you're issue may be your development environment configuration is not fully correct. Check out this page for more details about requirements:
Technology and Prerequisites
http://docs.smartstore.com/pages/viewpage.action?pageId=35555597
*NOTE: they reference ASP.NET 4.5.1 but I had to use 4.61 to take advantage of some newer features in C# 7.0 - Tuples, and several others)
Probably the most significant discovery I found was their were dependency issues when trying to restore the NuGet packages referenced in the solution. I had to go through this process maybe 4 or 5 times to finally get the app running locally.
Once all of this was complete, getting it working in 2015 required little effort.
I would also suggest narrowing your question to more specific problems. (that's just me)

RadRails trial expired - any free options for Rails in Eclipse?

I installed RadRails a while back and uninstalled it after it said that my trial had expired.
Is it correct that this is the only option for Rails development in Eclipse?
And is there any other - free - option for Eclipse? (I tried "Ruby RDT" but it doesn't offer any Rails support, just basic Ruby editing.)
Use the full Aptana Studio, and after it says the Professional trial is over, you can continue using the Community Edition mode.
Doesn't seem to be a way to just get the Community Edition by itself, but it'll just ask you to close and restart Eclipse after 30 days.
Try Aptana IDE - it is Eclipse based and totally free. Also as much as I know its Rails support is bases on Rad Rails eclipse plugin.
BTW, I'm using NetBeans 6.5.1 for Rails and I've already convinced everybody is my office that it is better than Aptana :)
I was using Eclipse for a while for Rails development, based on RDT plus mods described in the following article:
www.napcs.com/howto/railsonwindows.html

An Easy way to Deploy an MVC App to a Desktop Machine?

I have an interesting situation where I need to deploy an ASP.NET MVC app to a (pseudo-boss's) local desktop machine so they can run it locally for data entry purposes. What would be the best way to get the app running on a vista machine without Visual Studio installed?
Ideally, It would be a one click that started a development web server and opened the page up in the browser.
I considered installing Visual Web Developer and then tricking it's dev web server into running the app, or even installing mono, since it has the nice 'start xsp here' feature that even a non-technical person can understand. The big thing is that this person is not very technical, so it needs to be easy for them to start and stop the application.
You need IIS installed, which should be available for Vista. Then just set up a working directory and put your app there, it's not 1 click but maybe.,.. 5.. :)
What about the Microsoft Web Platform Installer? You'd still have to add your own application, but it takes care of .NET, IIS, and dependencies.
Could you use something like UltiDev Cassini: http://www.ultidev.com/products/Cassini/ and build your own installer to set everything up for your user?

Building Ruby on Windows XP

Has anyone out there got a good set of instructions for building/compiling Ruby from source of windows XP ?
Luis Lavena maintains the Ruby One-Click installer binaries. His blogs and postings on Ruby Forum are definitely the place to start.
http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/184380
I normally get a binary installable for windows.. much faster if you just need Ruby installed. But you may be modifying ruby source.. anyways..
Update: I ended up compiling Ruby from source today... here is what worked for me
http://madcoderspeak.blogspot.com/2009/06/how-to-compile-ruby-from-source-on.html
I would agree that the binary distrubtion is your best bet for Ruby on Windows, however, like Gishu mentioned, you may be modifying it a bit. If that's the case I would build it from source with Cygwin. This will give you the familiar tool set for building software from source.
However the following thread at Ruby Forum seems to have a very active discussion on building Ruby in Windows using Microsoft's Visual C++ toolkit with some other .NET additions.
Good luck!

Resources