Results 17 comments of jibiel

`mysql2postgres` written in Ruby `1.9.3`. And `pg` gem [only specified for that platform](https://github.com/maxlapshin/mysql2postgres/blob/master/Gemfile#L15) at the moment: ``` ruby platforms :mri_19 do gem 'pg', '~> 0.17' end ``` Just update the...

@paazmaya You mean add the note to the dox or fix the `Gemfile`?

That should it. Also hard-coding ruby version with `ruby 1.9.3` in `Gemfile` is not very friendly for a public library too. Especially given that the most of the current users...

Got it working with: ```ruby require 'grape/jbuilder' use Rack::Config do |env| env['api.tilt.root'] = 'app/views/api/' end ``` as per [README.md](https://github.com/milkcocoa/grape-jbuilder#setup-view-root-directory). ```ruby json.partial! 'v1/resources/resource', resource: @resource ```

@josephcrowell Not sure I'm very motivated and interested to do so. Since the PR was opened I've switched to a more modular vendor packages — `cupertino_icons` and `ionicons`. And I...

Made the PR that addresses the problem: https://github.com/flutter-studio/flutter-icons/pull/47.

@hpneo Will your project remain available as a `gem`?

Sorry, wrong project. I was talking about @xenda's [`gmapsjs`](https://github.com/xenda/gmapsjs).

Well, as somewhat expected any of the wrapper methods is slower than the simple constant: ``` ruby user system total real Just constant: 0.010000 0.000000 0.010000 ( 0.010488) Constant wrapper:...

Wow, thanks, reference to @avdi is a pretty damn good argument for me. Despite the benchmark (just trying to be somewhat objective) I still think wrapper methods rock.