July 10th, 2012 The State of the Ruby stack, neater Dotfiles, ActiveRelation merge, ways to learn RubyMotion, custom flash types, and Asynchronicity. July 6th, 2012 In today's episode, Ruby 1.8.7 gets a final bit of love, a text editor poll, stubbing your constants, performing sorcery...
In this episode I build upon a standard Devise setup and show how to add 3rd party authentication using OmniAuth. This includes support for user validations and is compatible with normal password authentication.
Ben and Josh discuss FactoryGirl: using it, its development progress, and features. What it’s like to run an open source project, and how to contribute to open source effectively. Looking at your old code and being a better developer. Approaches to testing. And answer your questions a...
is a gem with recipes to create Rails application templates you can use to generate Rails starter apps. I use it to create the app templates and example apps for the RailsApps project. It's become popular (over 500 watchers on GitHub). It's a lot like Michael Bleigh's RailsWizard or D...
Rails Deployment Audit Posted by dalibor on July 13, 2012 — 0 comments Checklist with some practices for Rails Deployment Audit . Comments Post a Comment Comment abilities for non registered users are currently deactivated, pending time to add a proper CAPTCHA to solve the escalat...
Friday, July 13, 2012 at 6:24AM Back from a day off inventorying tents. Ah, the joy of Scouting. Butter Performance - An account of hammering on a big HTML/JS table to make it work better. MiniProfiler Ruby Edition - This looks pretty darned useful - in-page server/client profiling th...
How Does Rack Parse Query Params? Posted by jim on July 13, 2012 — 0 comments Noah Gibbs recently wrote about understanding parameter parsing in How Does Rack Parse Query Params? With parse_nested_query . Comments Post a Comment Comment abilities for non registered users are curre...
My experience with jQuery Mobile and Rails Posted by spyou on July 13, 2012 — 0 comments I recently had to create a light mobile version of an existing Rails 2 app. Having used jQuery Mobile for that I tried to compile my different observations on the experience. You can read it on th...
UT on Rails: Week 5 Controllers Posted by schneems on July 13, 2012 — 0 comments Follow along with my University of Texas class as I explain what controllers can do and show some common uses. Comments Post a Comment Comment abilities for non registered users are currently deactiva...
Posted July 12, 2012 by Sean Schofield Comments Spree 1.0.6 has been released. This release is just a minor patch release to fix a few issues with attr_accessible and the latest Rails 3.1.6 release. The previous Spree 1.0.5 release has been yanked since it was not compatible with the ...
orderly: an rspec assertion for request specs to assert that one piece of content appears on the page before another.
I haven’t even begun to absorb all the meanings from this picture, but one stark difference between Ruby and the other two is the node in the middle of the picture with a high concentration of outgoing edges. That node is called primary in the grammar definition, and it is probably on...
soul 0.0.1 Solution parser for .NET .sln files. install gem install soul Download Documentation Subscribe Stats Authors James Thigpen 509 total downloads 509 for this version Owners Links Homepage Gemfile gem "soul", "~> 0.0.1" Versions 0.0.1 October 14, 2010 Development Dependencies ...
stages 1.0.0 pipeline builder install gem install stages Download Documentation Subscribe Stats Authors Nathan D Acuff 4,484 total downloads 12 for this version Owners Links Homepage Gemfile gem "stages", "~> 1.0.0" Versions 1.0.0 July 13, 2012 0.4.1 April 16, 2012 0.4.0 April 12, 201...
At the minimum, your issue report needs a title and descriptive text. But that’s only a minimum. You should include as much relevant information as possible. You need at least to post the code sample that has the issue. Even better is to include a unit test that shows how the expected...
It is now possible to define a custom importer that can be used to find imports using different import semantics than the default filesystem importer that Sass provides. For instance, you can use this to generate imports on the fly, look them up from a database, or implement different...
fluent-mixin-plaintextformatter 0.1.0 included to format values into json, tsv or csv install gem install fluent-mixin-plaintextformatter Download Documentation Subscribe Stats Authors TAGOMORI Satoshi 5 total downloads 5 for this version Owners Links Homepage Gemfile gem "fluent-mixi...
For WebHDFS (and HttpFs experimentally) install gem install fluent-plugin-webhdfs Download Documentation Subscribe Stats Authors TAGOMORI Satoshi 293 total downloads 29 for this version Owners Links Homepage Gemfile gem "fluent-plugin-webhdfs", "~> 0.0.3" Versions 0.0.3 July 13, 2012 ...
arel_ruby 0.1.0 ARel Ruby visitor install gem install arel_ruby Download Documentation Subscribe Stats Authors Akira Matsuda 90 total downloads 14 for this version Owners Links Homepage Gemfile gem "arel_ruby", "~> 0.1.0" Versions 0.1.0 July 13, 2012 0.0.1 July 6, 2012 0.0.1.pre July ...
Please don’t put “feature request” items into GitHub Issues. If there’s a new feature that you want to see added to Ruby on Rails, you’ll need to write the code yourself – or convince someone else to partner with you to write the code. Later in this guide you’ll find detailed instruct...
hipchat-api 1.0.3 Ruby gem for interacting with HipChat install gem install hipchat-api Download Documentation Subscribe Stats Authors David Czarnecki 3,127 total downloads 32 for this version Owners Links Homepage Gemfile gem "hipchat-api", "~> 1.0.3" Versions 1.0.3 July 13, 2012 1.0...
Recently I was looking at creating a patch for Mocha that would allow you to specify a class as an argument. The feature was added to allow you to specify that an argument can be any instance of the class specified.object.expects(:do_this).with(Fixnum, true, 99) object.do_this(2, true...
No documentation This method has no description. You can help the Ruby on Rails community by adding new notes. Hide source # File activerecord/lib/active_record/relation/query_methods.rb, line 80 def group (* args ) return self if args . blank? relation = clone relation . group_values...
Avatar images are playing a bigger role on the web these days, especially in “social” web applications. If you want to add avatar images to one of your own applications you might want to consider using Gravatar which provides a convenient way to do this. All you need is an email addre...
RSpec とは、公式サイト の説明によれば、「プログラムの振舞 (behaviour)」を記述するためのドメイン特化言語 (DomainSpecific Language:DSL) を提供するフレームワーク」 です。 プログラムの振舞? ドメイン特化言語?……順番に説明させてください。 プログラムの振舞 (behaviour) 「プログラムの振舞」とはプログラム全体あるいは様々なレベルでの部分 (モ ジュールやクラス、メソッド) に対して期待する振舞 (behaviour:ビヘイビア) の ことです――といっても何も特別なものではありません。 具体例で説明しまし...