0
votes
0answers
8 views
'bundle install' seem to be failed when deploying by capistrano
trying to deploy my Rails app to a virtual host on VirtualBox.
I'm using capistrano to deploy my app, and using vagrant to manage virtual machine.
My capistrano setting is OK, because it works ...
0
votes
0answers
6 views
Wich comments generator use with Rdoc gem ?
I've installed the Rdoc gem for my Rails application, and it seems like this one doesn't automatically generate the source code comments.
Then, I'm asking if somebody knows a gem wich could generate ...
0
votes
0answers
27 views
How can one add a blogging engine to their app?
So I've followed the installation instructions on their(KatanaCode's) GitHub (see here:https://github.com/KatanaCode/blogit), however, I am unsure as to what to do next.
In otherwords, the gem is ...
0
votes
2answers
27 views
Cannot seem to install
I am trying to install all the dependencies for a rails app I have forked off of github. One of the gems I need is gem install mysql2 -v '0.3.11'. However, I get an error when trying to run this. I ...
0
votes
2answers
36 views
mysql.h is missing … (Ruby on Rails, OSX)
I tried several ideas ... none of them worked ...
I'm just trying to install mysql2 as a gem. My mysql is working, but every time my system says, that mysql.h is missing ... Has someone an idea? It's ...
0
votes
1answer
18 views
What is the difference between jQuery rails(2.2.1) and browser's jQuery(1.8.3)?
i am new to ruby on rails, i installed latest gem jQuery rails(2.2.1) but the browser jQuery version is 1.8.3 why it's different
0
votes
0answers
8 views
error installing rinku gem as part of shapado 'rinku_autolink should return a value'
I'm trying to install shapado (www.shapado.com) on Max OSX 10.8.2. One of the gems, Rinku, brings the following error when trying to install:
Gem::Installer::ExtensionBuildError: ERROR: Failed to ...
0
votes
1answer
23 views
ubuntu linux, new terminal window does not recognize installed gems
I am running ubuntu 13.04, I have installed ruby 2.0.0, rvm 1.20.10, rails 3.2.12, as well as many other gems. I am trying to run a spork server for my rspec testing with guard. I opened a new ...
0
votes
1answer
31 views
rails application craches when does request to mysql db
Before this problem appeared I run my application on ruby 1.8.7 with 'mysql' gem ver '2.8.1' without problems. And I use RVM to manage ruby environments. After I switched to ruby 1.9.3 the bundle ...
0
votes
2answers
30 views
+50
Mailcatcher not working in staging server
I was pretty happy with mailtrap (http://mailtrap.io/) until i found out it got slow. Sometimes it doesn't send email or takes long time.
So thought of alternative and moved to mailcatcher ...
-2
votes
0answers
34 views
Ruby appointments gem or same [closed]
Please advise on the Ruby gem that will be able to provide something like:
INTERVALS = [30, 60, 90, 120, 150, 180]
puts "Enter start time your job"
start_at = Time.parse(Time.now.day.to_s) + ...
-1
votes
3answers
24 views
Is there a gem that allows you to create migrations based on changes to a model?
Is there a way to create a migration with changes you've made in a model? For instance I have Foo model with bar and oof attributes already persisted in db. I want to add the attribute rab to Foo. ...
2
votes
0answers
60 views
+100
Rake build is operating in an incorrect context
I have a gem that exists simply to collect several engines together for ease of implementation, as well as to provide a few utility methods to all of the included engines. One such utility method is a ...
0
votes
0answers
17 views
Undefined method `validates_attachment_content_type' in Rails model class
Using Rails 2.3.* (legacy project, just adding some features) and I'm getting an error with the paperclip plugin. I'm not sure why it is telling me the method is undefined. Paperclip 2.4.5 is ...
0
votes
1answer
17 views
Undefined paperclip method
I am getting a method is undefined error in my Rails project. This method is used by the plugin paperclip. Can anyone tell me what I'm doing wrong? Here is the beginning of my picture class:
require ...
0
votes
1answer
47 views
Error while bundling Rails application (missing gems?)
Note: this is my first attempt with Ruby and Rails!
Once I've installed everything I tried to create a new app with
rails new rubyapp
the command created everything and then the bundler started. ...
0
votes
0answers
19 views
Provide an API integrating into the Rails asset pipeline
Want to create a gem which provides some assets for the rails asset_pipeline
My gem is at https://github.com/deepak/socialite_js
The required DSL is:
socialite_javascript_tag provides a method on ...
0
votes
0answers
54 views
rails g scaffold! uninitialized constant in development environment
I got my ror development environment setup on ubuntu 10.04, using postgresql database. I was doing a test to generate a scaffold when I got:
<module:AppName>: uninitialized constant ...
0
votes
1answer
28 views
activesupport-2.3.11 conflicts with activesupport (>= 3.0)
I am working on a Ruby on Rails project that a former programmer created. It is old code, using Ruby 1.8.7 and Rails 2.3.*. I am not going to upgrade versions because all I need to do is add a few ...
0
votes
0answers
16 views
Error with Rails/RVM/Rubygems
I am having a strange issue running some legacy code that our former programmer created a few years ago. When I try to run rails server, I get this error:
...
0
votes
2answers
46 views
Stopped Gem Update, Now Rails isn't recognized and unintall/reinstall didn't work
I'm VERY new to this, so sorry if there's a simple fix, and please be step-by-step specific if you're kind enough to answer.
This is what I'm getting... Thanks!!!
$ rails -v
...
2
votes
1answer
35 views
Rails 3 Gemfile Gems not Loading After Bundle Install
I'm writing an application in Rails 3 with Ruby v2.0.0.
I have a helper in app/helpers/posts_helper.rb:
module PostsHelper
def markdown(text)
@redcarpet = ...
0
votes
2answers
33 views
Heroku error with installing installing sqlite3 (1.3.7)
I created a small Rails app and I want to deploy it. I am getting a error when pushing to Heroku. I know this question has been asked already, but none of the solutions are working for me. I am on ...
1
vote
0answers
19 views
How to get worksheet rows count in spreadsheet gem?
Is there any attribute to get size of rows?
@sheet = Spreadsheet.open(file.path).worksheet 0
@sheet.rows_count # why they didn't it?
0
votes
1answer
37 views
EC2 - Gem bundler is not installed, run `gem install bundler` first
I am deploying a rails app to EC2 with using Capistrano, but within the deployment process, I got
...
ERROR: Gem bundler is not installed, run `gem install bundler` first.
command finished in ...
-1
votes
2answers
39 views
How to use a gem class as a model in rails?
I'm new to ruby and rails. I 've created a rails app that uses the acts_as_votable gem. The gem contains a class Vote that I'd like to use as a model for my app. Is it possible?
I have tried using ...
0
votes
0answers
14 views
Rails 3.2: How to override single files from gem assets for assets:precompile?
I use a gem that brings its own JavaScript and stylesheet assets. This gem uses a standard application.js and application.css manifest to require all its assets:
...
0
votes
1answer
21 views
Using CanCan within a gem
I am unsure if this is possible, but I want to use CanCan within my own gem. I've tried the following code:
module DynamicMenu
require 'engine' if defined?(Rails)
require 'cancan'
module ...
1
vote
1answer
54 views
Rails Cancan - How to Restrict Users From Accessing Custom URL Route
I have a custom route setup that has a location_id in the url (see below)
resources :menu_items, :path => "/location_menu/:location_id"
So when I hit /location_menu/1 it will show me ...
0
votes
0answers
22 views
Rails apartment switch schema per session
I have an application, where every user has to have his own schema in postgres database.
Now I use apartment gem, but it allows just to switch schema globally per whole application, not per every ...
-1
votes
0answers
29 views
Can I tailor devise gem to create a two-step sign up?
I’d like to customize the devise gem for Rails. My goal would be to have users sign up in two steps (as with the website fab.com): for the email field, and then for the passwords fields, and create ...
1
vote
0answers
46 views
How to associate multiple emails for a single user in rails Devise gem
I am developing an application which uses Deivse for user authentication. It performs all standard task that Devise handles(e.g: Email verification during user sign up).But a user may have multiple ...
0
votes
1answer
18 views
How to run two Zeus servers
I have several projects in different folders, can I run several Zeus instances, with different port for each one?
I have gotten till https://github.com/burke/zeus/blob/master/docs/ruby/modifying.md. ...
0
votes
0answers
42 views
Custom pages problems in Spree (static content)
My Spree e-commerce site has a plugin called spree-static-content which recently started to act strangely.
The plugin acts as a function to add pages to the site, adds links in menus of your choice. ...
0
votes
0answers
29 views
Error running ruby server with load error
I am very new to ruby. When I try to run by ruby application, I get this error:
$ ruby script/server
/home/user/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/rubygems/custom_require.rb:36:in ...
1
vote
1answer
36 views
Email based interaction with rails app
I need some gem that will allow users to interact with rails app through email, without need to register. For example: I publish something for sale, accompanied with email, and all of controls ...
1
vote
2answers
51 views
Accidentally created a git submodule
So I was developing a API Client gem, which was working great, had it's own github repository and my team lead decided that he wanted me to move this client api into the api repository itself. So I ...
0
votes
2answers
16 views
Query tables imported via Rails gem
I have this gem (active_nutrition) that has basically imported a bunch of tables into my database. The gem comes with methods and such for getting the information from the imported tables easily.
...
0
votes
1answer
23 views
Nesting modules inside of a Rails eninge gem
What is the proper syntax to nest child modules within a parent module that is being is an isolate_namespace Rails engine gem?
# lib/myengine/engine.rb
module MyEngine
class Engine < ...
1
vote
3answers
119 views
I can't push my Rails project to heroku, can't find bootstrap-sass
When I try to push my project to Heroku I get this error:
-----> Deleting 3 files matching .slugignore patterns.
-----> Ruby/Rails app detected
-----> Using Ruby version: ruby-1.9.3
...
0
votes
1answer
30 views
Rails 3 - cannot install rubber gem on Lion OS X
When I run
gem install rubber
I get
Fetching: highline-1.6.18.gem (100%)
Fetching: net-sftp-2.1.1.gem (100%)
Fetching: net-ssh-gateway-1.2.0.gem (100%)
Fetching: capistrano-2.15.4.gem (100%)
...
0
votes
1answer
21 views
Unable to get sync gem working, (nomethod error)
I've been trying to install and use the new sync realtime partials gem, but when it comes to putting the code in my views it all goes wrong.
This is my existing code, pre sync.
<%= render ...
0
votes
2answers
45 views
rails 3 upgrade - You're using the old API in a mailer class
I'm trying to upgrade an application from rails 2.3 to 3.0.6
which has the following code in rails 2.3
class MessageSender < ActionMailer::Base
def ...
0
votes
2answers
136 views
Error during install of mysql2 gem for ruby 2.0.0 on Windows
I'm trying to install the mysql2 gem for Ruby 2.0.0.
I tried following the instructions at http://rorguide.blogspot.hk/2011/03/installing-mysql2-gem-on-ruby-192-and.html, but was not successful. ...
0
votes
1answer
21 views
capistrano script fails because a test-group gem is not found
I'm deploying to a staging server which is running in environment=development. My deploy script fails with the message Could not find gem 'webmock (>= 0) ruby' in the gems available on this ...
0
votes
0answers
33 views
upgrade activescaffold (deprecated functions) in rails 2.3 to 3.0 upgrade
I'm trying to upgrade an app from rails 2.3 to 3.0 and it uses Active-scaffold plug-in
In the upgrade process I've removed Active-scaffold (rails 2.3 compatible plug-in) and installed gem ...
0
votes
0answers
50 views
Where did my /usr/bin/local/rails come from? [closed]
I want to understand package management a bit better, as Ubuntu's apt-get, dpkg, and then their GUI tools are already a bit much. Then we have gems. On top of this I'm told I should start using RVM ...
1
vote
1answer
32 views
Custom Gem in /vendor/gems not Loading
I recently decided to take some functionality that I have in several of my Rails apps and extract it into an Engine. I have now finished the Engine and I'm trying to install the finished gem into one ...
0
votes
1answer
33 views
Rails : what rails fuzzy method/gem/plugin use to search in a 1 million records database table?
I own a ~1 million records mysql table.
I will need soon to add search in my Rails 3.x app. I want the search to be fuzzy.
Actually, I use a plugin (rails-fuzzy-search) for another table but it's ...
-1
votes
1answer
43 views
How can I save whole package of Rails App including gems being used?
I'm using a lot of gems. They are really sensitive about dependencies each other.
Now, current combination of the gems is just perfect. I want to save this whole App, and re-use this when I'm going on ...



