fluent-plugin-webhdfs 0.0.1 Fluentd plugin to write data on HDFS over WebHDFS install gem install fluent-plugin-webhdfs Download Documentation Subscribe Stats Authors TAGOMORI Satoshi 8 total downloads 8 for this version Owners Links Homepage Gemfile gem "fluent-plugin-webhdfs", "~> 0...
gem intended as drop in replacement for Ruby's standard ostruct.rb library. The original OpenStruct class has some short-comings, such as name conflicts with built-in methods. OStruct2 improves upon the original by subclassing BasicObject to ensure a clean slate and adds some addition...
With rich client-side applications becoming more popular a common question is “Should I use Rails if all I need to do is provide a JSON API”? If you need to develop such an API you should take a look at the Rails::API gem by Rails core member Santiago Pastorino. The README for this ge...
But this approach becomes increasingly impractical as the table size increases, since User.all.each instructs Active Record to fetch the entire table in a single pass, build a model object per row, and then keep the entire array of model objects in memory. Indeed, if we have a large n...
#297 Running JavaScript in Ruby Nov 07, 2011 | 14 minutes | Plugins , Ajax , Views Sometimes logic needs to be shared between the server-side (Ruby) and the client-side (JavaScript). Here I show how to run JavaScript directly in Ruby through ExecJS and therubyracer. Subscribe to Watch...
Hi all, Sorry to be jump in. please ignore if I'm off the point. the point is that we don't have one to one representative word for "issue" in Japanese, and the word 問題 is too limited. I believe we all agree on this. now let me just start a brainstorm. I'd add a few idea: keep it as i...
Equality proofs and deferred type errors: A compiler pearl , by Dimitrios Vytiniotis, Simon Peyton Jones, and José Pedro Magalhães. GHC now can show type errors only at runtime, when they actually occur! Z-Shell completion system introduction , giving a high-level overview. 4E4th is a...
Passenger-Stack is a set of scripts for the provisioning tool Sprinkle that make installing a full Ruby, Apache and Passenger-based stack almost a one-line task. It'll take almost any UNIX-y (correction: Ubuntu / Debian) server of your choice from a generic install through to deployin...
But this approach becomes increasingly impractical as the table size increases, since User.all.each instructs Active Record to fetch the entire table in a single pass, build a model object per row, and then keep the entire array of model objects in memory. Indeed, if we have a large n...
The last few weeks have been a wild ride. Starting in January, I’ve been releasing a chapter at a time here on the RBP blog, and many of those chapters were pretty well commented on. Just for the sake of completeness, here’s a link back to each of those posts: Chapter 1: Driving Code ...
This is a guest post by Rusty Zarse CTO of Search Discovery, spurred by a series of email conversations that we had regarding the difficulty of finding experienced Rails talent. Rusty leads the Atlanta iOS Developers meetup and is one of the better known technologists in our city. Whe...
, which are traditionally used for separating “languages” and “regional setting” or “dialects”. Many international applications use only the “language” element of a locale such as :cs , :th or :es (for Czech, Thai and Spanish). However, there are also regional differences within diffe...
このプラットフォームにおいてRuby 1.9.2が正しく動作することが検証されています。Ruby 1.9.2はこのプラットフォームで継続的にメンテナンスされます。 Debian GNU/Linux 5.0 on IA32. Best Effort これらのプラットフォームにおいてRuby 1.9.2がおおよそ正しく動作することが検証されています。Ruby 1.9.2はこれらのプラットフォームで継続的にメンテナンスされると信じています。 mswin32, x64-mswin64, mingw32 MacOS X 10.5 (Intel) および 10.6 FreeB...
Alle mercoledì 28 gennaio 2009, klochner ha scritto: > > than return, but I don't consider this to be one of them. Anyone care > to weigh in? yield and return do completely different things, and you can't use one in place of the other. return tells ruby to stop executing the method an...
#295 Sharing Mustache Templates Oct 31, 2011 | 17 minutes | Views , Plugins Mustache is a simple, logic-less templating language which allows you to use the same template for both Ruby and JavaScript. See how to set it up with a custom template handler in this episode. Subscribe to Wa...
Here I describe each Rack middleware that is included in a Rails app which will give you a better understanding of what a request goes through behind the scenes before it hits your application.