cookie_monster 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (66) hide show
  1. data/.gitignore +1 -0
  2. data/README.md +39 -0
  3. data/Rakefile +16 -0
  4. data/cookie_monster.gemspec +14 -0
  5. data/examples/test_app/.gitignore +15 -0
  6. data/examples/test_app/Gemfile +40 -0
  7. data/examples/test_app/Gemfile.lock +117 -0
  8. data/examples/test_app/README.rdoc +261 -0
  9. data/examples/test_app/Rakefile +7 -0
  10. data/examples/test_app/app/assets/images/rails.png +0 -0
  11. data/examples/test_app/app/assets/javascripts/application.js +15 -0
  12. data/examples/test_app/app/assets/stylesheets/application.css +13 -0
  13. data/examples/test_app/app/controllers/application_controller.rb +15 -0
  14. data/examples/test_app/app/helpers/application_helper.rb +2 -0
  15. data/examples/test_app/app/mailers/.gitkeep +0 -0
  16. data/examples/test_app/app/models/.gitkeep +0 -0
  17. data/examples/test_app/app/views/layouts/application.html.erb +14 -0
  18. data/examples/test_app/config/application.rb +62 -0
  19. data/examples/test_app/config/boot.rb +6 -0
  20. data/examples/test_app/config/database.yml +25 -0
  21. data/examples/test_app/config/environment.rb +5 -0
  22. data/examples/test_app/config/environments/development.rb +37 -0
  23. data/examples/test_app/config/environments/production.rb +67 -0
  24. data/examples/test_app/config/environments/test.rb +37 -0
  25. data/examples/test_app/config/initializers/backtrace_silencers.rb +7 -0
  26. data/examples/test_app/config/initializers/cookie_monster.rb +4 -0
  27. data/examples/test_app/config/initializers/inflections.rb +15 -0
  28. data/examples/test_app/config/initializers/mime_types.rb +5 -0
  29. data/examples/test_app/config/initializers/secret_token.rb +7 -0
  30. data/examples/test_app/config/initializers/session_store.rb +8 -0
  31. data/examples/test_app/config/initializers/wrap_parameters.rb +14 -0
  32. data/examples/test_app/config/locales/en.yml +5 -0
  33. data/examples/test_app/config/routes.rb +5 -0
  34. data/examples/test_app/config.ru +4 -0
  35. data/examples/test_app/db/seeds.rb +7 -0
  36. data/examples/test_app/doc/README_FOR_APP +2 -0
  37. data/examples/test_app/lib/assets/.gitkeep +0 -0
  38. data/examples/test_app/lib/tasks/.gitkeep +0 -0
  39. data/examples/test_app/log/.gitkeep +0 -0
  40. data/examples/test_app/public/404.html +26 -0
  41. data/examples/test_app/public/422.html +26 -0
  42. data/examples/test_app/public/500.html +25 -0
  43. data/examples/test_app/public/favicon.ico +0 -0
  44. data/examples/test_app/public/robots.txt +5 -0
  45. data/examples/test_app/script/rails +6 -0
  46. data/examples/test_app/test/fixtures/.gitkeep +0 -0
  47. data/examples/test_app/test/functional/.gitkeep +0 -0
  48. data/examples/test_app/test/integration/.gitkeep +0 -0
  49. data/examples/test_app/test/performance/browsing_test.rb +12 -0
  50. data/examples/test_app/test/test_helper.rb +13 -0
  51. data/examples/test_app/test/unit/.gitkeep +0 -0
  52. data/examples/test_app/vendor/assets/javascripts/.gitkeep +0 -0
  53. data/examples/test_app/vendor/assets/stylesheets/.gitkeep +0 -0
  54. data/examples/test_app/vendor/plugins/.gitkeep +0 -0
  55. data/lib/cookie_monster/base.rb +9 -0
  56. data/lib/cookie_monster/configuration.rb +9 -0
  57. data/lib/cookie_monster/encryption.rb +28 -0
  58. data/lib/cookie_monster/jar.rb +43 -0
  59. data/lib/cookie_monster/rails.rb +9 -0
  60. data/lib/cookie_monster/version.rb +3 -0
  61. data/lib/cookie_monster.rb +18 -0
  62. data/test/cookie_monster/test_encryption.rb +10 -0
  63. data/test/cookie_monster/test_jar.rb +45 -0
  64. data/test/test_cookie_monster.rb +17 -0
  65. data/test/test_helper.rb +7 -0
  66. metadata +109 -0
metadata ADDED
@@ -0,0 +1,109 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cookie_monster
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Dylan Griffin
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-05-13 00:00:00.000000000 Z
13
+ dependencies: []
14
+ description: A simple gem to encrypt cookies for ruby applications.
15
+ email: dylan@dylangriff.in
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - .gitignore
21
+ - README.md
22
+ - Rakefile
23
+ - cookie_monster.gemspec
24
+ - examples/test_app/.gitignore
25
+ - examples/test_app/Gemfile
26
+ - examples/test_app/Gemfile.lock
27
+ - examples/test_app/README.rdoc
28
+ - examples/test_app/Rakefile
29
+ - examples/test_app/app/assets/images/rails.png
30
+ - examples/test_app/app/assets/javascripts/application.js
31
+ - examples/test_app/app/assets/stylesheets/application.css
32
+ - examples/test_app/app/controllers/application_controller.rb
33
+ - examples/test_app/app/helpers/application_helper.rb
34
+ - examples/test_app/app/mailers/.gitkeep
35
+ - examples/test_app/app/models/.gitkeep
36
+ - examples/test_app/app/views/layouts/application.html.erb
37
+ - examples/test_app/config.ru
38
+ - examples/test_app/config/application.rb
39
+ - examples/test_app/config/boot.rb
40
+ - examples/test_app/config/database.yml
41
+ - examples/test_app/config/environment.rb
42
+ - examples/test_app/config/environments/development.rb
43
+ - examples/test_app/config/environments/production.rb
44
+ - examples/test_app/config/environments/test.rb
45
+ - examples/test_app/config/initializers/backtrace_silencers.rb
46
+ - examples/test_app/config/initializers/cookie_monster.rb
47
+ - examples/test_app/config/initializers/inflections.rb
48
+ - examples/test_app/config/initializers/mime_types.rb
49
+ - examples/test_app/config/initializers/secret_token.rb
50
+ - examples/test_app/config/initializers/session_store.rb
51
+ - examples/test_app/config/initializers/wrap_parameters.rb
52
+ - examples/test_app/config/locales/en.yml
53
+ - examples/test_app/config/routes.rb
54
+ - examples/test_app/db/seeds.rb
55
+ - examples/test_app/doc/README_FOR_APP
56
+ - examples/test_app/lib/assets/.gitkeep
57
+ - examples/test_app/lib/tasks/.gitkeep
58
+ - examples/test_app/log/.gitkeep
59
+ - examples/test_app/public/404.html
60
+ - examples/test_app/public/422.html
61
+ - examples/test_app/public/500.html
62
+ - examples/test_app/public/favicon.ico
63
+ - examples/test_app/public/robots.txt
64
+ - examples/test_app/script/rails
65
+ - examples/test_app/test/fixtures/.gitkeep
66
+ - examples/test_app/test/functional/.gitkeep
67
+ - examples/test_app/test/integration/.gitkeep
68
+ - examples/test_app/test/performance/browsing_test.rb
69
+ - examples/test_app/test/test_helper.rb
70
+ - examples/test_app/test/unit/.gitkeep
71
+ - examples/test_app/vendor/assets/javascripts/.gitkeep
72
+ - examples/test_app/vendor/assets/stylesheets/.gitkeep
73
+ - examples/test_app/vendor/plugins/.gitkeep
74
+ - lib/cookie_monster.rb
75
+ - lib/cookie_monster/base.rb
76
+ - lib/cookie_monster/configuration.rb
77
+ - lib/cookie_monster/encryption.rb
78
+ - lib/cookie_monster/jar.rb
79
+ - lib/cookie_monster/rails.rb
80
+ - lib/cookie_monster/version.rb
81
+ - test/cookie_monster/test_encryption.rb
82
+ - test/cookie_monster/test_jar.rb
83
+ - test/test_cookie_monster.rb
84
+ - test/test_helper.rb
85
+ homepage: https://shareaholic.com
86
+ licenses: []
87
+ post_install_message:
88
+ rdoc_options: []
89
+ require_paths:
90
+ - lib
91
+ required_ruby_version: !ruby/object:Gem::Requirement
92
+ none: false
93
+ requirements:
94
+ - - ! '>='
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ required_rubygems_version: !ruby/object:Gem::Requirement
98
+ none: false
99
+ requirements:
100
+ - - ! '>='
101
+ - !ruby/object:Gem::Version
102
+ version: '0'
103
+ requirements: []
104
+ rubyforge_project:
105
+ rubygems_version: 1.8.24
106
+ signing_key:
107
+ specification_version: 3
108
+ summary: A simple gem to encrypt cookies for ruby applications.
109
+ test_files: []