Rubioli

Results 16 issues of Rubioli

I have nested attributes in my form. I want to limit it to 4. I tried to follow this instruction with no luck: [Limit-max-count-of-nested-fields](https://github.com/ryanb/nested_form/wiki/How-To:-Limit-max-count-of-nested-fields) Is it any other solutions I...

Lazy loads works great when I don't have ads on the page but in my case I have 7 ads on my page and lazy load **"waits"** until all the...

I have models `Album` & `Picture`. *`Album` model:* ``` class Album < ActiveRecord::Base has_many :pictures accepts_nested_attributes_for :pictures, reject_if: :all_blank, allow_destroy: true end ``` *`Picture` model:* ``` class Picture < ActiveRecord::Base...

I have added new column to my `comments` database called `is_image` and it's a `boolean`. In my form I have added: `= f.input :is_image` And in my controller, I have...

In my login page I've used `BottomNavigation` and I want to hide the bottom navigation when the keyboard is active. I've tried with `tabBarOptions={{ keyboardHidesTabBar: true }} ` with no...

In my application I have a `Post` model and when a post is submitted, they will always have a `category`. *My categories are news, humor, facts, celebrities, food etc* Currently...

Great gem. I am using the gem on `Rails 4.2.4`. Is it possible to get list of most viewed posts of **Day**, **Week**, **Month** and **All Time**. If so, how...

feature request

In my application I have `V 1.5.2` installed. Im trying to reduce our calls to db and there are some columns we dont need to commit to **impressions table**, such...

Am I able to add a new columns to `impressions` table called `device` which will either be `Mobile` or `Desktop`. In my `application_controller.rb` I have this function: ``` def check_for_mobile...

First of all, a great library 💯 Currently, I'm using [geolocation](https://github.com/michalchudziak/react-native-geolocation) to keep the iOS alive and this is how I do it: ``` const RunCronjob = async () =>...