momm 0.0.7 → 1.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 (73) hide show
  1. checksums.yaml +7 -0
  2. data/.rspec +1 -0
  3. data/README.md +11 -8
  4. data/bin/momm +3 -1
  5. data/examples/rack_app/Gemfile +1 -0
  6. data/examples/rack_app/config.ru +3 -1
  7. data/lib/momm/memcached.rb +12 -4
  8. data/lib/momm/redis_store.rb +12 -4
  9. data/lib/momm/storage.rb +3 -7
  10. data/lib/momm/version.rb +1 -1
  11. data/lib/momm/web.rb +1 -1
  12. data/momm.gemspec +4 -4
  13. data/spec/momm/bridge_spec.rb +5 -5
  14. data/spec/momm/calculator_spec.rb +16 -16
  15. data/spec/momm/feeds/ecb_spec.rb +9 -9
  16. data/spec/momm/memcached_spec.rb +9 -5
  17. data/spec/momm/momm_spec.rb +10 -10
  18. data/spec/momm/redis_store_spec.rb +9 -7
  19. data/spec/momm/storage_spec.rb +8 -8
  20. data/spec/momm/version_spec.rb +2 -2
  21. data/spec/momm/web_spec.rb +4 -2
  22. data/spec/spec_helper.rb +5 -4
  23. metadata +46 -115
  24. data/examples/rails_app/.gitignore +0 -16
  25. data/examples/rails_app/Gemfile +0 -12
  26. data/examples/rails_app/README.rdoc +0 -28
  27. data/examples/rails_app/Rakefile +0 -6
  28. data/examples/rails_app/app/assets/images/.keep +0 -0
  29. data/examples/rails_app/app/assets/javascripts/application.js +0 -16
  30. data/examples/rails_app/app/assets/javascripts/pages.js +0 -2
  31. data/examples/rails_app/app/assets/stylesheets/application.css +0 -13
  32. data/examples/rails_app/app/assets/stylesheets/pages.css +0 -4
  33. data/examples/rails_app/app/controllers/application_controller.rb +0 -5
  34. data/examples/rails_app/app/controllers/concerns/.keep +0 -0
  35. data/examples/rails_app/app/controllers/pages_controller.rb +0 -4
  36. data/examples/rails_app/app/helpers/application_helper.rb +0 -2
  37. data/examples/rails_app/app/helpers/pages_helper.rb +0 -2
  38. data/examples/rails_app/app/mailers/.keep +0 -0
  39. data/examples/rails_app/app/models/.keep +0 -0
  40. data/examples/rails_app/app/models/concerns/.keep +0 -0
  41. data/examples/rails_app/app/views/layouts/application.html.erb +0 -14
  42. data/examples/rails_app/app/views/pages/say_hello.html.slim +0 -20
  43. data/examples/rails_app/bin/bundle +0 -3
  44. data/examples/rails_app/bin/rails +0 -4
  45. data/examples/rails_app/bin/rake +0 -4
  46. data/examples/rails_app/config.ru +0 -4
  47. data/examples/rails_app/config/application.rb +0 -28
  48. data/examples/rails_app/config/boot.rb +0 -4
  49. data/examples/rails_app/config/environment.rb +0 -5
  50. data/examples/rails_app/config/environments/development.rb +0 -26
  51. data/examples/rails_app/config/environments/production.rb +0 -80
  52. data/examples/rails_app/config/environments/test.rb +0 -36
  53. data/examples/rails_app/config/initializers/backtrace_silencers.rb +0 -7
  54. data/examples/rails_app/config/initializers/filter_parameter_logging.rb +0 -4
  55. data/examples/rails_app/config/initializers/inflections.rb +0 -16
  56. data/examples/rails_app/config/initializers/mime_types.rb +0 -5
  57. data/examples/rails_app/config/initializers/momm_initializer.rb +0 -3
  58. data/examples/rails_app/config/initializers/secret_token.rb +0 -12
  59. data/examples/rails_app/config/initializers/session_store.rb +0 -3
  60. data/examples/rails_app/config/initializers/wrap_parameters.rb +0 -9
  61. data/examples/rails_app/config/locales/en.yml +0 -23
  62. data/examples/rails_app/config/routes.rb +0 -7
  63. data/examples/rails_app/db/seeds.rb +0 -7
  64. data/examples/rails_app/lib/assets/.keep +0 -0
  65. data/examples/rails_app/lib/tasks/.keep +0 -0
  66. data/examples/rails_app/log/.keep +0 -0
  67. data/examples/rails_app/public/404.html +0 -58
  68. data/examples/rails_app/public/422.html +0 -58
  69. data/examples/rails_app/public/500.html +0 -57
  70. data/examples/rails_app/public/favicon.ico +0 -0
  71. data/examples/rails_app/public/robots.txt +0 -5
  72. data/examples/rails_app/vendor/assets/javascripts/.keep +0 -0
  73. data/examples/rails_app/vendor/assets/stylesheets/.keep +0 -0
@@ -1,7 +0,0 @@
1
- require 'momm/web'
2
-
3
- Myapp::Application.routes.draw do
4
- root 'pages#say_hello'
5
-
6
- mount Momm::Web => '/momm'
7
- end
@@ -1,7 +0,0 @@
1
- # This file should contain all the record creation needed to seed the database with its default values.
2
- # The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
3
- #
4
- # Examples:
5
- #
6
- # cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }])
7
- # Mayor.create(name: 'Emanuel', city: cities.first)
File without changes
File without changes
File without changes
@@ -1,58 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <title>The page you were looking for doesn't exist (404)</title>
5
- <style>
6
- body {
7
- background-color: #EFEFEF;
8
- color: #2E2F30;
9
- text-align: center;
10
- font-family: arial, sans-serif;
11
- }
12
-
13
- div.dialog {
14
- width: 25em;
15
- margin: 4em auto 0 auto;
16
- border: 1px solid #CCC;
17
- border-right-color: #999;
18
- border-left-color: #999;
19
- border-bottom-color: #BBB;
20
- border-top: #B00100 solid 4px;
21
- border-top-left-radius: 9px;
22
- border-top-right-radius: 9px;
23
- background-color: white;
24
- padding: 7px 4em 0 4em;
25
- }
26
-
27
- h1 {
28
- font-size: 100%;
29
- color: #730E15;
30
- line-height: 1.5em;
31
- }
32
-
33
- body > p {
34
- width: 33em;
35
- margin: 0 auto 1em;
36
- padding: 1em 0;
37
- background-color: #F7F7F7;
38
- border: 1px solid #CCC;
39
- border-right-color: #999;
40
- border-bottom-color: #999;
41
- border-bottom-left-radius: 4px;
42
- border-bottom-right-radius: 4px;
43
- border-top-color: #DADADA;
44
- color: #666;
45
- box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
- }
47
- </style>
48
- </head>
49
-
50
- <body>
51
- <!-- This file lives in public/404.html -->
52
- <div class="dialog">
53
- <h1>The page you were looking for doesn't exist.</h1>
54
- <p>You may have mistyped the address or the page may have moved.</p>
55
- </div>
56
- <p>If you are the application owner check the logs for more information.</p>
57
- </body>
58
- </html>
@@ -1,58 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <title>The change you wanted was rejected (422)</title>
5
- <style>
6
- body {
7
- background-color: #EFEFEF;
8
- color: #2E2F30;
9
- text-align: center;
10
- font-family: arial, sans-serif;
11
- }
12
-
13
- div.dialog {
14
- width: 25em;
15
- margin: 4em auto 0 auto;
16
- border: 1px solid #CCC;
17
- border-right-color: #999;
18
- border-left-color: #999;
19
- border-bottom-color: #BBB;
20
- border-top: #B00100 solid 4px;
21
- border-top-left-radius: 9px;
22
- border-top-right-radius: 9px;
23
- background-color: white;
24
- padding: 7px 4em 0 4em;
25
- }
26
-
27
- h1 {
28
- font-size: 100%;
29
- color: #730E15;
30
- line-height: 1.5em;
31
- }
32
-
33
- body > p {
34
- width: 33em;
35
- margin: 0 auto 1em;
36
- padding: 1em 0;
37
- background-color: #F7F7F7;
38
- border: 1px solid #CCC;
39
- border-right-color: #999;
40
- border-bottom-color: #999;
41
- border-bottom-left-radius: 4px;
42
- border-bottom-right-radius: 4px;
43
- border-top-color: #DADADA;
44
- color: #666;
45
- box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
- }
47
- </style>
48
- </head>
49
-
50
- <body>
51
- <!-- This file lives in public/422.html -->
52
- <div class="dialog">
53
- <h1>The change you wanted was rejected.</h1>
54
- <p>Maybe you tried to change something you didn't have access to.</p>
55
- </div>
56
- <p>If you are the application owner check the logs for more information.</p>
57
- </body>
58
- </html>
@@ -1,57 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <title>We're sorry, but something went wrong (500)</title>
5
- <style>
6
- body {
7
- background-color: #EFEFEF;
8
- color: #2E2F30;
9
- text-align: center;
10
- font-family: arial, sans-serif;
11
- }
12
-
13
- div.dialog {
14
- width: 25em;
15
- margin: 4em auto 0 auto;
16
- border: 1px solid #CCC;
17
- border-right-color: #999;
18
- border-left-color: #999;
19
- border-bottom-color: #BBB;
20
- border-top: #B00100 solid 4px;
21
- border-top-left-radius: 9px;
22
- border-top-right-radius: 9px;
23
- background-color: white;
24
- padding: 7px 4em 0 4em;
25
- }
26
-
27
- h1 {
28
- font-size: 100%;
29
- color: #730E15;
30
- line-height: 1.5em;
31
- }
32
-
33
- body > p {
34
- width: 33em;
35
- margin: 0 auto 1em;
36
- padding: 1em 0;
37
- background-color: #F7F7F7;
38
- border: 1px solid #CCC;
39
- border-right-color: #999;
40
- border-bottom-color: #999;
41
- border-bottom-left-radius: 4px;
42
- border-bottom-right-radius: 4px;
43
- border-top-color: #DADADA;
44
- color: #666;
45
- box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
- }
47
- </style>
48
- </head>
49
-
50
- <body>
51
- <!-- This file lives in public/500.html -->
52
- <div class="dialog">
53
- <h1>We're sorry, but something went wrong.</h1>
54
- </div>
55
- <p>If you are the application owner check the logs for more information.</p>
56
- </body>
57
- </html>
File without changes
@@ -1,5 +0,0 @@
1
- # See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
2
- #
3
- # To ban all spiders from the entire site uncomment the next two lines:
4
- # User-agent: *
5
- # Disallow: /