paid_up 0.1.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 (149) hide show
  1. checksums.yaml +7 -0
  2. data/.rspec +2 -0
  3. data/.travis.yml +3 -0
  4. data/Gemfile +46 -0
  5. data/LICENSE.txt +20 -0
  6. data/MIT-LICENSE +20 -0
  7. data/README.md +64 -0
  8. data/Rakefile +48 -0
  9. data/VERSION +1 -0
  10. data/app/controllers/paid_up/paid_up_controller.rb +12 -0
  11. data/app/controllers/paid_up/plans_controller.rb +7 -0
  12. data/app/controllers/paid_up/subscriptions_controller.rb +37 -0
  13. data/app/helpers/paid_up/features_helper.rb +65 -0
  14. data/app/helpers/paid_up/paid_up_helper.rb +14 -0
  15. data/app/helpers/paid_up/plans_helper.rb +53 -0
  16. data/app/helpers/paid_up/subscriptions_helper.rb +21 -0
  17. data/app/models/ability.rb +37 -0
  18. data/app/models/paid_up/feature.rb +19 -0
  19. data/app/models/paid_up/features_plan.rb +14 -0
  20. data/app/models/paid_up/plan.rb +99 -0
  21. data/app/views/devise/confirmations/new.html.haml +13 -0
  22. data/app/views/devise/passwords/edit.html.haml +19 -0
  23. data/app/views/devise/passwords/new.html.haml +14 -0
  24. data/app/views/devise/registrations/_new_form.html.haml +23 -0
  25. data/app/views/devise/registrations/edit.html.haml +39 -0
  26. data/app/views/devise/registrations/new.html.haml +11 -0
  27. data/app/views/devise/sessions/_new_form.html.haml +21 -0
  28. data/app/views/devise/sessions/new.html.haml +11 -0
  29. data/app/views/devise/shared/_links.html.haml +14 -0
  30. data/app/views/devise/unlocks/new.html.haml +14 -0
  31. data/app/views/paid_up/features/_abilities_table.html.haml +22 -0
  32. data/app/views/paid_up/features/_table.html.haml +16 -0
  33. data/app/views/paid_up/plans/index.html.haml +18 -0
  34. data/app/views/paid_up/subscriptions/index.html.haml +16 -0
  35. data/app/views/paid_up/subscriptions/new.html.haml +101 -0
  36. data/bin/rails +12 -0
  37. data/config/initializers/stripe.rb +6 -0
  38. data/config/locales/en.yml +85 -0
  39. data/config/routes.rb +7 -0
  40. data/coverage/.last_run.json +5 -0
  41. data/coverage/.resultset.json +1488 -0
  42. data/coverage/.resultset.json.lock +0 -0
  43. data/db/migrate/20150407105900_create_paid_up_features_plans_table.rb +9 -0
  44. data/db/migrate/20150407110100_create_paid_up_features_table.rb +11 -0
  45. data/db/migrate/20150407110101_create_paid_up_plans_table.rb +14 -0
  46. data/lib/generators/paid_up/install/install_generator.rb +59 -0
  47. data/lib/generators/paid_up/install/templates/initializer.rb.erb +5 -0
  48. data/lib/generators/paid_up/utils.rb +16 -0
  49. data/lib/paid_up/configuration.rb +22 -0
  50. data/lib/paid_up/engine.rb +17 -0
  51. data/lib/paid_up/integer.rb +9 -0
  52. data/lib/paid_up/localization.rb +31 -0
  53. data/lib/paid_up/mixins.rb +139 -0
  54. data/lib/paid_up/railtie.rb +4 -0
  55. data/lib/paid_up/stripe_extensions.rb +17 -0
  56. data/lib/paid_up/table_validator.rb +9 -0
  57. data/lib/paid_up/unlimited.rb +17 -0
  58. data/lib/paid_up/version.rb +7 -0
  59. data/lib/paid_up.rb +27 -0
  60. data/paid_up.gemspec +248 -0
  61. data/spec/controllers/paid_up/plans_spec.rb +26 -0
  62. data/spec/controllers/paid_up/subscriptions_spec.rb +187 -0
  63. data/spec/dummy/README.rdoc +28 -0
  64. data/spec/dummy/Rakefile +6 -0
  65. data/spec/dummy/app/assets/javascripts/application.js +16 -0
  66. data/spec/dummy/app/assets/stylesheets/application.css.scss +16 -0
  67. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  68. data/spec/dummy/app/models/group.rb +3 -0
  69. data/spec/dummy/app/models/user.rb +9 -0
  70. data/spec/dummy/app/views/layouts/application.html.haml +31 -0
  71. data/spec/dummy/app/views/pages/index.html.haml +1 -0
  72. data/spec/dummy/bin/bundle +3 -0
  73. data/spec/dummy/bin/rails +4 -0
  74. data/spec/dummy/bin/rake +4 -0
  75. data/spec/dummy/bin/setup +29 -0
  76. data/spec/dummy/config/application.rb +32 -0
  77. data/spec/dummy/config/boot.rb +5 -0
  78. data/spec/dummy/config/database.yml +25 -0
  79. data/spec/dummy/config/environment.rb +5 -0
  80. data/spec/dummy/config/environments/development.rb +46 -0
  81. data/spec/dummy/config/environments/production.rb +79 -0
  82. data/spec/dummy/config/environments/test.rb +45 -0
  83. data/spec/dummy/config/initializers/assets.rb +11 -0
  84. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  85. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
  86. data/spec/dummy/config/initializers/devise.rb +259 -0
  87. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  88. data/spec/dummy/config/initializers/high_voltage.rb +3 -0
  89. data/spec/dummy/config/initializers/inflections.rb +16 -0
  90. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  91. data/spec/dummy/config/initializers/paid_up.rb +5 -0
  92. data/spec/dummy/config/initializers/session_store.rb +3 -0
  93. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  94. data/spec/dummy/config/locales/devise.en.yml +60 -0
  95. data/spec/dummy/config/locales/en.yml +23 -0
  96. data/spec/dummy/config/routes.rb +4 -0
  97. data/spec/dummy/config/secrets.yml +22 -0
  98. data/spec/dummy/config.ru +4 -0
  99. data/spec/dummy/db/development.sqlite3 +0 -0
  100. data/spec/dummy/db/migrate/20150406154440_create_users_table.rb +7 -0
  101. data/spec/dummy/db/migrate/20150517175135_create_groups_table.rb +11 -0
  102. data/spec/dummy/db/migrate/20150518000915_add_devise_to_users.rb +49 -0
  103. data/spec/dummy/db/migrate/20150518000917_create_paid_up_features_plans_table.paid_up.rb +10 -0
  104. data/spec/dummy/db/migrate/20150518000918_create_paid_up_features_table.paid_up.rb +12 -0
  105. data/spec/dummy/db/migrate/20150518000919_create_paid_up_plans_table.paid_up.rb +15 -0
  106. data/spec/dummy/db/migrate/20150518000920_add_stripe_id_column_to_user.rb +6 -0
  107. data/spec/dummy/db/schema.rb +75 -0
  108. data/spec/dummy/db/seeds/features.seeds.rb +19 -0
  109. data/spec/dummy/db/seeds/features_plans.seeds.rb +51 -0
  110. data/spec/dummy/db/seeds/plans.seeds.rb +91 -0
  111. data/spec/dummy/db/seeds.rb +0 -0
  112. data/spec/dummy/db/test.sqlite3 +0 -0
  113. data/spec/dummy/lib/assets/.keep +0 -0
  114. data/spec/dummy/log/.keep +0 -0
  115. data/spec/dummy/log/development.log +108393 -0
  116. data/spec/dummy/public/404.html +67 -0
  117. data/spec/dummy/public/422.html +67 -0
  118. data/spec/dummy/public/500.html +66 -0
  119. data/spec/dummy/public/assets/.sprockets-manifest-34b01376fc56586f4f4fd19e7b1c0e35.json +1 -0
  120. data/spec/dummy/public/assets/application-27f004bb902952dbbaad25f0f28c312f29ffee315c94fa51dea6b5ec6dc993e6.css +13 -0
  121. data/spec/dummy/public/assets/application-3a226fbacd7ba9a2b9f7972fafdd7b2486c34707d96a60c26f3bbe4579c29ca6.js +116 -0
  122. data/spec/dummy/public/assets/bootstrap/glyphicons-halflings-regular-13634da87d9e23f8c3ed9108ce1724d183a39ad072e73e1b3d8cbf646d2d0407.eot +0 -0
  123. data/spec/dummy/public/assets/bootstrap/glyphicons-halflings-regular-42f60659d265c1a3c30f9fa42abcbb56bd4a53af4d83d316d6dd7a36903c43e5.svg +288 -0
  124. data/spec/dummy/public/assets/bootstrap/glyphicons-halflings-regular-a26394f7ede100ca118eff2eda08596275a9839b959c226e15439557a5a80742.woff +0 -0
  125. data/spec/dummy/public/assets/bootstrap/glyphicons-halflings-regular-e395044093757d82afcb138957d06a1ea9361bdcf0b442d06a18a8051af57456.ttf +0 -0
  126. data/spec/dummy/public/assets/bootstrap/glyphicons-halflings-regular-fe185d11a49676890d47bb783312a0cda5a44c4039214094e7957b4c040ef11c.woff2 +0 -0
  127. data/spec/dummy/public/favicon.ico +0 -0
  128. data/spec/dummy/test/controllers/plans_controller_controller_test.rb +7 -0
  129. data/spec/factories/feature.rb +7 -0
  130. data/spec/factories/features_plan.rb +7 -0
  131. data/spec/factories/plan.rb +7 -0
  132. data/spec/factories/user.rb +7 -0
  133. data/spec/models/paid_up/feature_spec.rb +21 -0
  134. data/spec/models/paid_up/features_plan_spec.rb +7 -0
  135. data/spec/models/paid_up/plan_spec.rb +156 -0
  136. data/spec/models/user_spec.rb +304 -0
  137. data/spec/paid_up_spec.rb +7 -0
  138. data/spec/rails_helper.rb +65 -0
  139. data/spec/routing/paid_up/plans_spec.rb +11 -0
  140. data/spec/routing/paid_up/subscription_spec.rb +23 -0
  141. data/spec/spec_helper.rb +87 -0
  142. data/spec/support/controller_macros.rb +12 -0
  143. data/spec/support/factory_girl.rb +3 -0
  144. data/spec/support/plans_and_features.rb +209 -0
  145. data/spec/support/stripe.rb +23 -0
  146. data/spec/support/subscribers.rb +44 -0
  147. data/spec/views/paid_up/plans_spec.rb +54 -0
  148. data/spec/views/paid_up/subscriptions_spec.rb +58 -0
  149. metadata +488 -0
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/404.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The page you were looking for doesn't exist.</h1>
62
+ <p>You may have mistyped the address or the page may have moved.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/422.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The change you wanted was rejected.</h1>
62
+ <p>Maybe you tried to change something you didn't have access to.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,66 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/500.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>We're sorry, but something went wrong.</h1>
62
+ </div>
63
+ <p>If you are the application owner check the logs for more information.</p>
64
+ </div>
65
+ </body>
66
+ </html>
@@ -0,0 +1 @@
1
+ {"files":{"bootswatch/amelia/theme-298ec287e82844ccb07a16641717f9fcbc3674f47459064871863b9b9c9d6480.css":{"logical_path":"bootswatch/amelia/theme.css","mtime":"2015-04-14T10:53:32-06:00","size":148104,"digest":"298ec287e82844ccb07a16641717f9fcbc3674f47459064871863b9b9c9d6480","integrity":"ni:///sha-256;KY7Ch-goRMywehZkFxf5_Lw2dPR0WQZIcYY7m5ydZIA?ct=text/css"},"bootswatch/cerulean/theme-d84c0daeef253e3fa20ec49abaf94d684365605d59ea6828d2733be41c1642fe.css":{"logical_path":"bootswatch/cerulean/theme.css","mtime":"2015-04-14T10:53:32-06:00","size":151918,"digest":"d84c0daeef253e3fa20ec49abaf94d684365605d59ea6828d2733be41c1642fe","integrity":"ni:///sha-256;2EwNru8lPj-iDsSauvlNaENlYF1Z6mgo0nM75BwWQv4?ct=text/css"},"bootswatch/cosmo/theme-e59f587c2a8e9bb613f13fc688d508a4968595939ab073f92a4788caca4de00b.css":{"logical_path":"bootswatch/cosmo/theme.css","mtime":"2015-04-14T10:53:32-06:00","size":148208,"digest":"e59f587c2a8e9bb613f13fc688d508a4968595939ab073f92a4788caca4de00b","integrity":"ni:///sha-256;5Z9YfCqOm7YT8T_GiNUIpJaFlZOasHP5KkeIyspN4As?ct=text/css"},"bootswatch/custom/theme-0f08785f48fc93de8a11b09b2447bd88a6311d361a2c1aac7beaa854540e8e09.css":{"logical_path":"bootswatch/custom/theme.css","mtime":"2015-04-14T10:53:32-06:00","size":146834,"digest":"0f08785f48fc93de8a11b09b2447bd88a6311d361a2c1aac7beaa854540e8e09","integrity":"ni:///sha-256;Dwh4X0j8k96KEbCbJEe9iKYxHTYaLBqse-qoVFQOjgk?ct=text/css"},"bootswatch/cyborg/theme-527706cfcca3eea56a398a07bc4721cf70858aa07dd38caeae97d0b31737b657.css":{"logical_path":"bootswatch/cyborg/theme.css","mtime":"2015-04-14T10:53:32-06:00","size":148267,"digest":"527706cfcca3eea56a398a07bc4721cf70858aa07dd38caeae97d0b31737b657","integrity":"ni:///sha-256;UncGz8yj7qVqOYoHvEchz3CFiqB904yurpfQsxc3tlc?ct=text/css"},"bootswatch/darkly/theme-f6085dec90d181584c269c34e7024533f1d54ff6760096a2f5289277d2a40ae3.css":{"logical_path":"bootswatch/darkly/theme.css","mtime":"2015-04-14T10:53:32-06:00","size":150970,"digest":"f6085dec90d181584c269c34e7024533f1d54ff6760096a2f5289277d2a40ae3","integrity":"ni:///sha-256;9ghd7JDRgVhMJpw05wJFM_HVT_Z2AJai9SiSd9KkCuM?ct=text/css"},"bootswatch/flatly/theme-7c0a2221513115fcbcab1b2c9401fe146655ead6a6214524f5f7ec2526863586.css":{"logical_path":"bootswatch/flatly/theme.css","mtime":"2015-04-14T10:53:32-06:00","size":149666,"digest":"7c0a2221513115fcbcab1b2c9401fe146655ead6a6214524f5f7ec2526863586","integrity":"ni:///sha-256;fAoiIVExFfy8qxsslAH-FGZV6tamIUUk9ffsJSaGNYY?ct=text/css"},"bootswatch/journal/theme-d16866e8d76f57ca6e875a9e61d3901c48d4845d246f4cfad171926f449b03f6.css":{"logical_path":"bootswatch/journal/theme.css","mtime":"2015-04-14T10:53:32-06:00","size":148193,"digest":"d16866e8d76f57ca6e875a9e61d3901c48d4845d246f4cfad171926f449b03f6","integrity":"ni:///sha-256;0Whm6NdvV8puh1qeYdOQHEjUhF0kb0z60XGSb0SbA_Y?ct=text/css"},"bootswatch/readable/theme-17abbf5fd17bb99a0efb1e09760f30f7b8c801fd07150cb80c7c5587f5d0424c.css":{"logical_path":"bootswatch/readable/theme.css","mtime":"2015-04-14T10:53:32-06:00","size":150060,"digest":"17abbf5fd17bb99a0efb1e09760f30f7b8c801fd07150cb80c7c5587f5d0424c","integrity":"ni:///sha-256;F6u_X9F7uZoO-x4Jdg8w97jIAf0HFQy4DHxVh_XQQkw?ct=text/css"},"bootswatch/simplex/theme-56ab5dec509e8291093015f2f24ebf0512bc7125232d93b5ab3cccb3183013e5.css":{"logical_path":"bootswatch/simplex/theme.css","mtime":"2015-04-14T10:53:32-06:00","size":150752,"digest":"56ab5dec509e8291093015f2f24ebf0512bc7125232d93b5ab3cccb3183013e5","integrity":"ni:///sha-256;Vqtd7FCegpEJMBXy8k6_BRK8cSUjLZO1qzzMsxgwE-U?ct=text/css"},"bootswatch/slate/theme-40b3e9ff325e06002b3bbaa74ee1e68ca394c50c1d20ad71481feb5f8705d72d.css":{"logical_path":"bootswatch/slate/theme.css","mtime":"2015-04-27T12:34:41-06:00","size":161238,"digest":"40b3e9ff325e06002b3bbaa74ee1e68ca394c50c1d20ad71481feb5f8705d72d","integrity":"ni:///sha-256;QLPp_zJeBgArO7qnTuHmjKOUxQwdIK1xSB_rX4cF1y0?ct=text/css"},"bootswatch/spacelab/theme-a4f2a1db2ffe0a65a95f005a300a5000b7d3bbb336d3ac0598c71d763869cc01.css":{"logical_path":"bootswatch/spacelab/theme.css","mtime":"2015-04-14T10:53:32-06:00","size":151555,"digest":"a4f2a1db2ffe0a65a95f005a300a5000b7d3bbb336d3ac0598c71d763869cc01","integrity":"ni:///sha-256;pPKh2y_-CmWpXwBaMApQALfTu7M206wFmMcddjhpzAE?ct=text/css"},"bootswatch/superhero/theme-f6bfb917a249836f075771e1f3c3fccf6a540ad8ee4c8cb265e1f38a0a6bef81.css":{"logical_path":"bootswatch/superhero/theme.css","mtime":"2015-04-14T10:53:32-06:00","size":151223,"digest":"f6bfb917a249836f075771e1f3c3fccf6a540ad8ee4c8cb265e1f38a0a6bef81","integrity":"ni:///sha-256;9r-5F6JJg28HV3Hh88P8z2pUCtjuTIyyZeHzigpr74E?ct=text/css"},"bootswatch/united/theme-46e900fb40e92dc76996969f248216efbb9f8a2dbb7b7fb094c403a165ccd0c1.css":{"logical_path":"bootswatch/united/theme.css","mtime":"2015-04-14T10:53:32-06:00","size":147123,"digest":"46e900fb40e92dc76996969f248216efbb9f8a2dbb7b7fb094c403a165ccd0c1","integrity":"ni:///sha-256;RukA-0DpLcdplpafJIIW77ufii27e3-wlMQDoWXM0ME?ct=text/css"},"bootswatch/yeti/theme-2d47d541f6b14fe2475769a3e7819311aba0f344a628e5f37f48f29421251ac5.css":{"logical_path":"bootswatch/yeti/theme.css","mtime":"2015-04-14T10:53:32-06:00","size":153227,"digest":"2d47d541f6b14fe2475769a3e7819311aba0f344a628e5f37f48f29421251ac5","integrity":"ni:///sha-256;LUfVQfaxT-JHV2mj54GTEaug80SmKOXzf0jylCElGsU?ct=text/css"},"application-3a226fbacd7ba9a2b9f7972fafdd7b2486c34707d96a60c26f3bbe4579c29ca6.js":{"logical_path":"application.js","mtime":"2015-04-26T09:11:46-06:00","size":145763,"digest":"3a226fbacd7ba9a2b9f7972fafdd7b2486c34707d96a60c26f3bbe4579c29ca6","integrity":"ni:///sha-256;OiJvus17qaK595cvr917JIbDRwfZamDCbzu-RXnCnKY?ct=application/javascript"},"application-27f004bb902952dbbaad25f0f28c312f29ffee315c94fa51dea6b5ec6dc993e6.css":{"logical_path":"application.css","mtime":"2015-04-26T08:48:05-06:00","size":512,"digest":"27f004bb902952dbbaad25f0f28c312f29ffee315c94fa51dea6b5ec6dc993e6","integrity":"ni:///sha-256;J_AEu5ApUtu6rSXw8owxLyn_7jFclPpR3qa17G3Jk-Y?ct=text/css"},"bootstrap/glyphicons-halflings-regular-13634da87d9e23f8c3ed9108ce1724d183a39ad072e73e1b3d8cbf646d2d0407.eot":{"logical_path":"bootstrap/glyphicons-halflings-regular.eot","mtime":"2008-05-25T01:00:00-06:00","size":20127,"digest":"13634da87d9e23f8c3ed9108ce1724d183a39ad072e73e1b3d8cbf646d2d0407","integrity":"ni:///sha-256;E2NNqH2eI_jD7ZEIzhck0YOjmtBy5z4bPYy_ZG0tBAc?ct=application/vnd.ms-fontobject"},"bootstrap/glyphicons-halflings-regular-42f60659d265c1a3c30f9fa42abcbb56bd4a53af4d83d316d6dd7a36903c43e5.svg":{"logical_path":"bootstrap/glyphicons-halflings-regular.svg","mtime":"2008-05-25T01:00:00-06:00","size":108738,"digest":"42f60659d265c1a3c30f9fa42abcbb56bd4a53af4d83d316d6dd7a36903c43e5","integrity":"ni:///sha-256;QvYGWdJlwaPDD5-kKry7Vr1KU69Ng9MW1t16NpA8Q-U?ct=image/svg+xml"},"bootstrap/glyphicons-halflings-regular-e395044093757d82afcb138957d06a1ea9361bdcf0b442d06a18a8051af57456.ttf":{"logical_path":"bootstrap/glyphicons-halflings-regular.ttf","mtime":"2008-05-25T01:00:00-06:00","size":45404,"digest":"e395044093757d82afcb138957d06a1ea9361bdcf0b442d06a18a8051af57456","integrity":"ni:///sha-256;45UEQJN1fYKvyxOJV9BqHqk2G9zwtELQahioBRr1dFY?ct=application/x-font-ttf"},"bootstrap/glyphicons-halflings-regular-a26394f7ede100ca118eff2eda08596275a9839b959c226e15439557a5a80742.woff":{"logical_path":"bootstrap/glyphicons-halflings-regular.woff","mtime":"2008-05-25T01:00:00-06:00","size":23424,"digest":"a26394f7ede100ca118eff2eda08596275a9839b959c226e15439557a5a80742","integrity":"ni:///sha-256;omOU9-3hAMoRjv8u2ghZYnWpg5uVnCJuFUOVV6WoB0I?ct=application/font-woff"},"bootstrap/glyphicons-halflings-regular-fe185d11a49676890d47bb783312a0cda5a44c4039214094e7957b4c040ef11c.woff2":{"logical_path":"bootstrap/glyphicons-halflings-regular.woff2","mtime":"2008-05-25T01:00:00-06:00","size":18028,"digest":"fe185d11a49676890d47bb783312a0cda5a44c4039214094e7957b4c040ef11c","integrity":"ni:///sha-256;_hhdEaSWdokNR7t4MxKgzaWkTEA5IUCU55V7TAQO8Rw"}},"assets":{"bootswatch/amelia/theme.css":"bootswatch/amelia/theme-298ec287e82844ccb07a16641717f9fcbc3674f47459064871863b9b9c9d6480.css","bootswatch/cerulean/theme.css":"bootswatch/cerulean/theme-d84c0daeef253e3fa20ec49abaf94d684365605d59ea6828d2733be41c1642fe.css","bootswatch/cosmo/theme.css":"bootswatch/cosmo/theme-e59f587c2a8e9bb613f13fc688d508a4968595939ab073f92a4788caca4de00b.css","bootswatch/custom/theme.css":"bootswatch/custom/theme-0f08785f48fc93de8a11b09b2447bd88a6311d361a2c1aac7beaa854540e8e09.css","bootswatch/cyborg/theme.css":"bootswatch/cyborg/theme-527706cfcca3eea56a398a07bc4721cf70858aa07dd38caeae97d0b31737b657.css","bootswatch/darkly/theme.css":"bootswatch/darkly/theme-f6085dec90d181584c269c34e7024533f1d54ff6760096a2f5289277d2a40ae3.css","bootswatch/flatly/theme.css":"bootswatch/flatly/theme-7c0a2221513115fcbcab1b2c9401fe146655ead6a6214524f5f7ec2526863586.css","bootswatch/journal/theme.css":"bootswatch/journal/theme-d16866e8d76f57ca6e875a9e61d3901c48d4845d246f4cfad171926f449b03f6.css","bootswatch/readable/theme.css":"bootswatch/readable/theme-17abbf5fd17bb99a0efb1e09760f30f7b8c801fd07150cb80c7c5587f5d0424c.css","bootswatch/simplex/theme.css":"bootswatch/simplex/theme-56ab5dec509e8291093015f2f24ebf0512bc7125232d93b5ab3cccb3183013e5.css","bootswatch/slate/theme.css":"bootswatch/slate/theme-40b3e9ff325e06002b3bbaa74ee1e68ca394c50c1d20ad71481feb5f8705d72d.css","bootswatch/spacelab/theme.css":"bootswatch/spacelab/theme-a4f2a1db2ffe0a65a95f005a300a5000b7d3bbb336d3ac0598c71d763869cc01.css","bootswatch/superhero/theme.css":"bootswatch/superhero/theme-f6bfb917a249836f075771e1f3c3fccf6a540ad8ee4c8cb265e1f38a0a6bef81.css","bootswatch/united/theme.css":"bootswatch/united/theme-46e900fb40e92dc76996969f248216efbb9f8a2dbb7b7fb094c403a165ccd0c1.css","bootswatch/yeti/theme.css":"bootswatch/yeti/theme-2d47d541f6b14fe2475769a3e7819311aba0f344a628e5f37f48f29421251ac5.css","application.js":"application-3a226fbacd7ba9a2b9f7972fafdd7b2486c34707d96a60c26f3bbe4579c29ca6.js","application.css":"application-27f004bb902952dbbaad25f0f28c312f29ffee315c94fa51dea6b5ec6dc993e6.css","bootstrap/glyphicons-halflings-regular.eot":"bootstrap/glyphicons-halflings-regular-13634da87d9e23f8c3ed9108ce1724d183a39ad072e73e1b3d8cbf646d2d0407.eot","bootstrap/glyphicons-halflings-regular.svg":"bootstrap/glyphicons-halflings-regular-42f60659d265c1a3c30f9fa42abcbb56bd4a53af4d83d316d6dd7a36903c43e5.svg","bootstrap/glyphicons-halflings-regular.ttf":"bootstrap/glyphicons-halflings-regular-e395044093757d82afcb138957d06a1ea9361bdcf0b442d06a18a8051af57456.ttf","bootstrap/glyphicons-halflings-regular.woff":"bootstrap/glyphicons-halflings-regular-a26394f7ede100ca118eff2eda08596275a9839b959c226e15439557a5a80742.woff","bootstrap/glyphicons-halflings-regular.woff2":"bootstrap/glyphicons-halflings-regular-fe185d11a49676890d47bb783312a0cda5a44c4039214094e7957b4c040ef11c.woff2"}}
@@ -0,0 +1,13 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the top of the
9
+ * compiled file, but it's generally better to create a new file per style scope.
10
+ *
11
+
12
+
13
+ */