Please use either spring-roo or roo-gem
Questions tagged [roo]
104 questions
2
votes
1 answer
Spring Roo 2.0.0M1
New to Roo, created an app with STS and the resulting forms from the Entity (see code below), I get

spiderman
- 27
- 7
2
votes
1 answer
Rubyzip error causing havoc in my logs
Essentially my log files look something like this right now:
Invalid date/time in zip entry
Invalid date/time in zip entry
Invalid date/time in zip entry
Invalid date/time in zip entry
Invalid date/time in zip entry
Invalid date/time in zip…

Matt Visser
- 102
- 8
1
vote
1 answer
Can we update existing xlsx file store in database in Ruby On Rails
We are using gem roo for reading file and paperclip for storing file in the database.
We want to open a same file in local and update a single cell, after that upload/replace the same file in the database using paperclip.
Is this possible to do with…

Vishal Pandey
- 117
- 5
1
vote
2 answers
Ruby gem Roo Workbook Sheets Each Row
As noted in other posts here, the roo gem has some convoluted documents, and I can't figure out how to iterate through a xlsx workbook's sheets, then each sheet's rows.
Roo gem
Iterating through each sheet only comes up with the sheet's name, not a…

Rich_F
- 1,830
- 3
- 24
- 45
1
vote
2 answers
Ruby Roo gem: how to extract the hyperlink text from a cell that contains hyperlink?
I have MS Excel spreadsheets, where there are many cells with hyperlinks in them. I do not want the hyperlinks. Instead I want to use the visible texts in the cells only. How to get them?
Here is sample code
require 'roo-xls'
ifl =…

Ivan Cenov
- 189
- 2
- 10
1
vote
0 answers
Error installing STS 4.5.1 & Spring IDE Roo Support Will not be installed
I have STS 4.5.1 installed, I try to install Spring Roo 2.0.
I follow the steps of the sss website:
https://docs.spring.io/spring-roo/docs/current/reference/html/#getting-started-install-roo
Install Spring Roo
I continue step 1, step 2 ... until…

user1612460
- 11
- 2
1
vote
1 answer
Exporting to excel in rails using roo gem
I'm exporting some data from table to excel. I'm using roo gem. It seems import is working but there is not sufficient documentation in gem's github repo.
I want to know how to use view file to render data and respond with xlsx format using…

Pradeep Sapkota
- 2,041
- 1
- 16
- 30
1
vote
1 answer
Hibernate looking for column which I've marked as @Transient
I have a JPA entity with a few fields which is running well. I now am adding a new field and have marked it @Transient as I donot want it to be persisted. However on running tests or deploying the app I get an error stating: Caused by:…

Pradipta Sarma
- 1,142
- 10
- 17
1
vote
2 answers
How to omit empty rows using last_row in Roo Rails
I have a spreadsheet of members designed as below:
My aim is to upload some columns and exclude others. In this case, I wish to upload only the name, age and email and exclude the others. I have been able to achieve this using the slice method as…

adamvanbart
- 67
- 1
- 10
1
vote
1 answer
Active record import with Nested attributes
I am trying to import bulk of records related to the user using activerecord-import gem. Here Role has the has and belongs to many relationship with the user. While importing user data are imported successfully. But role_ids are not imported..
I…

Rajkumar P
- 179
- 6
- 23
1
vote
1 answer
JPA - Use of entityManager in entity objects
I removed Spring Roo from my Spring project, it was unnecessary and the build took to much time in eclipse sts. I performed a Push-In and my entity objects now includes the source code of the old Roo files.
Nothing changed more or less, included the…

pesso82
- 31
- 4
1
vote
3 answers
reading only the second row of an xlsx file using roo
I am using roo to read an xlsx file.
book = Roo::Spreadsheet.open("codes.xlsx")
sheet = book.sheet('Sheet1')
This reads all the rows in the file.
I can iterate through this sheet using
plans_sheet.each(column_1: 'column_1', column_2: 'column_2') do…

themaster
- 453
- 11
- 32
1
vote
2 answers
Exclude headers when importing Google Spreadsheet content with Roo
I created a rake task to import users from a Google Sheet. Therefore I am using the gem 'Roo'. Everything works so far but I can't seem to get it working without importing the first row (headers).
This is my code:
require 'roo'
namespace :import…

dasbabs
- 45
- 7
1
vote
1 answer
Spring Roo 1.3.1 release
I am new to the spring Roo. We are using spring Roo 1.3.1 in our project. I have roo aspect files like roo_javabean.aj(for setters and getters) and roo_jpaEntity.aj in my porject when i check out my project from svn. I was told whenever we add a new…

coder
- 53
- 1
- 8
1
vote
0 answers
Spring roo limitations
I want to start developing enterprise grade applications using spring stack.
to increase the productivity and to compete in the market, I would like to use RAD tools. I found spring roo, but for me, it looks like, it is suitable only to build simple…

c. ramesh
- 11
- 3