similar to: ActiveRBAC 0.3.2 Released

Displaying 20 results from an estimated 500 matches similar to: "ActiveRBAC 0.3.2 Released"

2006 Apr 22
5
ActiveRBAC 0.3.1 Released
Hi I am happy to announce the 0.3.1 release of ActiveRBAC Engine. The biggest improvement on the 0.3 release is that it runs with Rails 1.1 now. Get your personal copy now from https://activerbac.turingstudio.com/releases :) There is a manual PDF with a tutorial available at https://activerbac.turingstudio.com/releases/ActiveRbacManual.pdf which is also included in the full
2006 Jun 09
5
ActiveRBAC?
How''s the experience with using ActiveRBAC? For my "next 4 days with rails" :P I''d like to consider adding Role-based access to the To-Do List application in the original "four days w/ rails" tutorial. Just wondering if ActiveRBAC would be a good place to start? Thanks! For those who are wondering: https://activerbac.turingstudio.com/trac Cheers Mohit.
2006 Feb 23
20
ActiveRbac 0.3 release - We''re now on Engines
Hi I have just released the 0.3 revision of ActiveRecord - make sure to get the fresh, hot packages from https://activerbac.turingstudio.com/releases What is ActiveRBAC? ------------------- ActiveRBAC is a Ruby on Rails library that provides a full stack RBAC (Role Based Authorization) system with user, group, role and permission management. It provides models and controllers to edit
2006 Jan 15
0
ANN: ActiveRBAC 0.2.1 released
Hi, all. I just want to announce out that I have just released version 0.2.1 of ActiveRBAC. ActiveRBAC is a component that handles authentication (login) and authorization (permissions). The aim of ActiveRBAC is to provide the default authentication and authorization backend for shared Ruby On Rails components. You can fetch the current release from
2006 May 29
1
Engine: Active_RBAC not working, missing require
Hi there, I try to install the active_rbac plugin as described in the manual on the active_rbac trac site. The installation through the plugin script was great: ruby script\plugin discover ruby script\plugin install engines ruby script\plugin install active_rbac I set up the environment.rb in rails\config dir correctly to Engines.start :active_rbac But if I try a rake db:migrate:engines
2006 Mar 16
23
AJAX on Mobile Internet Explorer
Hi! I try to get AJAX running on a mobile Windows Mobile 5.0 based device and failed. There should be a JavaScript support but nothing happens. Have any of you experience with the rails javascripts on a this platform or are there any hints, documentation on the net? tia, -- Daniel V?lkerts Protected by Anti Pesto.
2006 Mar 11
0
ActiveRBAC
Has anyone used ActiveRBAC for a commerical/production task? https://activerbac.turingstudio.com/trac/wiki Is is secure? Is is easy to incorporate into a project? Thanks, NK -- Posted via http://www.ruby-forum.com/.
2006 Apr 07
4
How to generate mapping with migration
Hi there, I''ve tried to add a m:n mapping table using the migration mechanism. ruby script\generate migration add_categories_notes_mapping and filled the migration file with: class AddNotesCategoriesMapping < ActiveRecord::Migration def self.up create_table :categories_notes do |t| t.column :category_id, :integer, :null=>false t.column :note_id, :integer,
2006 Feb 27
2
Publishing a Plugin via ./script/plugin
Hi How do I publish a plugin so I can download it via ./script/plugin. I''ve put my plugin (ActiveRBAC) on http://wiki.rubyonrails.com/rails/ pages/Plugins but seemingly ./script/plugin discover does not find it :/ Even if I do ./script/plugin source \ https://activerbac.turingstudio.com/source/active_rbac/trunk/ active_rbac it does not appear on ./script/plugin list.
2006 May 30
2
Plugin install using version
Hallo, after I found an bug item for my active_rbac problem on windows using ruby one-click last stable (1.8.2 I guess), there was the rant to downgrade to engines-1.1.1. I successfully installed engines-1.1.2 and removed it by ruby script\plugin remove engines I tried ruby script\plugin install engines-1.1.1 in the gem way of handling versions but that didn''t worked. Any idea
2006 Apr 10
5
ActiveRecord: Behavior not doumented
Hello everbody, doing a #find(:first,an_id) with Rails 1.1.0 I expected that find returns the record which id mathches the given parameter an_id or nil if it couldn''t be found. This behaviour is documented on api.rubyonrails.org. But the find returns the first available object and not nil if an_id is not in the db. Is the doc on rubyonrails.org out of sync? Greetings, -- Daniel
2006 Feb 25
5
[Half-OT] PDA Clients and Rails
Hello! I''d like to gather some points about running a rails application on a PDA. As a condition I''d like to use Palm and Windows Mobile based PDA to target a huge user audience (this could be become difficult I know, only Windows Mobile for the start is although okay). I googled the last weeks and found out that there were only a few web browsers out there. E.g. Mozilla
2006 Jun 06
5
ruby mathematical expression parser
Hi, Has anyone come across a Ruby mathematical expression parser, capable of parsing out token, replacing them with values then executing the mathematical formula? Nothing too heavy, A * (44/12) * ... etc. where A is can be replaced with a value. In Java there are serveral, like JEP, but I''d prefer it we could get a Ruby one now we have moved over to Rails, otherwise we will have to
2006 Jun 14
0
ACTIVE_BRAC engine migration error.
Hello Keegan, You may already have forgotten about your posting from last month - but I stumbled across the EXACT same error today, and figured out a way around it. The difficulty stems from you running under Windows XP, probably running InstantRails, right? I fairly quickly discovered that the reason things were not working according to the ActiveRBAC Manual was that the code for
2006 Jul 12
9
Instant Rails Screencast
I created a screencast showing how you can use Instant Rails to get a fully functional Rails environment running on Windows in under 5 minutes. Get started with Ruby on Rails in less than 5 minutes http://mattgriffith.net/PermaLink.aspx?guid=97aa05b7-2e38-4c7d-b184-45ab2e2715b9 Right now the video is only available in Windows Media. Eventually there will be a flash version available too.
2006 Apr 09
1
select helper question
Hi there, I try to develop a medical application using ruby on rails. There are many categories which can contain subcategories. I defined the model like this: class Category < ActiveRecord::Base has_and_belongs_to_many :notes belongs_to :parent_category, :class_name=>"Category", :foreign_key=>"category_id" has_many :sub_categories,
2005 Apr 16
0
RBAC on Rails?
yo, has anyone done a good RBAC implementation for rails? I see lotsa mini-tutorial-suggestions, but not... ActionRBAC! :) any pointers helpful - if nothing exists I think I''ll duplicate the RBAC implementation we did for binarycloud (binarycloud.com) and give it to the community. thanks for any help, _alex -- alex black, founder the turing studio, inc. 510.666.0074
2006 Mar 13
2
Engines with InstantRails
I''ve recently started playing with InstantRails 1.0 and am now wanting to experiment with the Login and active RBAC engines but having trouble getting them to install. I''ve checked the following but can''t find any info on how to get it to work. http://rails-engines.org/wiki/pages/Engines+plugin I''ve also tried the following:
2006 May 04
0
Using ActiveRBAC 0.3.1 to restrict entire site?
All, I''m trying Active_rbac for the first time. I have the basics working so I can protect a single controller. I want to protect all of my controllers so users have to login to see anything. I''m trying to put a before_filter in my application controller, but I don''t know how to do the except correctly. I''ve been trying this: class ApplicationController
2006 May 22
1
Problems with ActiveRbac plugin
*Sorry for the first mail without subject* Hello, I try to use the active_rbac plugin (0.3.1) with Rails 1.1.2 but can''t succeed for the moment. Here is what I did : 1 - install Engines Plugin => OK. ''rake engines:info'' gives me "1.1.1" as the engines plugin version. 2 - install Active_rbac plugin => OK. Files are copied in vendor/plugins/active_rbac