Alter Lagos
Alter Lagos
After [these changes](https://github.com/ice-cube-ruby/ice_cube/pull/503/files), I'm getting this error using ruby 2.4: ``` lib/ice_cube/schedule.rb:307: syntax error, unexpected ']' ences.last : occurrences[-n..] lib/ice_cube/schedule.rb:448: syntax error, unexpected keyword_rescue, expecting keyword_end rescue StopIteration ^ ```...
Recently I've added a new validation to my dragonfly model ```ruby validates_size_of :file, maximum: 10.megabytes ``` and it works great in my app, but since then, my specs started to...
I have this method: ```ruby def previous_or_next_page(page, text, classname) tag :li, link(text, page || '#'), class: [(classname[0..3] if @options[:page_links]), (classname if @options[:page_links]), ('disabled' unless page)].join(' ') end ``` ## Expected...
I've followed the guide in https://github.com/sinisterchipmunk/rspec-prof#configuration to configure another printer, but it throws the following: ``` ArgumentError: wrong number of arguments (2 for 0..1) # /home/alter/.rvm/gems/ruby-2.2.5@productwatcher/gems/ruby-prof-0.16.2/lib/ruby-prof/printers/call_tree_printer.rb:46:in `print' # /home/alter/.rvm/gems/ruby-2.2.5@productwatcher/gems/rspec-prof-0.0.7/lib/rspec-prof.rb:48:in `block...
If I create a new project with require_reloader ```shell rails new lala ``` and I'm creating a gem with a dash in its name, let's say: ```shell bundle gem foo-bar...
Great gem. I was thinking that would be good to allow: - sort gems by date - output in json/yaml/whatever format - hide the "Unknown" gems... or adding them in...
I'm getting ``` puma | 6.3.0 | 1980-01-01 ``` but that's not the date [for the used version](https://rubygems.org/gems/puma/versions/6.3.0). Also here ``` dynamic_form | 1.2.0 | 2010-09-05 ``` doesn't match [the...
[According to the gemspec](https://github.com/castwide/solargraph/blob/524c94e955938292fb63eee1741a4d95ce86f643/solargraph.gemspec#L24) it is, but in practice I'm getting: ``` ERROR: Error installing solargraph: There are no versions of rubocop-ast (>= 1.31.1, < 2.0) compatible with your Ruby...
A fix for #62 . I tried [this](https://github.com/mrishab/google-photos-delete-tool/pull/65), but isn't working anymore
Having by default `PORT=` only assigns to that variable `0`, which is interpreted by puma to start the web app in a random port when `bin/dev` is called. Also `export`ing...