forked from danielvlopes/railsmg
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
unpack new gems and add missing authlogic specification
- Loading branch information
Showing
65 changed files
with
6,720 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,238 @@ | ||
--- !ruby/object:Gem::Specification | ||
name: authlogic | ||
version: !ruby/object:Gem::Version | ||
version: 2.1.3 | ||
platform: ruby | ||
authors: | ||
- Ben Johnson of Binary Logic | ||
autorequire: | ||
bindir: bin | ||
cert_chain: [] | ||
|
||
date: 2009-11-12 00:00:00 -02:00 | ||
default_executable: | ||
dependencies: | ||
- !ruby/object:Gem::Dependency | ||
name: activesupport | ||
type: :runtime | ||
version_requirement: | ||
version_requirements: !ruby/object:Gem::Requirement | ||
requirements: | ||
- - ">=" | ||
- !ruby/object:Gem::Version | ||
version: "0" | ||
version: | ||
description: | ||
email: [email protected] | ||
executables: [] | ||
|
||
extensions: [] | ||
|
||
extra_rdoc_files: | ||
- LICENSE | ||
- README.rdoc | ||
files: | ||
- .gitignore | ||
- CHANGELOG.rdoc | ||
- LICENSE | ||
- README.rdoc | ||
- Rakefile | ||
- VERSION.yml | ||
- authlogic.gemspec | ||
- generators/session/session_generator.rb | ||
- generators/session/templates/session.rb | ||
- init.rb | ||
- lib/authlogic.rb | ||
- lib/authlogic/acts_as_authentic/base.rb | ||
- lib/authlogic/acts_as_authentic/email.rb | ||
- lib/authlogic/acts_as_authentic/logged_in_status.rb | ||
- lib/authlogic/acts_as_authentic/login.rb | ||
- lib/authlogic/acts_as_authentic/magic_columns.rb | ||
- lib/authlogic/acts_as_authentic/password.rb | ||
- lib/authlogic/acts_as_authentic/perishable_token.rb | ||
- lib/authlogic/acts_as_authentic/persistence_token.rb | ||
- lib/authlogic/acts_as_authentic/restful_authentication.rb | ||
- lib/authlogic/acts_as_authentic/session_maintenance.rb | ||
- lib/authlogic/acts_as_authentic/single_access_token.rb | ||
- lib/authlogic/acts_as_authentic/validations_scope.rb | ||
- lib/authlogic/authenticates_many/association.rb | ||
- lib/authlogic/authenticates_many/base.rb | ||
- lib/authlogic/controller_adapters/abstract_adapter.rb | ||
- lib/authlogic/controller_adapters/merb_adapter.rb | ||
- lib/authlogic/controller_adapters/rails_adapter.rb | ||
- lib/authlogic/controller_adapters/sinatra_adapter.rb | ||
- lib/authlogic/crypto_providers/aes256.rb | ||
- lib/authlogic/crypto_providers/bcrypt.rb | ||
- lib/authlogic/crypto_providers/md5.rb | ||
- lib/authlogic/crypto_providers/sha1.rb | ||
- lib/authlogic/crypto_providers/sha256.rb | ||
- lib/authlogic/crypto_providers/sha512.rb | ||
- lib/authlogic/crypto_providers/wordpress.rb | ||
- lib/authlogic/i18n.rb | ||
- lib/authlogic/i18n/translator.rb | ||
- lib/authlogic/random.rb | ||
- lib/authlogic/regex.rb | ||
- lib/authlogic/session/activation.rb | ||
- lib/authlogic/session/active_record_trickery.rb | ||
- lib/authlogic/session/base.rb | ||
- lib/authlogic/session/brute_force_protection.rb | ||
- lib/authlogic/session/callbacks.rb | ||
- lib/authlogic/session/cookies.rb | ||
- lib/authlogic/session/existence.rb | ||
- lib/authlogic/session/foundation.rb | ||
- lib/authlogic/session/http_auth.rb | ||
- lib/authlogic/session/id.rb | ||
- lib/authlogic/session/klass.rb | ||
- lib/authlogic/session/magic_columns.rb | ||
- lib/authlogic/session/magic_states.rb | ||
- lib/authlogic/session/params.rb | ||
- lib/authlogic/session/password.rb | ||
- lib/authlogic/session/perishable_token.rb | ||
- lib/authlogic/session/persistence.rb | ||
- lib/authlogic/session/priority_record.rb | ||
- lib/authlogic/session/scopes.rb | ||
- lib/authlogic/session/session.rb | ||
- lib/authlogic/session/timeout.rb | ||
- lib/authlogic/session/unauthorized_record.rb | ||
- lib/authlogic/session/validation.rb | ||
- lib/authlogic/test_case.rb | ||
- lib/authlogic/test_case/mock_controller.rb | ||
- lib/authlogic/test_case/mock_cookie_jar.rb | ||
- lib/authlogic/test_case/mock_logger.rb | ||
- lib/authlogic/test_case/mock_request.rb | ||
- lib/authlogic/test_case/rails_request_adapter.rb | ||
- rails/init.rb | ||
- shoulda_macros/authlogic.rb | ||
- test/acts_as_authentic_test/base_test.rb | ||
- test/acts_as_authentic_test/email_test.rb | ||
- test/acts_as_authentic_test/logged_in_status_test.rb | ||
- test/acts_as_authentic_test/login_test.rb | ||
- test/acts_as_authentic_test/magic_columns_test.rb | ||
- test/acts_as_authentic_test/password_test.rb | ||
- test/acts_as_authentic_test/perishable_token_test.rb | ||
- test/acts_as_authentic_test/persistence_token_test.rb | ||
- test/acts_as_authentic_test/restful_authentication_test.rb | ||
- test/acts_as_authentic_test/session_maintenance_test.rb | ||
- test/acts_as_authentic_test/single_access_test.rb | ||
- test/authenticates_many_test.rb | ||
- test/crypto_provider_test/aes256_test.rb | ||
- test/crypto_provider_test/bcrypt_test.rb | ||
- test/crypto_provider_test/sha1_test.rb | ||
- test/crypto_provider_test/sha256_test.rb | ||
- test/crypto_provider_test/sha512_test.rb | ||
- test/fixtures/companies.yml | ||
- test/fixtures/employees.yml | ||
- test/fixtures/projects.yml | ||
- test/fixtures/users.yml | ||
- test/i18n_test.rb | ||
- test/libs/affiliate.rb | ||
- test/libs/company.rb | ||
- test/libs/employee.rb | ||
- test/libs/employee_session.rb | ||
- test/libs/ldaper.rb | ||
- test/libs/ordered_hash.rb | ||
- test/libs/project.rb | ||
- test/libs/user.rb | ||
- test/libs/user_session.rb | ||
- test/random_test.rb | ||
- test/session_test/activation_test.rb | ||
- test/session_test/active_record_trickery_test.rb | ||
- test/session_test/brute_force_protection_test.rb | ||
- test/session_test/callbacks_test.rb | ||
- test/session_test/cookies_test.rb | ||
- test/session_test/credentials_test.rb | ||
- test/session_test/existence_test.rb | ||
- test/session_test/http_auth_test.rb | ||
- test/session_test/id_test.rb | ||
- test/session_test/klass_test.rb | ||
- test/session_test/magic_columns_test.rb | ||
- test/session_test/magic_states_test.rb | ||
- test/session_test/params_test.rb | ||
- test/session_test/password_test.rb | ||
- test/session_test/perishability_test.rb | ||
- test/session_test/persistence_test.rb | ||
- test/session_test/scopes_test.rb | ||
- test/session_test/session_test.rb | ||
- test/session_test/timeout_test.rb | ||
- test/session_test/unauthorized_record_test.rb | ||
- test/session_test/validation_test.rb | ||
- test/test_helper.rb | ||
has_rdoc: true | ||
homepage: http://github.com/binarylogic/authlogic | ||
licenses: [] | ||
|
||
post_install_message: | ||
rdoc_options: | ||
- --charset=UTF-8 | ||
require_paths: | ||
- lib | ||
required_ruby_version: !ruby/object:Gem::Requirement | ||
requirements: | ||
- - ">=" | ||
- !ruby/object:Gem::Version | ||
version: "0" | ||
version: | ||
required_rubygems_version: !ruby/object:Gem::Requirement | ||
requirements: | ||
- - ">=" | ||
- !ruby/object:Gem::Version | ||
version: "0" | ||
version: | ||
requirements: [] | ||
|
||
rubyforge_project: authlogic | ||
rubygems_version: 1.3.5 | ||
signing_key: | ||
specification_version: 3 | ||
summary: A clean, simple, and unobtrusive ruby authentication solution. | ||
test_files: | ||
- test/acts_as_authentic_test/base_test.rb | ||
- test/acts_as_authentic_test/email_test.rb | ||
- test/acts_as_authentic_test/logged_in_status_test.rb | ||
- test/acts_as_authentic_test/login_test.rb | ||
- test/acts_as_authentic_test/magic_columns_test.rb | ||
- test/acts_as_authentic_test/password_test.rb | ||
- test/acts_as_authentic_test/perishable_token_test.rb | ||
- test/acts_as_authentic_test/persistence_token_test.rb | ||
- test/acts_as_authentic_test/restful_authentication_test.rb | ||
- test/acts_as_authentic_test/session_maintenance_test.rb | ||
- test/acts_as_authentic_test/single_access_test.rb | ||
- test/authenticates_many_test.rb | ||
- test/crypto_provider_test/aes256_test.rb | ||
- test/crypto_provider_test/bcrypt_test.rb | ||
- test/crypto_provider_test/sha1_test.rb | ||
- test/crypto_provider_test/sha256_test.rb | ||
- test/crypto_provider_test/sha512_test.rb | ||
- test/i18n_test.rb | ||
- test/libs/affiliate.rb | ||
- test/libs/company.rb | ||
- test/libs/employee.rb | ||
- test/libs/employee_session.rb | ||
- test/libs/ldaper.rb | ||
- test/libs/ordered_hash.rb | ||
- test/libs/project.rb | ||
- test/libs/user.rb | ||
- test/libs/user_session.rb | ||
- test/random_test.rb | ||
- test/session_test/activation_test.rb | ||
- test/session_test/active_record_trickery_test.rb | ||
- test/session_test/brute_force_protection_test.rb | ||
- test/session_test/callbacks_test.rb | ||
- test/session_test/cookies_test.rb | ||
- test/session_test/credentials_test.rb | ||
- test/session_test/existence_test.rb | ||
- test/session_test/http_auth_test.rb | ||
- test/session_test/id_test.rb | ||
- test/session_test/klass_test.rb | ||
- test/session_test/magic_columns_test.rb | ||
- test/session_test/magic_states_test.rb | ||
- test/session_test/params_test.rb | ||
- test/session_test/password_test.rb | ||
- test/session_test/perishability_test.rb | ||
- test/session_test/persistence_test.rb | ||
- test/session_test/scopes_test.rb | ||
- test/session_test/session_test.rb | ||
- test/session_test/timeout_test.rb | ||
- test/session_test/unauthorized_record_test.rb | ||
- test/session_test/validation_test.rb | ||
- test/test_helper.rb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
--- !ruby/object:Gem::Specification | ||
name: cancan | ||
version: !ruby/object:Gem::Version | ||
version: 1.0.2 | ||
platform: ruby | ||
authors: | ||
- Ryan Bates | ||
autorequire: | ||
bindir: bin | ||
cert_chain: [] | ||
|
||
date: 2009-12-30 00:00:00 -02:00 | ||
default_executable: | ||
dependencies: [] | ||
|
||
description: Simple authorization solution for Rails which is completely decoupled from the user's roles. All permissions are stored in a single location for convenience. | ||
email: [email protected] | ||
executables: [] | ||
|
||
extensions: [] | ||
|
||
extra_rdoc_files: | ||
- README.rdoc | ||
- CHANGELOG.rdoc | ||
- LICENSE | ||
files: | ||
- lib/cancan/ability.rb | ||
- lib/cancan/controller_additions.rb | ||
- lib/cancan/controller_resource.rb | ||
- lib/cancan/resource_authorization.rb | ||
- lib/cancan.rb | ||
- spec/cancan/ability_spec.rb | ||
- spec/cancan/controller_additions_spec.rb | ||
- spec/cancan/controller_resource_spec.rb | ||
- spec/cancan/resource_authorization_spec.rb | ||
- spec/spec_helper.rb | ||
- LICENSE | ||
- README.rdoc | ||
- Rakefile | ||
- CHANGELOG.rdoc | ||
- init.rb | ||
has_rdoc: true | ||
homepage: http://github.com/ryanb/cancan | ||
licenses: [] | ||
|
||
post_install_message: | ||
rdoc_options: | ||
- --line-numbers | ||
- --inline-source | ||
- --title | ||
- CanCan | ||
- --main | ||
- README.rdoc | ||
require_paths: | ||
- lib | ||
required_ruby_version: !ruby/object:Gem::Requirement | ||
requirements: | ||
- - ">=" | ||
- !ruby/object:Gem::Version | ||
version: "0" | ||
version: | ||
required_rubygems_version: !ruby/object:Gem::Requirement | ||
requirements: | ||
- - ">=" | ||
- !ruby/object:Gem::Version | ||
version: "1.2" | ||
version: | ||
requirements: [] | ||
|
||
rubyforge_project: | ||
rubygems_version: 1.3.5 | ||
signing_key: | ||
specification_version: 3 | ||
summary: Simple authorization solution for Rails. | ||
test_files: [] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
1.0.2 (Dec 30, 2009) | ||
|
||
* Adding clear_aliased_actions to Ability which removes previously defined actions including defaults - see issue #20 | ||
|
||
* Append aliased actions (don't overwrite them) - see issue #20 | ||
|
||
* Adding custom message argument to unauthorized! method (thanks tjwallace) - see issue #18 | ||
|
||
|
||
1.0.1 (Dec 14, 2009) | ||
|
||
* Adding :class option to load_resource so one can customize which class to use for the model - see issue #17 | ||
|
||
* Don't fetch parent of nested resource if *_id parameter is missing so it works with shallow nested routes - see issue #14 | ||
|
||
|
||
1.0.0 (Dec 13, 2009) | ||
|
||
* Don't set resource instance variable if it has been set already - see issue #13 | ||
|
||
* Allowing :nested option to accept an array for deep nesting | ||
|
||
* Adding :nested option to load resource method - see issue #10 | ||
|
||
* Pass :only and :except options to before filters for load/authorize resource methods. | ||
|
||
* Adding :collection and :new options to load_resource method so we can specify behavior of additional actions if needed. | ||
|
||
* BACKWARDS INCOMPATIBLE: turning load and authorize resource methods into class methods which set up the before filter so they can accept additional arguments. | ||
|
||
|
||
0.2.1 (Nov 26, 2009) | ||
|
||
* many internal refactorings - see issues #11 and #12 | ||
|
||
* adding "cannot" method to define which abilities cannot be done - see issue #7 | ||
|
||
* support custom objects (usually symbols) in can definition - see issue #8 | ||
|
||
|
||
0.2.0 (Nov 17, 2009) | ||
|
||
* fix behavior of load_and_authorize_resource for namespaced controllers - see issue #3 | ||
|
||
* support arrays being passed to "can" to specify multiple actions or classes - see issue #2 | ||
|
||
* adding "cannot?" method to ability, controller, and view which is inverse of "can?" - see issue #1 | ||
|
||
* BACKWARDS INCOMPATIBLE: use Ability#initialize instead of 'prepare' to set up abilities - see issue #4 | ||
|
||
|
||
0.1.0 (Nov 16, 2009) | ||
|
||
* initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
Copyright (c) 2009 Ryan Bates | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining | ||
a copy of this software and associated documentation files (the | ||
"Software"), to deal in the Software without restriction, including | ||
without limitation the rights to use, copy, modify, merge, publish, | ||
distribute, sublicense, and/or sell copies of the Software, and to | ||
permit persons to whom the Software is furnished to do so, subject to | ||
the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be | ||
included in all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | ||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE | ||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION | ||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION | ||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
Oops, something went wrong.