May 10, 2012 Tagged: lines of code metrics Comments (View) Read between the lines People frequently use lines of code as a metric. How many times have you heard someone say, “it’s only 10 lines?” or “This class is almost 200 lines?” Have you ever heard somebody boast that they could w...
We’re excited to announce that we’re expanding the infrastructure options available to our customers with support for HP Cloud Services. We empower developers by providing a rock-solid platform with choices of infrastructure and components that make their job of building great applica...
Hello, and thank you for your getting into our community. I know most of you more or less use version 1.8.7 of Ruby today. It was released in 2008 and was a state-of-art Ruby release back then. -- I am proud to say it is no longer. Ruby's core developers have been actively working on ...
CSRF and Rails Posted by bigbinary on May 10, 2012 — 0 comments Posted a blog on CSRF and Rails . Comments Post a Comment Comment abilities for non registered users are currently deactivated, pending time to add a proper CAPTCHA to solve the escalating spam problem. Sorry!
Dead-End Jobs: Are You Suffering From Stockholm Syndrome? December 30, 2010 Have you heard of Stockholm Syndrome? It’s a name given to the condition wherein hostages develop positive feelings toward their captors despite being held in negative, unfavorable and even life-threatening co...
rubygems-bundler integration gem reaches 1.0.0 - No more “bundle exec …” Posted by mpapis on May 10, 2012 — 0 comments I just wrote on my blog about the forthcoming release of my gem rubygems-bundler 1.0.0 you can try it now with: gem install rubygems-bundler --pre Comments Post a...
Deploy & Edit a Facebook App in 5 Min Posted by schneems on May 10, 2012 — 0 comments Ever want to write an App that uses the Facebook graph? Well you can have a Facebook enabled site up, running and edited in only 5 minutes. Comments Post a Comment Comment abilities for non regis...
Welcome to issue 92 of Ruby Weekly! An exciting project called RubyMotion came out just after issue 91 dropped so you get a full (and I mean huge!) roundup this time around. Keep an eye out for next week's issue though as we have a custom Ruby t-shirt giveaway in collaboration with.. ...
Cleaning parameters from a given url in Rails Posted by spyou on May 10, 2012 — 0 comments The other day I needed to clean a url from one of the parameter, blogged about it on the cookies blog . Comments Post a Comment Comment abilities for non registered users are currently deact...
Gemfile trick for github repositories Posted by gravis on May 10, 2012 — 0 comments If you're using github repos in you Gemfile, check out this tip : http://www.tech-angels.com/post/22772521112/gemfile-trick-for-github-repositories Comments Post a Comment Comment abilities for non...
XSS and Rails Posted by bigbinary on May 10, 2012 — 0 comments Posted a blog on XSS and Rails . Comments Post a Comment Comment abilities for non registered users are currently deactivated, pending time to add a proper CAPTCHA to solve the escalating spam problem. Sorry!
Thursday, May 10, 2012 at 5:35AM Today: A few minutes of email nonsense, and then off to the woods for a work day. Time to get the council camp ready for summer. No more "bundle exec…" - Work proceeds on the integration between Bundler, ruby, and rubygems, including a gem to make thin...
Gem Packaging: Best Practices Posted by Josh Peek , September 1, 2009 @ 12:12 pm Understand Ruby’s Load Path When you call load or require a new file, Ruby searches through the files in its load path. This allows you to require files relative to the load path without specifying the fi...
Application Development We love programming, and we're available to help you build a new web application , optimize and scale an existing application, or rescue an old one. Learn More Latest Development Projects Code School CAT Rental Store Twongo WebApp Development Media Production N...
Репозиторий с эксперементальными проектами - github.com/railsfactory/rubymotion-learn . В файле projects.md можно найти большое количество ссылок на проекты с открытым кодом на базе RubyMotion. Если вы еще не знаете что такое RubyMotion, то начните со статьи "Ruby для iOS" .
DevConf: открыто голосованиеAlex Soulim Всего подано 57 заявок в восьми категориях. В категории посвященной Ruby предлагаются следующие темы: Опыт эксплуатации большого Ruby проекта Sprockets under the hood OpenSource стартап на Ruby Локализация приложения на базе Rails. Личный опыт и...
ara.t.howard , Posted August 1, 2009, 9:48 pm i think this is a bit pre-mature. specifically i think the approach of pushing gem’s load paths onto $LOAD_PATH is massively flawed and predict it will be removed. i have already had issues with it several times where gem ‘a’ finds a resou...
SeedDump - плагин добавляющий rake-задачу db:seed:dump . Эта задача генерирует файл db/seeds.rb на основе уже существующей базы данных. Пример: rake db:seed:dump Получаем файл db/seeds.rb со следующим содержимым: # Autogenerated by the db:seed:dump task # Do not hesitate to tweak this...
Bloggy - это небольшая библиотека, позволяющая "завести" блог на базе Jekyll в вашем Rails-приложении. Jekyll - это генератор статических сайтов, созданный Томом Престоном-Вернером (Tom Preston-Warner ). Чтобы начать пользоваться Bloggy, добавьте в Gemfile следующую строку: gem ‘blogg...
td-client 0.8.16 Treasure Data API library for Ruby install gem install td-client Download Documentation Subscribe Stats Authors Sadayuki Furuhashi 4,811 total downloads 39 for this version Owners Gemfile gem "td-client", "~> 0.8.16" Versions 0.8.16 May 10, 2012 0.8.15 April 27, 2012 ...
rake-confirm 0.0.1 Confirmation for destructive Rails task. install gem install rake-confirm Download Documentation Subscribe Stats Authors SHIBATA Hiroshi 5 total downloads 5 for this version Owners Links Homepage Gemfile gem "rake-confirm", "~> 0.0.1" Versions 0.0.1 May 10, 2012
We’ve done a fair amount of webkit embedding as well, and your comments are spot on. One additional item of note is logging from javascript – one would think console.log would send to the same place as NSLog from objective-c when running within embedded webkit (and normal console.log ...
$main-color: #1E7B12; @mixin rounded-corners($radius) { border-radius: $radius; -moz-border-radius: $radius; -webkit-border-radius: $radius; } body { margin: 0; padding: 0; background-color: #FFF; font-family: verdana; font-size: 14px; } #header { background-color: $main-color; color:...
One of the perennial code smells in many Rails applications is the use of migrations as a way to carry seed data (data that needs to be added to the database on deployment). This doesn't work well because it's tough to maintain and doesn't play well with loading up the database from t...