masked-identifier 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (45) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.txt +53 -0
  3. data/Rakefile +37 -0
  4. data/lib/code-generator.rb +51 -0
  5. data/lib/masked-identifier.rb +56 -0
  6. data/lib/tasks/masked-identifier_tasks.rake +4 -0
  7. data/test/dummy/Rakefile +7 -0
  8. data/test/dummy/app/assets/javascripts/application.js +9 -0
  9. data/test/dummy/app/assets/stylesheets/application.css +7 -0
  10. data/test/dummy/app/controllers/application_controller.rb +3 -0
  11. data/test/dummy/app/helpers/application_helper.rb +2 -0
  12. data/test/dummy/app/models/user.rb +2 -0
  13. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  14. data/test/dummy/config.ru +4 -0
  15. data/test/dummy/config/application.rb +42 -0
  16. data/test/dummy/config/boot.rb +10 -0
  17. data/test/dummy/config/database.yml +25 -0
  18. data/test/dummy/config/environment.rb +5 -0
  19. data/test/dummy/config/environments/development.rb +27 -0
  20. data/test/dummy/config/environments/production.rb +51 -0
  21. data/test/dummy/config/environments/test.rb +39 -0
  22. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  23. data/test/dummy/config/initializers/inflections.rb +10 -0
  24. data/test/dummy/config/initializers/mime_types.rb +5 -0
  25. data/test/dummy/config/initializers/secret_token.rb +7 -0
  26. data/test/dummy/config/initializers/session_store.rb +8 -0
  27. data/test/dummy/config/initializers/wrap_parameters.rb +12 -0
  28. data/test/dummy/config/locales/en.yml +5 -0
  29. data/test/dummy/config/routes.rb +58 -0
  30. data/test/dummy/db/development.sqlite3 +0 -0
  31. data/test/dummy/db/migrate/20110731204706_create_users.rb +10 -0
  32. data/test/dummy/db/schema.rb +24 -0
  33. data/test/dummy/db/test.sqlite3 +0 -0
  34. data/test/dummy/log/development.log +66 -0
  35. data/test/dummy/log/test.log +229 -0
  36. data/test/dummy/public/404.html +26 -0
  37. data/test/dummy/public/422.html +26 -0
  38. data/test/dummy/public/500.html +26 -0
  39. data/test/dummy/public/favicon.ico +0 -0
  40. data/test/dummy/script/rails +6 -0
  41. data/test/dummy/test/fixtures/users.yml +7 -0
  42. data/test/dummy/test/unit/user_test.rb +7 -0
  43. data/test/masked-identifier_test.rb +46 -0
  44. data/test/test_helper.rb +10 -0
  45. metadata +135 -0
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/404.html -->
21
+ <div class="dialog">
22
+ <h1>The page you were looking for doesn't exist.</h1>
23
+ <p>You may have mistyped the address or the page may have moved.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/422.html -->
21
+ <div class="dialog">
22
+ <h1>The change you wanted was rejected.</h1>
23
+ <p>Maybe you tried to change something you didn't have access to.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/500.html -->
21
+ <div class="dialog">
22
+ <h1>We're sorry, but something went wrong.</h1>
23
+ <p>We've been notified about this issue and we'll take a look at it shortly.</p>
24
+ </div>
25
+ </body>
26
+ </html>
File without changes
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
@@ -0,0 +1,7 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/Fixtures.html
2
+
3
+ one:
4
+ masked_identifier: MyString
5
+
6
+ two:
7
+ masked_identifier: MyString
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class UserTest < ActiveSupport::TestCase
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
@@ -0,0 +1,46 @@
1
+ require 'test_helper'
2
+
3
+ class MaskedIdentifierTest < ActiveSupport::TestCase
4
+ test 'masked identifier added to ActiveRecord object' do
5
+ User.has_masked_identifier
6
+ user = User.create!
7
+ assert !user.masked_identifier.nil?
8
+ end
9
+
10
+ test 'masked identifier is the specified length' do
11
+ User.has_masked_identifier length: 6
12
+ user = User.create!
13
+ assert user.masked_identifier.length == 6
14
+ end
15
+
16
+ test 'masked identifier uses the provided charset' do
17
+ charset = %w{ a b c d }
18
+ User.has_masked_identifier charset: charset
19
+ user = User.create!
20
+ user.masked_identifier.each_char do |c|
21
+ assert charset.include? c
22
+ end
23
+ end
24
+
25
+ test 'masked identifier uses non-standard property' do
26
+ User.has_masked_identifier property: 'mid'
27
+ user = User.create!
28
+ assert !user.mid.nil?
29
+ end
30
+
31
+ test 'masked identifier throws error for missing property' do
32
+ User.has_masked_identifier property: 'missing_property'
33
+ assert_raise User::InvalidProperty do
34
+ user = User.create!
35
+ end
36
+ end
37
+
38
+ test 'masked identifier throws error if it fails to find a unique code' do
39
+ charset = %w{ a }
40
+ User.has_masked_identifier charset: charset, length: 1
41
+ User.create!
42
+ assert_raise CodeGenerator::TooManyFailedAttempts do
43
+ User.create!
44
+ end
45
+ end
46
+ end
@@ -0,0 +1,10 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ require File.expand_path("../dummy/config/environment.rb", __FILE__)
5
+ require "rails/test_help"
6
+
7
+ Rails.backtrace_cleaner.remove_silencers!
8
+
9
+ # Load support files
10
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
metadata ADDED
@@ -0,0 +1,135 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: masked-identifier
3
+ version: !ruby/object:Gem::Version
4
+ prerelease:
5
+ version: 0.0.2
6
+ platform: ruby
7
+ authors:
8
+ - Matt Hodan
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2011-08-01 00:00:00 Z
14
+ dependencies: []
15
+
16
+ description: Automatically adds a masked identifier to an ActiveRecord object on create. Default assumes the ActiveRecord object contains a property called 'masked_identifier', which should be added to your database migration. Don't forget to add an index on this column!
17
+ email:
18
+ - matthew.c.hodan@gmail.com
19
+ executables: []
20
+
21
+ extensions: []
22
+
23
+ extra_rdoc_files: []
24
+
25
+ files:
26
+ - lib/code-generator.rb
27
+ - lib/masked-identifier.rb
28
+ - lib/tasks/masked-identifier_tasks.rake
29
+ - MIT-LICENSE
30
+ - Rakefile
31
+ - README.txt
32
+ - test/dummy/app/assets/javascripts/application.js
33
+ - test/dummy/app/assets/stylesheets/application.css
34
+ - test/dummy/app/controllers/application_controller.rb
35
+ - test/dummy/app/helpers/application_helper.rb
36
+ - test/dummy/app/models/user.rb
37
+ - test/dummy/app/views/layouts/application.html.erb
38
+ - test/dummy/config/application.rb
39
+ - test/dummy/config/boot.rb
40
+ - test/dummy/config/database.yml
41
+ - test/dummy/config/environment.rb
42
+ - test/dummy/config/environments/development.rb
43
+ - test/dummy/config/environments/production.rb
44
+ - test/dummy/config/environments/test.rb
45
+ - test/dummy/config/initializers/backtrace_silencers.rb
46
+ - test/dummy/config/initializers/inflections.rb
47
+ - test/dummy/config/initializers/mime_types.rb
48
+ - test/dummy/config/initializers/secret_token.rb
49
+ - test/dummy/config/initializers/session_store.rb
50
+ - test/dummy/config/initializers/wrap_parameters.rb
51
+ - test/dummy/config/locales/en.yml
52
+ - test/dummy/config/routes.rb
53
+ - test/dummy/config.ru
54
+ - test/dummy/db/development.sqlite3
55
+ - test/dummy/db/migrate/20110731204706_create_users.rb
56
+ - test/dummy/db/schema.rb
57
+ - test/dummy/db/test.sqlite3
58
+ - test/dummy/log/development.log
59
+ - test/dummy/log/test.log
60
+ - test/dummy/public/404.html
61
+ - test/dummy/public/422.html
62
+ - test/dummy/public/500.html
63
+ - test/dummy/public/favicon.ico
64
+ - test/dummy/Rakefile
65
+ - test/dummy/script/rails
66
+ - test/dummy/test/fixtures/users.yml
67
+ - test/dummy/test/unit/user_test.rb
68
+ - test/masked-identifier_test.rb
69
+ - test/test_helper.rb
70
+ homepage: http://blog.matthodan.com/
71
+ licenses: []
72
+
73
+ post_install_message:
74
+ rdoc_options: []
75
+
76
+ require_paths:
77
+ - lib
78
+ required_ruby_version: !ruby/object:Gem::Requirement
79
+ none: false
80
+ requirements:
81
+ - - ">="
82
+ - !ruby/object:Gem::Version
83
+ version: "0"
84
+ required_rubygems_version: !ruby/object:Gem::Requirement
85
+ none: false
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: "0"
90
+ requirements: []
91
+
92
+ rubyforge_project:
93
+ rubygems_version: 1.8.6
94
+ signing_key:
95
+ specification_version: 3
96
+ summary: Use a masked identifier as a not-incrementing reference to an ActiveRecord object
97
+ test_files:
98
+ - test/dummy/app/assets/javascripts/application.js
99
+ - test/dummy/app/assets/stylesheets/application.css
100
+ - test/dummy/app/controllers/application_controller.rb
101
+ - test/dummy/app/helpers/application_helper.rb
102
+ - test/dummy/app/models/user.rb
103
+ - test/dummy/app/views/layouts/application.html.erb
104
+ - test/dummy/config/application.rb
105
+ - test/dummy/config/boot.rb
106
+ - test/dummy/config/database.yml
107
+ - test/dummy/config/environment.rb
108
+ - test/dummy/config/environments/development.rb
109
+ - test/dummy/config/environments/production.rb
110
+ - test/dummy/config/environments/test.rb
111
+ - test/dummy/config/initializers/backtrace_silencers.rb
112
+ - test/dummy/config/initializers/inflections.rb
113
+ - test/dummy/config/initializers/mime_types.rb
114
+ - test/dummy/config/initializers/secret_token.rb
115
+ - test/dummy/config/initializers/session_store.rb
116
+ - test/dummy/config/initializers/wrap_parameters.rb
117
+ - test/dummy/config/locales/en.yml
118
+ - test/dummy/config/routes.rb
119
+ - test/dummy/config.ru
120
+ - test/dummy/db/development.sqlite3
121
+ - test/dummy/db/migrate/20110731204706_create_users.rb
122
+ - test/dummy/db/schema.rb
123
+ - test/dummy/db/test.sqlite3
124
+ - test/dummy/log/development.log
125
+ - test/dummy/log/test.log
126
+ - test/dummy/public/404.html
127
+ - test/dummy/public/422.html
128
+ - test/dummy/public/500.html
129
+ - test/dummy/public/favicon.ico
130
+ - test/dummy/Rakefile
131
+ - test/dummy/script/rails
132
+ - test/dummy/test/fixtures/users.yml
133
+ - test/dummy/test/unit/user_test.rb
134
+ - test/masked-identifier_test.rb
135
+ - test/test_helper.rb