avantbard + rubyonrails   200

jamesarosen's arturo at master - GitHub
control which of your users sees new features in a rails app. awesome.
rails  features  engine  rubyonrails  slider  feature  test  beta 
november 2010 by avantbard
macournoyer's pusher at master - GitHub
"Pusher is a Rack middleware that implement Ajax Push aka Comet" - a juggernaut alternative?
rack  comet  push  ajax  webdev  rails  rubyonrails 
november 2009 by avantbard
baldwindavid's padlock_authorization at master - GitHub
"Padlock allows easy object-based (rather than just global) role authorization functionality to ActiveRecord. It adds a "padlock" method to the controller that "locks" specified actions and gets "unlocked" only if passed a block that resolves to "true".

There are a lot of authorization plugins that make it easy to authorize a user for one or many actions based upon global roles.
However, I had the need to make it reasonably simple to authorize based upon roles associated with an object. (i.e. "admin" role on a Project.find(14))"
padlock  rails  rubyonrails  authorization  users  roles  plugin  webdev 
july 2009 by avantbard
Big Old Rails Template « A Fresh Cup
Mike Gunderloy's bigass Rails template. A few plugins in there that I haven't heard of. Will have to check them out.
gunderloy  rails  template  webdev  rubyonrails 
july 2009 by avantbard
Elements of Testing Style
Rails testing stylistic tips from Noel Rappin at Pathfinder
rails  rubyonrails  testing  tdd 
july 2009 by avantbard
methodmissing's scrooge at master - GitHub
A Framework and ORM agnostic Model / record attribute tracker to ensure production Ruby applications only fetch the database content needed to minimize wire traffic and reduce conversion overheads to native Ruby types.
scrooge  rails  rubyonrails  webdev  optimization  performance 
march 2009 by avantbard
default_value_for
great Rails plugin to provide default values for Active Record objects
activerecord  rails  plugin  plugins  rubyonrails  webdev  default 
february 2009 by avantbard
adamwiggins's yaml_db
rails plugin to dump db data yo yaml
yaml  rails  rubyonrails  webdev  database  db  plugin  plugins 
february 2009 by avantbard
query_reviewer
"This rails plugin not only runs "EXPLAIN" before each of your select queries in development, but provides a small DIV in the rendered output of each page with the summary of query warnings that it analyzed."
rails  rubyonrails  webdev  sql  query  plugin  plugins  database  db  optimization 
february 2009 by avantbard
Pivotal Labs: Talks
lots of good ruby / rails / development talks here
rails  rubyonrails  webdev  video  podcast 
february 2009 by avantbard
acts_as_audited
"acts_as_audited is an Active Record plugin that logs all modifications to your models in an audits table. It uses a polymorphic association to store an audit record for any of the model objects that you wish to have audited. The audit log stores the model that the change was on, the “action” (create, update, destroy), a serialzied hash of the changes, and optionally the user that performed the action." - this might have to replace acts_as_versioned + riff in an app I'm writing right now
activerecord  rails  rubyonrails  webdev  versioning  auditing 
january 2009 by avantbard
expose the currently deployed Git SHA1 in Rails
could be helpful for indicating currently deployed version number
rails  rubyonrails  webdev  git 
january 2009 by avantbard
fixjour
another fixture replacement for rails
rails  rubyonrails  webdev  fixtures  testing 
january 2009 by avantbard
mhartl's find_mass_assignment (GitHub)
easy way to find all models that are vulnerable to mass-assignment vectors
ruby  rails  rubyonrails  mass_assignment 
december 2008 by avantbard
pony - easily send mail in Ruby
"Want to fire off a quick email from your Ruby script? Finding ActionMailer to be overkill, but Net::SMTP to be...um, underkill? Envious of PHP's mail(), which sends an email with a single function call?

Then take a deep breath, relax, and gem install pony."
ruby  mail  gem  rubyonrails  rails  plugin  email 
november 2008 by avantbard
acts_as_git
plugin to auto-version active record text/string fields to a git repository for easy history versioning and rollback
git  activerecord  history  versioning  rails  rubyonrails  webdev  plugins 
november 2008 by avantbard
Filtering View Content by Role in Rails « A Fresh Cup
a simple way to restrict parts of a view to users by role membership
rails  roles  rubyonrails  filtering  authentication  role  webdev 
october 2008 by avantbard
binarylogic's authgasm at master — GitHub
"What if you could have authentication up and running in minutes without having to run a generator? All because it’s simple, like everything else in rails. " - damn this looks nice. must try
authentication  rails  security  rubyonrails  plugin  plugins  auth  sessions 
october 2008 by avantbard
jRails - jQuery on Rails
"jRails is a drop-in jQuery replacement for Prototype/script.aculo.us on Rails. Using jRails, you can get all of the same default Rails helpers for javascript functionality using the lighter jQuery library."
jquery  rails  webdev  rubyonrails  javascript  js  plugin  plugins 
october 2008 by avantbard
thoughtbot's clearance
Simple authentication for Ruby web apps, with Shoulda and Factory Girl tests for its test suite.
rails  rubyonrails  webdev  authentication  thoughtbot  logins  authorization 
october 2008 by avantbard
thoughtbot's limerick_rake
a nice collection of helpful rake tasks for rails apps
rake  rails  rubyonrails  webdev  plugins  plugin  limerick 
october 2008 by avantbard
rolerequirement
"Rolerequirement focuses on a simple approach to role-based authentication" - rails plugin
role  roles  webdev  rubyonrails  rails  authorization  security  authentication  plugin  plugins 
october 2008 by avantbard
Quiet Backtrace
"Quiet Backtrace suppresses the noise in your Test::Unit backtrace. It also provides hooks for you to add additional silencers and filters." - so helpful
rails  rubyonrails  tdd  testing  backtrace  test::unit  taft  thoughtbot  plugins  gem  test  webdev 
october 2008 by avantbard
Automatic Rails at Slicehost
nice script for prod rails stack deployment at slicehost
slicehost  vps  rails  webdev  rubyonrails 
september 2008 by avantbard
Binary Logic - Searchgasm
Searchgasm's inspiration comes right from ActiveRecord. ActiveRecord lets you create objects that represent a record in the database, so why can't you create objects that represent searching the database? Now you can! It's searching, ordering, and pagination all in one.
rails  search  rubyonrails  webdev  activerecord  plugins 
september 2008 by avantbard
Rail Spikes: Loading seed data
techniques for loading seed data into rails apps
rails  webdev  rubyonrails  seed  populate  fixtures  load 
september 2008 by avantbard
Ruby on Rails guides
this is where the rails doc project guides are going
rails  webdev  rubyonrails  tutorial  guide  guides 
september 2008 by avantbard
Bort - A Base Rails Application
another base rails app, like the caboose app
rail  rubyonrails  webdev  base  app  default  setup  template 
september 2008 by avantbard
Under the hood: route recognition in Rails
has example of restricting a route for only certain http verbs
rails  rubyonrails  routes  routing  webdev  verbs  http 
august 2008 by avantbard
validates_with_block rails lib
A plugin that allows for dynamic, more readable block-driven validation for ActiveRecord models.
rails  webdev  rubyonrails  validation  validates  activerecord 
may 2008 by avantbard
Passenger - DreamHost
Sweet! DH finally supports the new mod_rails for easy deployment.
mod_rails  rubyonrails  webdev  rails  passenger  dreamhost 
may 2008 by avantbard
LiveValidation Rails Plugin
client-side live validation w/ js plugin for rails
rails  validation  js  javascript  webdev  rubyonrails 
april 2008 by avantbard
Noobkit
helpful rails / ruby / gems documentation site
rails  rubyonrails  ruby  documentation  docs  gems 
april 2008 by avantbard
Static pages for the enterprise
another approach to simple pages that need layouts in rails
rails  webdev  rubyonrails  layout 
april 2008 by avantbard
has_many :through - simple pages
Here's a tiny little tip for handling those boiler-plate pages that aren't part of your app's functionality but you usually need anyway. It's good for setting up about, contact, copyright, etc. You can always throw those pages into /public as static html
rails  webdev  rubyonrails  layout 
april 2008 by avantbard
will_paginate
excellent pagination gem for rails apps
pagination  paginate  rails  rubyonrails  webdev 
march 2008 by avantbard
« earlier      

related tags

activemailer  activemerchant  activerecord  admin  ajax  ami  analytics  apache  api  apidock  app  apple  asp.net  assignment  association  associations  auditing  auth  authentication  authlogic  authorization  autocomplete  awesome  aws  backtrace  base  bdd  bermuda-like  beta  browsers  cache  caching  calendar  capistrano  captcha  cart  chart  charting  charts  cheatsheat  cheatsheet  checklist  chronic  cms  code  collaborative  collaborativefiltering  comet  compsci  creditcard  css  database  date  db  debug  debugger  debugging  default  deploy  deployment  design  dev  docs  documentation  downloads  dreamhost  ecommerce  edge  edgerails  email  engine  enterprise  error  errors  erubis  feature  features  fields_for  file  files  filter  filtering  fixtures  flash  forms  functionaltesting  gdata  gears  gem  gems  git  google  googlegears  graph  graphs  guide  guidelines  guides  gunderloy  haml  help  history  howto  http  httperf  ide  image  inspiration  interviews  ipn  irb  javascript  joyent  jquery  js  knowledge  komodo  layout  learning  lighthttpd  limerick  load  logging  login  logins  mac  macosx  mail  manual  massmail  mass_assignment  migration  migrations  mod_rails  mongrel  monitoring  mosx  mutliple  named_scope  optimization  orm  osx  padlock  paginate  pagination  params  passenger  payment  paypal  pdf  performance  plugin  plugins  podcast  populate  presentation  production  programming  prototype  push  qa  quality  query  rack  rail  rails  railscasts  railsengines  railshelp  rake  recommendations  refactoring  reference  report  reporting  reports  rest  restful  rjs  rjstemplates  role  roles  routes  routing  ruby  ruby-debug  rubyeast  rubygems  rubyonrails  scaffold  scaling  screencasts  scrooge  search  searchable  security  seed  sessions  setup  seymore  shopping  shoulda  similarities  simpleticket  slicehost  slider  spam  sql  staging  statistics  store  streaming  subdomain  subdomains  subversion  svn  symbols  syncpeople  taft  tdd  template  test  test::unit  testing  textmate  thoughtbot  ticketing  timezone  timezones  tips  tutorial  ubuntu  uploads  users  validates  validation  validations  verbs  versioning  video  vps  webapp  webdev  week  weekly  windows  xmlhttprequest  xss  yaml 

Copy this bookmark:



description:


tags: