Tagged Questions
0
votes
2answers
55 views
rails bundle error Gem::Installer::ExtensionBuildError: ERROR
I'm trying to install rails, but have some problem:
ruby 2.0.0
rvm 1.19.6
gems 2.0.3
bundler 1.2.3
when I run 'bundle install' or 'gem install json -v "1.7.7"', I have:
...
0
votes
1answer
44 views
to_json returns string instead of json in Rails
The following piece of code should return a json:
@series = @series.map do |serie| {
:name => serie.name,
:id => serie.id
}
@series.to_json
It's return is the following:
...
0
votes
1answer
73 views
Can't install json gem in Windows
I tried to install the json gem on Windows. I installed DevKit. I get the following error below. Any suggestions? This question
JSON Gem will not install (Windows)
suggests installing DevKit and ...
1
vote
1answer
70 views
rails json gem cannot convert nil into hash
Just deployed a rails application to my BlueHost server, installed all of the gems and launched the application with Passenger.
However, when I go to the app I see:
Any idea why the error can't ...
4
votes
1answer
1k views
gem install json fails with redifinition of struct timezone/timespec
I am on Windows with Ruby 1.9.3 with DevKit (all 32 bit on Win 7 64 bit). Now I try to install rails, but get an error from bundle. If I try to run (what bundle is complaining about)
gem install ...
0
votes
2answers
61 views
ruby gem that prepares data for datatables
I'd like to use datatables in my rails application but I'd like to avoid prepraring JSON data by myself, so I'm looking for a gem that does it. Ideally I'd pass an ActiveRecored Relation and the gem ...
0
votes
1answer
444 views
Ruby on Rails: Can't install JSON gem
When I try to create a new Rails application rails new app, the process stops when trying to install the JSON gem. So, I tried to install it alone, using:
gem install json
but I get the following ...
1
vote
1answer
46 views
How to make my gem depend on either json_pure or json?
Since the json_pure and json gems are compatible, is there a way to create another gem that depends on either one?
If not, would a gem post-install be a good place to check for one of the json gems ...
-1
votes
1answer
100 views
Modify data structure of CarrierWave image uploader
I'm using the ruby gem CarrierWave to handle images on my rails app, which is a mobile backend API. Is there a way to store the image url and thumb url directly on the parent object?
This is the ...
0
votes
1answer
193 views
I cant install oj ruby gem on windows 7 64
I tried to install oj ruby gem
gem install oj -v '1.3.5'
Here's the output log
C:/Ruby192/bin/ruby.exe extconf.rb
Creating Makefile for ruby version ...
2
votes
3answers
1k views
Rails: json 1.7.5 bundle install issue
When running bundle I get the following issue...
Installing json (1.7.5) with native extensions
Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native
extension.
...
0
votes
1answer
335 views
josevalim / active_model_serializers controller argument error
I am playing with Jose Valim's active_model_serializers Gem.
I am attempting to call a custom serializer in my controller, and it looks like :json is not using the ActiveModel::ArraySerializer as it ...
8
votes
4answers
3k views
Why won't bundler install the json 1.7.4 gem on OS X 10.8?
I'm on OS X 10.8 with XCode 4.4, Ruby 1.9.3, and Rails 3.2.
When I clone my rails project from git and run:
bundle install
I get:
Installing json (1.7.4)
Errno::EPERM: Operation not permitted - ...
6
votes
1answer
1k views
Can't gem install json -v '1.7.3'
I get the following output when trying to install json gem on lion:
gem install json -v '1.7.3' Building native extensions. This could
take a while... ERROR: Error installing json: ERROR: ...
0
votes
0answers
32 views
Can't gem install json -v '1.7.3' on mac os x ruby 1.9.3-p194 [duplicate]
Possible Duplicate:
Can't gem install json -v '1.7.3'
gem install json -v '1.7.3' Building native extensions. This could
take a while... ERROR: Error installing json: ...
5
votes
1answer
5k views
Why do I get an error installing the JSON gem in Ubuntu?
Using Ubuntu, when I run "bundle install" to set up my Rails environment, it throws an error during the JSON gem installation:
Installing json (1.7.3) with native extensions
...
0
votes
0answers
213 views
How to use JBuilder outside of Rails app?
I love JBuilder's syntax, and would like to use it outside of rails. I have a class and and a to_json method:
class Blog
def to_json
Jbuilder.encode do |json|
json.(self, :id, :logo)
...
1
vote
1answer
215 views
Why would I get a JSON error when I try to rake db:migrate?
When I try to run rake db:migrate I keep getting this error:
rake aborted!
no such file to load -- JSON
Has anyone else come across this problem, if so how did you solve it?
I have tried a lot of ...
0
votes
1answer
221 views
controlling sort order of json output in Ruby on Rails (Ruby 1.8)
Is there any way to convert a ruby array/hash structure to JSON AND specify the output order of the elements?
Having the actually order of the elements vary is not functionally important, BUT it just ...
1
vote
1answer
329 views
How do you use ruby gems after they have been installed on OS X
I am able to install the json library using ruby gems. In case it's relevant, I'm using the latest OS X.
usr$ sudo gem install json
Password:
Building native extensions. This could take a while...
...
3
votes
1answer
1k views
json gem won't install on Windows
Here is the error I keep getting. I installed DevKit and followed all the instructions.
gem install json -v '1.6.3'
Temporarily enhancing PATH to include DevKit...
Building native extensions. This ...
1
vote
2answers
1k views
JSON Gem will not install (Windows)
Every time I try updating or installing the JSON gem I get a build error. These are the results in the output file:
c:/Ruby193/bin/ruby.exe extconf.rb
creating Makefile
make
generating ...
0
votes
2answers
186 views
Class Method in 'as_json' not working for index action
New to Ruby/Rails, so bear with me.
I have a ActiveRecord model class Status. I'm rendering it as json to be used in a mobile web application. It consists of an id, name, code, and back_color (in ...
1
vote
1answer
700 views
How to best parse a javascript parsed JSON content into ruby
I have a javascript file I use for my javascript app that I would like to read in and parse with ruby. The content of this file is not a stringified JSON, rather a javascript parsed JSON data ...
1
vote
1answer
61 views
Some values are nil (which were set) when parsing JSON in Ruby using the “json” gem
when I parse the following json in my rails console then the contact_person_id is nil even it was "c221c0f96670db455a174f1f30ffef1a". I am using the normal "json" gem. I tried to use some other ...
3
votes
4answers
552 views
What is the correct way to get google search results?
I want to get all the search results for a particular keyword search on google. I've seen suggestions of scraping, but this seems like a bad idea. I've seen Gems (I plan on using ruby) that do ...
4
votes
3answers
574 views
Can't display validation errors with best_in_place gem
I am using the best_in_place gem with Rails 3.0.9. Seems like I have everything working. I followed the install instructions and I am able to click on an item, edit it and save all in the one spot ...
0
votes
2answers
307 views
Error in JSON Ruby Gem - Ubuntu 11.04
Hello the clever people of Stackoverflow.
I am trying to right a little JSON script. But the JSON Gem does not seem to be working. Just by having the code:
require 'rubygems'
require 'json'
I get ...
1
vote
1answer
951 views
Can't install json with gem
I have tried following command in terminal (OSX 10.6.6) and end up with an error. Does anyone know how to solve this?
sudo gem install json
Building native extensions. This could take a while...
...
0
votes
1answer
333 views
How to highlight JSON and Javascript syntax with Ruby
I've found this gem called syntax which is pretty cool, but it doesn't seem to generate syntax for javascript and json...
Is there a good way to highlight the syntax for these formats directly from ...
3
votes
2answers
2k views
Rails 3 runner not detecting JSON gem?
I'm trying to create Ruby script to run with my Rails 3 environment.
However, whenever I run this rubyscript with Rails Runner, I get this error:
require 'rubygems'
require 'json'
@payload = {
...
1
vote
2answers
820 views
Bundler problem building native extensions
I'm running bundle install on my staging environment on my Ubuntu machine. It keeps failing trying to install json 1.4.6 with the native extensions.
Using bundler (1.0.7)
Installing thor (0.14.6)
...
5
votes
3answers
2k views
will_paginate JSON support?
I wonder if anyone could please tell me if will_paginate can support JSON out of the box or if this has to be hacked?
I would like to add page data to the JSON responses while will_paginate manages ...
1
vote
3answers
1k views
Best way to parse JSON in Rails for Twitter API
I'm working on a rails app that searches the Twitter API stream for keywords and then records those tweets.
I've used Hpricot before to parse XML but I was wondering if someone could recommend a gem ...
14
votes
10answers
19k views
When i try sudo gem install json I get the following error
I need to install the JSON gem to start my app but I get the error below whenever I try to install the json gem. Can anyone help me out. Im using rails 2.2.2 and gems 1.3.1; thx for any help you can ...

