RubyGems is a package management tool for the Ruby programming language. It allows users to download and update Ruby libraries, and provides automatic dependency resolution.
1
vote
1answer
16 views
Can I publish a gem to RubyGems but temporarily keep it “private”?
I need to publish a gem to RubyGems that will eventually become fully public, but I'd like to keep it private in some way for a few weeks.
Private could be "not appear in search results" or could be ...
2
votes
2answers
29 views
ERROR: Error installing mysql: ERROR: Failed to build gem native extension
i follow the "http://blog.mmediasys.com/2011/07/07/installing-mysql-on-windows-7-x64-and-using-ruby-with-it/" for setting the connection between Ruby on rails app and mysql server 5.1...
So when i ...
1
vote
4answers
65 views
Uninstall all gems which are not in a specified list of Gemfile.lock files
I'd like to clean a little system-house. Essentially,
(Gem.all_system_gems - Bundler.referenced_gems(array_of_gemfile_locks)).each do |gem, ver|
`gem uninstall #{gem} -v #{ver}
end
Any such ...
0
votes
0answers
14 views
How to get the each tag name number when using acts-as-taggable-on
ruby: 2.0.0p0, rails: 3.2.13 , acts-as-taggable-on 2.4.1
Hi, everyone. I want to get each tags name and there number when using the acts-as-taggable-on gem.
2.0.0p0 :049 > Question.tag_counts
...
0
votes
1answer
300 views
rvm install error running 'requirements_osx_port_install_port'
Im trying to install rvm on my machine and select a version but im getting this horrible error can anybody help? I need to install dandelion deploy but cannot due to this problem.
Error running ...
0
votes
0answers
9 views
Deleting Google Spreadsheet using Google_Drive Rubygem - Error
I am trying to delete a spreadsheet using the google_drive rubygem.
"we're sorry, a server error occurred. Please wait a bit and try reloading from your spreadsheet. (GoogleDrive::Error)"
This ...
1
vote
0answers
18 views
Trouble deploying rails app with capistrano, Gem::RemoteFetcher::FetchError: too many connection resets
I'm using Rails 3.2.8 and deploying to a remote server using rvm-capistrano. I'm encountering an error with the axlsx gem. From the command line, doing a 'rvmsudo gem install axlsx' works. But using ...
0
votes
1answer
38 views
How to represent the possible values for a property in a class member/enumeration?
I am accessing a web service, which returns data as XML that gets populated into a custom model. One of the nodes is called AccountType, and has 2 child nodes, Code, and Description.
So, coming back ...
0
votes
1answer
24 views
Custom per page with kaminari gem
I am using Kaminari gem with rails 3.2 application. Its working properly. Now i want add a custom per page drop down with [5, 10, 15, 20] options.
With per page selected pagination links should ...
0
votes
0answers
33 views
how to create a different Public Activity based on a model attribute? (rails 3)
I have a posts model that I am tracking using the PublicActivity gem as seen below
class Post < ActiveRecord::Base
include PublicActivity::Model
tracked except: :destroy, owner: ...
-1
votes
1answer
37 views
Ruby cannot find nokogiri/nokogiri
I'm using RVM and previously RBENV on OSX. I have my gems installed relative to my project path in ./gems
I am using the aws-sdk and attempting to use the s3 client results in a LoadError from ...
0
votes
1answer
36 views
Editing a spreadsheet using SPREADSHEET ruby gem
I have to read data from a spread sheet modify some rows and then write the updated rows / cells into the same file.
I have used Spreadsheet gem with Ruby 2.0.0.
When I write the results back to the ...
0
votes
1answer
36 views
Error when trying to generate devise:install in Ruby on Rails
I'm a new to Ruby on Rails and I tried to do some examples from Internet. But I have an error when I'm trying to generate devise install.
I modified the Gemfile by adding gem devise. Then run:
bundle ...
0
votes
0answers
20 views
Gem or Rake task, etc. to get a high level overview of existing Rails project in Git?
I'm diving into a large existing Ruby on Rails 3.2 project using Git for version control and am looking to get a quick overview of the project, especially what sections of the code are being most ...
1
vote
1answer
55 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
1answer
92 views
Trying to install Jekyll on Windows 8 (x64): Error installing fast-stemmer-1.0.2.gem
I'm trying to get Jekyll running on Windows 8 x64, using this manual:
Running Jekyll on Windows
I'm using the following two downloads from rubyinstaller.org:
Ruby 2.0.0-p0 (x64)
...
1
vote
1answer
34 views
Passing values to Ruby Classes
I'm making a small application in visualruby and the code looks something like this:
class Base
def initialize(x)
@var = x
@test = 0
end
def button1__clicked(*argv)
...
0
votes
1answer
84 views
how to download a zip file from s3 bucket using ruby
i am able to zip all required files(using ruby gems of AWS SDK) & upload them to the S3 bucket. when i tried to download the zip files from S3 to local server & unzip them , i am geeting ...
-1
votes
3answers
58 views
Can't mass-assign protected attributes: category_id
def create
@author = User.find(current_user)
pub_params = params[:publication]
##
#bcids = pub_params['categorizations_attributes']['0']['book_category_id']
...
0
votes
1answer
51 views
native gem installs fine on 1.9.3 but fails on 2.0.0
A private gem with native extensions I have that had worked fine since ruby 1.8.2 and then 1.9.3 is now failing in a wird mode to install on ruby 2.0.0. Instead of installing the required shared ...
1
vote
1answer
69 views
Ruby on Rails: Why do I have to use sudo for commands to succede?
I'm learning ruby on rails... I've was able to install an app on my OSX (10.8.3) localhost but it was very problematic most commands failed with permission-related errors unless I used sudo:
$ ...
1
vote
2answers
57 views
How will rails 4 affect my current application?
I am new to rails and I would like to upgrade to Rails 4.
At the same time I have been working on a small Beta with Rails 3.2 this past year....
If I upgrade will my current app be affected or will ...
1
vote
1answer
62 views
Rails App “Permission Denied” error when installing refinerycms
While trying to install refinery, a rails app, I keep getting the following error:
ESL@new-host-2 ~$ refinerycms /Application/MAMP/htdocs/goodwatching
create
...
0
votes
0answers
11 views
Problems using 'bundle --standalone' and 'gem install' together
I'm able to use bundle --standalone just fine for a gem I'm ready to deploy.
git clone cli_app.git
cd cli_app
bundle package --all
bundle --standalone
git add bundle
git commit -m "adding bundle/ in ...
1
vote
2answers
235 views
Bundle update for padrino app: could not find compatible versions for “tilt”
Running bundle update on my padrino app gives me:
Bundler could not find compatible versions for gem "tilt":
In Gemfile:
padrino (= 0.11.1) ruby depends on
tilt (~> 1.3.0) ruby
...
0
votes
0answers
14 views
Spree developement
I want to customize spree. I have downloaded the source files and modified them. Then I ran install.rb which built and installed gems. The question is: can I see the result of the developement without ...
0
votes
1answer
43 views
what is the best/fastest way to develop a login system in Rails
what is the best way to develop a login system along with registering panel for register using twitter or fb and own database . Is there any gems for that. As I am very new to ruby , pls help me with ...
0
votes
2answers
28 views
Using gems via Rubygems in windows - path failure
I have installed ruby 1.9.3, with RubyInstaller and DevKit. I installed the required gem I'm looking forward to use, but no matter what I do i can't get it working. I run my program and i get the ...
0
votes
2answers
32 views
Ruby Gems Documentation
I'm just trying to understand how to use particular ruby gems. For example, take this reddit gem. It says to have this code to start:
require 'snoo'
# Create a new instance of the client
reddit = ...
2
votes
1answer
30 views
Test a ruby gem binary
I am developing a ruby gem which will have a binary.
I am trying to develop the binary but i am worried its not finding my requires because the gem isnt installed as a gem is there a way to test the ...
0
votes
1answer
14 views
How do I determine the require order for my gem?
I'm working on a gem that for now just requires a handful of other gems. The problem I'm running into is that the mutant gem needs to be required after the other two, but when I add my gem to a ...
0
votes
0answers
30 views
Delayed_job stuck on production server
I have a project that is using the delay_job_active_record gem for sending mailers to email and to salesforce, this has suddenly stopped sending emails on my production server.
I have managed to work ...
0
votes
0answers
6 views
Rubygems: Error while trying to installing the capifony gem
I'm trying to install the capifony gem with:
gem install capifony --source http://rubygems.org
Why am I getting this error:
ERROR: While executing gem ... (TypeError) can't modify frozen object
...
0
votes
1answer
29 views
Where to put auth information
So I'm making a small program in VisualRuby that can tweet. So here's what my main.rb looks like:
#!/usr/bin/ruby
require 'vrlib'
require 'twitter_oauth'
#make program output in real time so errors ...
0
votes
2answers
37 views
Will Paginate button not working?
which is best gem package for pagination. I am using will_paginate buts its previous and next button are not working. Do you have any idea about it ??
def client_info
sleep 2
@clinet ...
0
votes
0answers
23 views
how to get the recipient_id using this PublicActivity ruby gem?
I am using the PublicActivity gem and this was created in my database
schema.db
create_table "activities", :force => true do |t|
t.integer "trackable_id"
t.string "trackable_type"
...
0
votes
1answer
31 views
Ruby - Unable to call win32-api
I'm new to Ruby and am trying to write a small ruby script to call
win32-api
from scratch, here's what I've done
installed Ruby 2.0 using the ruby installer
(rubyinstaller-2.0.0-p0.exe)
installed ...
0
votes
1answer
23 views
NameError in Static_pages#home, undefined local variable or method `activity'
I'm using the PublicActivity ruby gem and I'm getting this error message
This is happening inside /views/activities/_index.html.erb
<li>
<% if activity.trackable_type == "Micropost" ...
0
votes
1answer
51 views
VisualRuby and DevKit setup
I want to create a desktop application in ruby using visualruby. I need the devkit so I followed these instructions
I installed ruby 2.0.0 and glade3-3.6.7-with-GTK+
Opened up CMD window, navigated ...
0
votes
0answers
11 views
Redcar command not found
So I did the following:
gem install redcar
gem q --local
and I now see:
redcar (0.13)
redcar-bundles (0.3)
redcar-icons (0.3)
redcar-javamateview (0.2)
redcar-jruby (0.1)
redcar-svnkit (0.2)
But ...
0
votes
0answers
34 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
1answer
76 views
Gem Charlock_holmes installation error on Windows XP
I am trying to run bundler for my RoR app on a Windows machine (Windows XP). But, while downloading the gems, it stops at the 'gem Charlock_Holmes' and gives the following error.
...
0
votes
2answers
32 views
rendering two partials into one (rails 3), am I doing this right?
I am using the Public_Activity gem to display the list of actions being performed on the website. I already have a main feed on the homepage but I would also like to include all of the activities that ...
0
votes
1answer
48 views
how to add a push notification system like on stackoverflow (red number notification) in my rails 3 app? [closed]
I want to add a push notification pop-up like you see on stackoverflow. When a user comments you get a notification. I want to implement something similar on my rails 3 app. Is there a good gem for ...
0
votes
1answer
46 views
how to separate numerous hashtags onto a separate page of a user post?
On my website, I allow users to make a post
This is what the current Post create controller looks like
def create
@post = current_user.posts.build(params[:post])
if @post.save
...
0
votes
1answer
49 views
Can't run passenger-install-apache2-module
now I want to install passenger into my CentOS6.4.
I installed passenger by {gem install passenger}.but I can't run {passenger-install-apache2-module}.because the following error has occured !
...
0
votes
1answer
21 views
Problems installing unf_ext on Win7x64
I know I got this working before on the same hardware/OS but today I'm stuck.
For 1.9.3 I get:
$ gem install unf_ext --version=0.0.5
Successfully installed unf_ext-0.0.5-x86-mingw32
Installing ri ...
0
votes
0answers
25 views
Customising carrierwave: changing the priority of remote_image_url over local file
I have an image upload form very similar to this episode: http://railscasts.com/episodes/253-carrierwave-file-uploads
models/painting.rb
class Painting < ActiveRecord::Base
attr_accessible ...
0
votes
0answers
15 views
bundle update FileOverflow - file too large
I don't have a lot of experience building gems (the workflow, etc).
Anyway, when I try to reinstall a local gem, I get this error:
Gem::Package::TarWriter::FileOverflow: You tried to feed more data ...
0
votes
0answers
19 views
Ruby gems - install gems shared for all users
Okey, I've been tring to figure this out..
When I'm developing rails applications I do it on my personal user on my server (which is running Fedora 17 x64 btw). And when I move the application to my ...