Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
We are looking for a automated remote deployment system for our Rails deployments. Are there any good alternatives to Webistrano. We want try out first and select which will best suit our requirements.
Etsy have open sourced their Deployinator. It uses Sinatra, Capistrano and a little PHP, but you can deploy anything from it.
Strano - GitHub-powered web UI for Capistrano deployment. Works with non-GitHub projects as well.
After long time search, I've started building Gunnery - a real, modern webistrano alternative.
I don't know if it is still relevant but I would like to come up with a different solution. I am building a new deployment tool that does just what you are looking for.
I do not intend to spam my stuff here but since I am building something that could help you...
Anyway, have a look here https://alessiosantocs.github.io/Captain. I'm gathering feedback so if you have any please let me know.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I have experience in java but new to groovy and grails, please suggest me the best way to learn groovy and grails 3.0 and suggest IDE as well. Currently i knew about STS for groovy and IntelliJ IDEA
IntelliJ works fine, and the best way to learn something is to actually do it. Build an application -- a real one that solves a task you want to achieve, not following someone else's 12-step twitter bot or whatever. Read up on groovy and grails to learn the idiomatic ways to accomplish tasks. Google is your friend.
My two cents.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I came across https://codeclimate.com.
Super awesome, but I'm working on a project whose code I cannot share with others or Code Climate.
Now I would like to be able to improve my code quality and wonder if anyone can suggest tools that do what codeclimate.com does but locally in development mode, without me having to share my code.
The metric_fu gem seems to be the best option combining all known test tools into 1 an generate a neat report although its not as nice and fully featured as code climate.com
We can use Fog gem which give code complexity at class and method level.
To check code duplications we can use Flay gem.
Both give same result that code climate gives.
Now there's an exact answer: Last year Code Climate released a new platform which includes a command-line interface, Code Climate CLI. It runs entirely on your computer (in a Docker container) and doesn't require a Code Climate account.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I'm getting ready to set up a website for my support URL for the app before I submit to the App Store. I was thinking I'll probably just do a WordPress site. Any thoughts or suggestions? I'd love to get some links to some good themes, on the cheap.
You could set up a simple static page on github, if you're using that to host your source (or even if not): http://pages.github.com/
There's a lot of WordPress themes out there for app websites. Here's one I ran across a while back: http://www.appdesignvault.com/darstell-iphone-wordpress-theme/.
It's free if you tweet about them! Am considering using this for my app, or using it as a starting point for my own wordpress theme.
This is a brief review of some paid themes. Most are inexpensive. (note: website seems to load slow)
http://www.devlounge.net/design/6-wordpress-themes-for-iphone-apps/
Here's some others. I haven't looked into them much though.
http://www.apptamin.com/app-websites/
http://www.elegantthemes.com/gallery/myapp/
http://templatic.com/cms-themes/iphone-app/
Good luck!
I'm hosting a static site on Heroku for Railscasts for iOS. It's free and barely requires any maintenance.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I am looking for a ruby on rails wiki application. which i can download and modifiy according to my needs. i tried instiki but is there anything apart from that ? Which has basic formtting and version histories features implemented ?
Thank you
Don't overlook Wagn http://wagn.org/ Quoting Ward Cunningham "The freshest thing in Wiki since I coined the term".
Pretty great as a Wiki and searchable database, and soon to be even more of an OO application platform in its own right.
Ruby Toolbox is the place to go for this. I recommend Gollum for your needs. It is a simple wiki system built on top of Git that powers GitHub Wikis.
Look at Irwi and Perwitiky. Both are inactive now, but Irwi seems to be more up to date and is Rails 3 ready.
I recommend looking at the RubyGems site
Wiki2Go could do the job for you.
FYI: Here are the search results
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I am trying to find a simple poll plugin/gem (the type of single question poll that's usually found in site's sidebar). All plugins that I've found are either too complex (like having their own DSL) or they are out of date (i.e. older than couple years).
Does anyone knows a Rails plugin/gem that handles simple polls?
Have you tried SMeRF, I'm currently using Surveyor and yes it is complicated. So I recommend you to use SMeRF, it is a lot more simple. But I can't seem to make it work on Rails3. xP
What version of Rails are you using?
I ended up writing my own custom solution for a simple poll I needed. Unfortunately, I needed it fast so I wrote it within an app I was working on (i.e. I didn't separate it into gem)