Maxence De Rous

Results 8 comments of Maxence De Rous

@yi Wow, we're exactly in the same case, i'm also developing a real-time game :+1: I'll try your module, thanks for sharing this !! @qiao Ok, thanks for the details,...

If it can helps you, here's my benchmark : ``` coffeescript # PathFinding.js for algorithm in ['BestFirstFinder', 'AStarFinder', 'JumpPointFinder', 'BreadthFirstFinder', 'DijkstraFinder', 'BiAStarFinder', 'BiBestFirstFinder', 'BiDijkstraFinder', 'BiBreadthFirstFinder'] pathfinder = new PF[algorithm] console.time('benchmark-pathfinding.js-'...

same problem here

Let's have a look at asset-rack. With that module, you can serve pre-compiled Jade templates to the client. With the help of @techpines, we will be able to translate i18n...

```ruby ActionText::RichText.class_eval do def self.ransackable_attributes(*) ['body'] end end ``` ```ruby class MyModel has_rich_text :description def ransackable_associations(*) ['rich_text_description'] end end ```` Then `= f.search_field :rich_text_description_body_cont` should just work with Ransack 4.0.0