0
votes
1answer
16 views
fullcalendar does not change backgoundcolor
I am using fullcalendar on ruby on rails and it is working really well. I am trying to change the backgound_color property of an event but I can't see how to get it. I was able to change the border ...
0
votes
0answers
6 views
RABL child method gives wrong name for array
If I have the following in a RABL template:
object @user
child :followed_users do
# ...
end
I would expect the JSON output to look like this: (I have include_json_root and include_child_root ...
1
vote
1answer
21 views
Sending a Post request with net/http
I need to send data in JSON to another app which runs on the same computer.
I send request like so (rails 3.2.13 )
data = { //some data hash }
url = URI.parse('http://localhost:6379/api/plans')
...
0
votes
0answers
16 views
Best way to render pretty JSON for my API
I'm actually using a stack composed of Rails-API, Oj, ActiveModel::Serializer and I would like to display well indented JSON, à la JSON.generate(). But I don't want to repeat this call to ...
1
vote
2answers
35 views
MultiJson::LoadError unexpected token
I'm trying to follow this tutorial for creating token authentication using Devise:
http://www.strukturedkaos.com/2011/09/19/soup-to-nuts-token-authentication-for-android-using-rails-3-devise/
...
0
votes
2answers
69 views
+100
How to send the count value using JSON in ROR
I want to send the count value,for count the post i am using thumbs up gem in ROR.
Now i want to send the count in json,the vote as post action in def show
def index
@posts = Post.all
...
1
vote
1answer
15 views
Authentications methods in Rails: web client and mobile client
In rails i want write an authentication system from scratch.
This authentication must works for web clients and mobile apps.
There are any tutorials that explain how to achieve that?
I know that for ...
0
votes
3answers
31 views
Return json at create new row at database in Ruby On Rails
Hi everyone i am making an app with a backend in rails, i need to create a user from an ajax request and the server have to return a json object with the new user saved.
This is my code of rails
...
0
votes
1answer
31 views
issue with passing array of hashes as parameter to POST in rails application
I have two rails services. One serving the UI and some basic functionality (UIService) and another which manages the underlying models and database interactions (MainService).
At the UIService, I ...
0
votes
1answer
23 views
What should I render when destroying a record?
I have an API that lets you destroy an object. The part I'm not sure on is what JSON should be rendered after the record has been destroyed. Here are a couple options, but I'm not sure what the best ...
0
votes
0answers
9 views
Rails: authentication website and mobile app
I want develop an authentication system from website and mobile app.
For the sign up i have follow this tutorial: http://railscasts.com/episodes/250-authentication-from-scratch
Now i want also that ...
0
votes
2answers
13 views
Rails parse HTTPparty json response
I'm making request like this:
response = HTTParty.get("http://vimeo.com/api/v2/video/#{ id }.json")
And my response.body does look like this:
[{"id"=>44747277, "title"=>"ALPINIST feat. Chris ...
0
votes
1answer
27 views
How do I Link_to an external URL in new tab/window and also run controller method?
I have a list of links being rendered from the database.
When a link is clicked I'd like the href to open in a new tab/window and to also call a controller method so I can update a database field ...
0
votes
0answers
24 views
Rabl for a nested hash of ActiveRecord collections
I have a few ActiveRecord objects like City, Country, State etc. My controller action is like (as a representative example):
def get_data
@data = {
cities: City.limit(2),
countries: ...
0
votes
0answers
24 views
Issue creating an array of hashes in Ruby
I am building an API for an existant rails app and I am running into an issue with an array filled with dates. The array is called days, and is filled with hashes that each have a "date" object, ...
-1
votes
2answers
29 views
Where can I find RestKit Post sourcecode or tutorials?
I am trying to find some documentation on how to POST to an api with RestKit. I have not been able to find any good tutorial or direction. I can GET json data and display it on an iphone app - but I ...
0
votes
0answers
20 views
Pretty BSON::OrderedHash using Rails
If I pass a BSON::OrderedHash (from a MongoDb collection) to JSON.pretty_generate I get the json document but unformatted. How can I get a bson document formatted like .pretty() does?
0
votes
1answer
28 views
How can I use RABL and extends/partials to generate a consistent JSON object across models
Our business requirement is that all JSON responses look something like this:
{ "status": "ok"
"page": "1",
"perPage: "20",
"totalPages": "3",
"totalRecords": "54",
"records": [ { "id": 1234, "name": ...
0
votes
2answers
21 views
format JSON with rails when key is a number
With rails, I'm trying to render this JSON:
options:
{ seriesType: "bars",
series: {1: {type: "line"}},
width: 375,
...
0
votes
1answer
37 views
How to skip attributes/key in JSON output?
Images Model contain id, file_name and description. Gem: either RABL or GRAPE
The usual output is:
{
"images": [
{
"id": 48660,
"file_name": "9e0f6.jpg",
...
0
votes
1answer
32 views
Rails HTML Request Render JSON
In my controller, I'm supporting HTML and JSON in my index method by doing:
respond_to do |format|
format.html
format.json { render json: @user }
end
When pulling it up in the browser, it ...
0
votes
3answers
43 views
Render JSON in Rails
I want to see the following code in json format. When I do so I get a blank page with no content. In the rubymine debugger I have the correct information in json format.
include Java
require ...
0
votes
0answers
34 views
post a json message to rails server with special characters using java
I have a model Message that have subject:string and content:text. I can create new messages sending a Post message using HttpURLConnection with json. But if one attribute contains special characters ...
0
votes
0answers
17 views
where do you save custom saved strategies in factory girl?
I am trying to implement the new FactoryGirl custom build strategy from the FactoryGirl getting started guide. I want to use the code they have to be able to output my factories as a JSON file.
...
1
vote
2answers
50 views
Getting 2 variables from 1 ajax call in ruby on rails
I was wondering how you can get 2 variables to update a div tag using an ajax call instead of just 1. My current .js file:
$(document).ready(function() {
$("select").change(function() {
...
0
votes
1answer
27 views
Parsing JSON found at the end of HTML document
I'm trying to pull the highlights from Readmill, but it seems like the easiest way to get them is to use search instead of the API.
at the end of
...
0
votes
1answer
18 views
Rails json request is taking most of its time in rendering views. How to make it faster?
Currently, a request is taking a long time. The log I get is
Completed 200 OK in 22365ms (Views: 17995.5ms | ActiveRecord: 1280.4ms)
This is an iOS rails application and actually no view is being ...
3
votes
1answer
51 views
Export a key value table to JSON
I currently have a key/value table in my rails application and I am trying to export all the rows in a key => value array format when I ask for the JSON format.
The closest I can get is
{
...
0
votes
1answer
16 views
Rails 3 / ActiveAdmin controller_action won't return a plain JSON array
Contrived example:
ActiveAdmin.register Something do
# stuff
controller_action :sad_trombone, :method => :get do
render :json => ["wah", "wah", "wahhh"]
end
end
I hit ...
0
votes
0answers
29 views
Rails + Postgresql to_json order isue
Hi Im exporting json to a file with rails, however I can't get the order to be right.
I user this code but it produces json with the opposite order.
class TojsonWorker < ApplicationController
...
0
votes
1answer
23 views
Rails activerecord returning wrong results
I am developing a simple rails app and I have a custom method that returns the last created column details
def getid
@b_id = params[:bid]
@log_id = Log.where("bid = ?",@b_id).last.to_json
...
0
votes
1answer
38 views
How to use external APIs in Rails?
I'm tring to use an external API, but found no clue of it.
http://open.youku.com/docs/api/videos/show_basic
It seems like I have to build sth from scratch, so How can I start? Is there any example ...
0
votes
1answer
48 views
Convert nested array to JSON
This code:
@countries.map { |l| [l.country_name, l.latitude, l.longitude, l.capital] }
returns
[["country_name_1", latitude, longitude, capital],["country_name_2", latitude, longitude, ...
3
votes
4answers
128 views
Extract rails db to JSON file
How can I extract the data in the rails sqlite3 db to a file?
I'm using rails 4.
I would like to extract all the data in my database so I can reload it later when I reset my database, or when I ...
0
votes
0answers
20 views
Index page of site
I'm asking this here just to see what methods I can use and how I can go about accomplishing this task:
Basically, I have a Item model in my app with about 350 instances stored in the database. Now ...
0
votes
1answer
30 views
array of strings to array of objects
My model is giving me an array of strings as json, and I need an array of objects for my api to function correctly on the client side. In my model I define the json as
def as_json(options={})
...
0
votes
1answer
19 views
Installing JSON Gem with Bundler without GCC
I am in the process of deploying a rails application to a server. There are a few environmental limitations, namely:
No internet access on server
No root access on server
No build tools (GCC, etc)
...
2
votes
2answers
84 views
Json is not correct \" iOS
Hi i'm trying to convert a NSMutable to JSON String and this is my code:
-(NSString *) buildFeedback {
sqlite3_stmt *statement;
sqlite3 *notificationDB;
NSString *result = @"";
...
0
votes
2answers
51 views
Multiple JSON Requests Ruby
Im using rails for with the crunchbase api to pull down the info for companies and I've been battling this error all night. It completes one request successfully and after constructing the second ...
0
votes
1answer
30 views
Render JSON : nested attributes or different requests?
I am working on a single page application based on angularjs and rails. I use RABL to render JSON files.
A lot of JSON responses need nested attributes like that
child :tags do
...
1
vote
1answer
62 views
How to make Rails 3 JSON parse doubly quoted strings and single number
Background
On the json.org website, a string is defined as "char+" where char+ is one or more char. A char is any unicode character except " or \. A subset of control characters are allowed, just ...
-1
votes
1answer
50 views
ROR as server side,how to write post method to get data from client
Want to fetch data from client side,by using an action create,how to fetch data by using post method in create function,My point is how i can get data from client side using create function by post ...
0
votes
0answers
58 views
How to use post method for fetching data from client in def create function of ROR
I am struggling with these question,how to fetch data from client side,how to use post method in def create function,to fetch the data from client side.
Client side coding is android,Server side code ...
-1
votes
1answer
27 views
Json Parse error in ruby
<?xml version="1.0" encoding="UTF-8"?><ns1:User xmlns:ns1="http://www.xxxxx.com/" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" ...
-6
votes
1answer
60 views
what is the coding for to get data from client in ROR [closed]
How to write post method for getting data from client side in ROR,whats the code i want to use in controller to get data and display in ror site.
want to add post method for get data from client ...
0
votes
0answers
28 views
How to get the data alone and display in ror site,using post method
I want to get only the data from client side and pass to server side(ROR) site using post method.
How to fetch data alone from client side.this is my server side code,i created one step,but is not ...
0
votes
0answers
76 views
whats the json post method in ruby on rails to fetch data from android apps?
I want to fetch data from android(client side) to ruby on raills website(server side). How to fetch data from there and display it website.
In android client side code
public class ...
0
votes
2answers
28 views
access the error block in ajax request even the reponse is 200 ok
i am doing dross domain request from ajax. the request seems to be ok and it is hiting database successfuly and returning 200 ok response but in client side still it is going in failure block.
this is ...
-1
votes
1answer
50 views
JSON post method in ruby on rails
I want to get data from client side,and display in my ror website using post method in create method,how to write the function for fetching data from client side(android) to ror.
def create
...
1
vote
1answer
67 views
How to use rails post method to get data from client side(android)
I want to use post method for getting data alone from client side,How to use post method in def create function for getting data alone.
post controller.rb
def create
@post = ...





