Displaying 20 results from an estimated 1200 matches similar to: "New RBAC Plug-In for Rails"
2006 May 16
1
Bay Cities Ruby Group
Hello,
I''m trying to organize a Bay Cities Ruby Group in Southern California.
This would include the cities of Redondo Beach, Manhatten Beach,
Hermosa Beach, Torrance, Gardena, Lomita, etc. If you are interesting
in joining a group that would be like other ruby groups where we
discuss tricks, technique, theory, etc. and help each other, then
please join the mailing list:
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
2005 Dec 28
3
Unit tests, Fixtures, Authority Data, Oh my!
Yo guys...
I''m starting to get into testing my current e-commerce Rails app before I
Engine-ify it...(Codename "Substruct" - don''t sleep!)
I''ve got some data that should be loaded before each test. Convention tells
me that I should prepare this data in nice YML files as fixtures, although
I''m not quite so sure.
The data in question is a country list
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.
2005 Dec 27
6
avoid multiple render per action
Hello,
I have a hash that contains categories, and each category ID is a
hash of subcategories. What i want to do is dynamically load that
hash, loop thru it, for each category , subcat run a query against the
DB, and render a partial. The issue is i put the render:partial in a
for loop but you can only render once per action. What is the best
way to loop thru all my categories without a
2006 Mar 23
3
User/group/role model question
Hi.
I have an app where "users" can belong in "groups" with certain "roles"
(eg. a user can own a group).
Normally I''d make users has_and_belongs_to_many groups and put a role_id
on the join table. But - a role is really a first class citizen also, so
a model is in order.
The problem with making a "role" model which has_many "users"
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 31
1
ActiveRBAC 0.3.2 Released
Hi
I am happy to announce the 0.3.2 release of ActiveRBAC Engine. The
only improvement on the 0.3.1 release is that it runs with Rails
1.1.2 and Engines 1.1.2 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
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:
2012 Aug 14
3
Testing Hiera Lookup with Puppet Master
Hello,
Is there an easy way to test hiera lookup for a node? A node is not getting
the value I expect from Hiera and I want a way to test this.
I noticed that `hiera` has an option called `-i` to use the Puppet
inventory service. With the latest (RC4 I believe) of Hiera I''m getting the
following when I try to use that though:
Puppet inventory service lookup failed: NoMethodError:
2006 Jun 15
1
Unicode hacks - problem
I have updated to latest Unicode hacks plugin and now it fails when
rails are started ....
C:\ruby_projects\radrails\workspace\auth_template>mongrel_rails start
** Starting Mongrel in development mode at 0.0.0.0:3000
** Starting Rails in environment development ...
C:/ruby_projects/radrails/workspace/auth_template/config/../vendor/plugins/scoped_access/init.rb:17:in
2005 Dec 21
13
Too many login generators?
there is a blog about it
http://www.realityforge.org/articles/2005/11/12/aaa_in_rails
There are so many Authentication/Authorization/Auditing generators now,
just like the situation in java''s world, Too many components doing the
samething just make me confusion. Why not add one to rails core lib and
everybody can extend it for their requirement ?
--
Posted via
2006 May 29
8
Rails and user authentification
I am a the point now where I have to add user authentification to my
application.
Anyone can point me toward an easy to use / secure library? I know about
ActiveRBAC and was wondering if there is anything else that I should
consider.
Thanks!
--
Posted via http://www.ruby-forum.com/.
2012 Jul 27
2
Atomicity of updates on the Puppet master
Hello,
I''m currently setting up some scripts that will pull in new data for Puppet
master (modules, manifests, hiera data, etc.) from a Git repository. It
works great!
However, I''m concerned about atomicity of the whole thing. Does the Puppet
master cache the modules/manifests when it starts? If so, do I need to
restart the Puppet master on each update? Or can I send it a
2006 Feb 14
4
Fine grained access control
Hi,
I''m building an application which is going to require quite fine grained
access control. Deciding if a user is allowed to access an action will
probably require checking quite number of different rules, so a simple
role-based system won''t be flexible enough.
The approach I think I will try first is, if it''s possible, to ignore
permission issues inside the
2006 Feb 23
13
Check if a saved user''s name is admin
Hi all,
I have a question about this method in my User model:
# Returns true for the (saved) user called "admin"
def is_the_administrator
true if save and name == "admin"
end
The method returns true if the user''s name is admin. However, I only want to
return true if the state of the object is "saved", so I call the save method
first.
I''m
2006 Jul 16
9
acl_system help is needed
i found Ezra''s acl_system plugin yesterday and i am trying to figure it
out.
based on the simple instructions on the site, it does exactly what i
need but i''m getting some errors when i try to use it:
NoMethodError in UsersController#index
You have a nil object when you didn''t expect it!
The error occured while evaluating nil.roles
i am pretty new to rails and
2012 Aug 15
1
Calling custom Puppet function from within a provider
Hello,
I have a custom Puppet function. Am I able to call that function from
within my custom provider (written in Ruby)?
Best,
Mitchell
--
You received this message because you are subscribed to the Google Groups "Puppet Users" group.
To post to this group, send email to puppet-users@googlegroups.com.
To unsubscribe from this group, send email to
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