Projects tagged ‘plugins’ and ‘rubyonrails’


[15 total ]

0 Users

acts_as_voteable allows you to mix voting into your models: Post < ActiveRecord::Base   acts_as_voteable end User < ActiveRecord::Base   acts_as_voter end #simple vote ... [More] user.vote_up(post) user.vote_down(post) #vote about something: user.vote_up(post, :about => 'spam') #check for a vote user.voted_up?(post) #count votes: user.votes.count user.up_votes.count user.down_votes.count #points (up - down) user.points #coming soon user.points(:about => 'spam') #sorting - works just like find from AR with a few changes Post.find_top(:all, :since => 1.day.ago, :about => 'spam') There are also generators for tests so you can verify that you installed correctly: script/generate acts_as_voteable_test post installation: script/install plugin http://richcollins.net/svn/acts_as_voteable/ Send feedback to richcollins@gmail.com Enjoy! [Less]
Created about 1 year ago.

0 Users

secure_action is a ruby on rails plugin which makes it easy to defend your site against assumed logged in attacks, also called CSRF(cross site request forgery) attacks. In an assumed logged in ... [More] attack, a malicious site assumes the visitor is logged into a target site. The malicious site crafts a URL to a destructive action on the target site (change email, delete account, etc) and opens the URL to that action in a hidden iframe. The browser then sends the user's cookies and actions may be performed on their behalf without them ever knowing. This technique may be used to steal accounts, or perform other malicious actions to sites which allow users to log in. This plugin prevents these attacks by signing forms and URLs for specified actions with the user's session_id. By signing with the session_id, your site can be sure that the user of the browser generated the form or URL submitted. Signatures are verified before secure actions are executed. To install, check out the code in your RAILS_ROOT/vendor/plugins/ directory and follow the instructions in the README. 0.1 version of the plugin requires Rails >= 1.2 svn checkout http://secure-action-plugin.googlecode.com/svn/trunk/ secure-action-plugin Author: Brian Ellin, brian at janrain.com Copyright: 2006, JanRain Inc. [Less]
Created about 1 year ago.

0 Users

TabsOnRails is a simple Rails plugin for creating and managing Tabs. It provides helpers for creating tabs, an navigation menu in general, with a flexible interface.
Created 5 months ago.

0 Users

not much to see here right now
Created about 1 year ago.

0 Users

This is a library of code snippets created by d|vision|factory (dvisionfactory.com) Rails PluginsRelated select forms Global scope
Created about 1 year ago.

0 Users

Various plugins for the Ruby on Rails web development framework.
Created about 1 year ago.

0 Users

The RailsJitsu Layout Generator Plugin creates the basics needed for every rails application that is not included in the rails generator. It adds a layout, stylesheet, and javascript file that is ... [More] application-wide. It also had built-in functionality for a flash messaging system that sits above the page content and fades out using css and javascript. [Less]
Created 12 months ago.

0 Users

This application is a Ruby on Rails application for development of the jsHub javascript library. For more information see: http://jshub.org/
Created 3 months ago.

0 Users

A Widon't plugin for the Mephisto blogging package based on an idea from Shaun Inman and a Rails helper provided by mucur.name (sorry, don't know the author's actual name). For more information on ... [More] Widon't, see this post: http://shauninman.com/archive/2006/08/22/widont_wordpress_plugin [Less]
Created 11 months ago.

0 Users

It's a ruby on rails plugin ,count page view of any object
Created about 1 year ago.