foxynews 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (127) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +23 -0
  4. data/app/controllers/foxynews/presskits_controller.rb +10 -0
  5. data/app/controllers/foxynews/pressrooms_controller.rb +46 -0
  6. data/app/helpers/foxynews/foxynews_helper.rb +5 -0
  7. data/app/models/foxynews/featured_item.rb +4 -0
  8. data/app/services/foxynews/clipping.rb +14 -0
  9. data/app/services/foxynews/paging.rb +13 -0
  10. data/app/services/foxynews/parser.rb +28 -0
  11. data/app/services/foxynews/press_release.rb +22 -0
  12. data/app/services/foxynews/press_release_setter.rb +56 -0
  13. data/app/services/foxynews/presskit.rb +19 -0
  14. data/app/services/foxynews/presskit_setter.rb +48 -0
  15. data/app/services/foxynews/pressroom.rb +20 -0
  16. data/app/services/foxynews/pressroom_setter.rb +75 -0
  17. data/app/views/foxynews/partials/_contact_details.html.erb +18 -0
  18. data/app/views/foxynews/partials/_contact_panels.html.erb +28 -0
  19. data/app/views/foxynews/partials/_contact_social_media.html.erb +17 -0
  20. data/app/views/foxynews/partials/_featured_press_release.html.erb +12 -0
  21. data/app/views/foxynews/partials/_modal.html.erb +8 -0
  22. data/app/views/foxynews/partials/_presskits.html.erb +8 -0
  23. data/app/views/foxynews/partials/_pressroom_about.html.erb +6 -0
  24. data/app/views/foxynews/partials/_spokesman_details.html.erb +31 -0
  25. data/app/views/foxynews/partials/_thumbnails.html.erb +33 -0
  26. data/app/views/foxynews/partials/_timeline.html.erb +50 -0
  27. data/app/views/foxynews/presskits/show.html.erb +10 -0
  28. data/app/views/foxynews/pressrooms/index.html.erb +25 -0
  29. data/app/views/foxynews/pressrooms/show.html.erb +21 -0
  30. data/config/locales/en.yml +32 -0
  31. data/config/routes.rb +9 -0
  32. data/db/migrate/20150915120000_create_foxynews_featured_items.rb +13 -0
  33. data/db/migrate/20150921110000_change_article_to_article_id.rb +5 -0
  34. data/lib/foxynews.rb +10 -0
  35. data/lib/foxynews/engine.rb +13 -0
  36. data/lib/foxynews/version.rb +3 -0
  37. data/lib/generators/foxynews/initializer_generator.rb +12 -0
  38. data/lib/generators/foxynews/templates/foxynews_template.rb +3 -0
  39. data/lib/tasks/foxynews_tasks.rake +4 -0
  40. data/test/dummy/README.rdoc +28 -0
  41. data/test/dummy/Rakefile +6 -0
  42. data/test/dummy/app/assets/javascripts/application.js +13 -0
  43. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  44. data/test/dummy/app/controllers/application_controller.rb +5 -0
  45. data/test/dummy/app/helpers/application_helper.rb +2 -0
  46. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  47. data/test/dummy/bin/bundle +3 -0
  48. data/test/dummy/bin/rails +4 -0
  49. data/test/dummy/bin/rake +4 -0
  50. data/test/dummy/bin/setup +29 -0
  51. data/test/dummy/config.ru +4 -0
  52. data/test/dummy/config/application.rb +26 -0
  53. data/test/dummy/config/boot.rb +5 -0
  54. data/test/dummy/config/database.yml +25 -0
  55. data/test/dummy/config/environment.rb +5 -0
  56. data/test/dummy/config/environments/development.rb +41 -0
  57. data/test/dummy/config/environments/production.rb +79 -0
  58. data/test/dummy/config/environments/test.rb +42 -0
  59. data/test/dummy/config/initializers/assets.rb +11 -0
  60. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  61. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  62. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  63. data/test/dummy/config/initializers/foxynews.rb +3 -0
  64. data/test/dummy/config/initializers/inflections.rb +16 -0
  65. data/test/dummy/config/initializers/mime_types.rb +4 -0
  66. data/test/dummy/config/initializers/session_store.rb +3 -0
  67. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  68. data/test/dummy/config/locales/en.yml +23 -0
  69. data/test/dummy/config/routes.rb +59 -0
  70. data/test/dummy/config/secrets.yml +22 -0
  71. data/test/dummy/db/development.sqlite3 +0 -0
  72. data/test/dummy/db/migrate/20150921115208_create_foxynews_featured_items.foxynews.rb +14 -0
  73. data/test/dummy/db/migrate/20150921115209_change_article_to_article_id.foxynews.rb +6 -0
  74. data/test/dummy/db/schema.rb +27 -0
  75. data/test/dummy/db/test.sqlite3 +0 -0
  76. data/test/dummy/log/development.log +351 -0
  77. data/test/dummy/log/test.log +9326 -0
  78. data/test/dummy/public/404.html +67 -0
  79. data/test/dummy/public/422.html +67 -0
  80. data/test/dummy/public/500.html +66 -0
  81. data/test/dummy/public/favicon.ico +0 -0
  82. data/test/dummy/spec/features/pressroom_feature_spec.rb +101 -0
  83. data/test/dummy/spec/rails_helper.rb +52 -0
  84. data/test/dummy/spec/services/foxynews/press_release_setter_spec.rb +40 -0
  85. data/test/dummy/spec/services/foxynews/presskit_setter_spec.rb +40 -0
  86. data/test/dummy/spec/services/foxynews/pressroom_setter_spec.rb +50 -0
  87. data/test/dummy/spec/spec_helper.rb +92 -0
  88. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/0ieeKnMtadPClPcf7n4_-7f9dFAa5EKPn-nhh8g4E_I.cache +1 -0
  89. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/3fB7XY5WyPu8FySUeyC372vbXJ2Ix4iB1QaNHXbk_BY.cache +1 -0
  90. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/5Lly_CA8DZvPhQV2jDQx-Y6P_y3Ygra9t5jfSlGhHDA.cache +2 -0
  91. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/9dpacct--ty4g6t9ET48xr39Oa8KFJq67stokNMRBE0.cache +1 -0
  92. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/CzzhnWANCyFkiMpG8MGAUus0oHH7jFGSjgKNQytoGB8.cache +0 -0
  93. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/EHcymtlGKlOMMf7gOs-X2_jpvcBTW92Qeaxu2B5-Wbg.cache +1 -0
  94. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/LGn_lRMM4VGWV-tOkzVE711bHWh5XhMIHtLL-ydCc5s.cache +0 -0
  95. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/OI6uxGcnsKavdWTtwDAasU3wPx8QXhzBgV0X2n1KjMQ.cache +3 -0
  96. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/P6CzQLNPa_qmqh4oEs_FJcmJUu_RgN9rxL-u5eUX8a8.cache +0 -0
  97. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/SGxtd6iKmB2TMwH-VOx-jVYXh5m_09UjNEOkifPHLL0.cache +1 -0
  98. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ZF-VgWKVwd4l6mDAOWYmcWP44GkNpVapsSWxOVT_jXs.cache +1 -0
  99. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/e_NLP8hWf6Ma_xNwWM6lWrQIYZIy62BM5mIpRIVEz24.cache +0 -0
  100. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/eyIVoTHtfeBUAG8zonwJLMFQsk7muavIqU6by75vy6E.cache +1 -0
  101. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/hZi1k6tpxxCGYxRe7zY74ItcOI8gZrREOpGuA8JSpGg.cache +3 -0
  102. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/hkb4T84XlBEogo6JU3t-W-8oWx1BbAVq7dqJ2DNHwt4.cache +0 -0
  103. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/pEhaat2KBd5SrT7szC_8R1_6hK17FTpvoRFkmCRSD3M.cache +2 -0
  104. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/1fnsGuWQsCAFit0Lhxi-NuDTrnuzg0MPZnEeYfoXT9Q.cache +0 -0
  105. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/5Lly_CA8DZvPhQV2jDQx-Y6P_y3Ygra9t5jfSlGhHDA.cache +2 -0
  106. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/9dpacct--ty4g6t9ET48xr39Oa8KFJq67stokNMRBE0.cache +1 -0
  107. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/9jPCqzZvmeFf31Rz8y3OEo8OQXEHVcwmLgkx0tXs-o8.cache +1 -0
  108. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/CzzhnWANCyFkiMpG8MGAUus0oHH7jFGSjgKNQytoGB8.cache +0 -0
  109. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/N-1CMS_rjg3LKA5Sh64XgIXIzy-4T-PQ8PIf4HY_R8s.cache +0 -0
  110. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/OI6uxGcnsKavdWTtwDAasU3wPx8QXhzBgV0X2n1KjMQ.cache +3 -0
  111. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/WZy7M8vyOXLZi2NSRoODBS6edlqJTSpd1JoU8Aq03fY.cache +0 -0
  112. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/ZF-VgWKVwd4l6mDAOWYmcWP44GkNpVapsSWxOVT_jXs.cache +1 -0
  113. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/eyIVoTHtfeBUAG8zonwJLMFQsk7muavIqU6by75vy6E.cache +1 -0
  114. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/hZi1k6tpxxCGYxRe7zY74ItcOI8gZrREOpGuA8JSpGg.cache +3 -0
  115. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/o2kqwqoUQ3gkgncZO1IWdVRzFD0wCSQ-HyL62cINFOU.cache +1 -0
  116. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/pEhaat2KBd5SrT7szC_8R1_6hK17FTpvoRFkmCRSD3M.cache +2 -0
  117. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/pQIgTfLmEPykNamzxdqBww21SMT7YlZlZGy6hgQ6eVE.cache +1 -0
  118. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/tAO-KLuNv0f9gUG3lGwGw7ujopxtlyjAr83jAzLWyq0.cache +0 -0
  119. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/td9wUl9SLRnSSgE2ZK_VqCzLxTkFiCW50KkOhE916Wo.cache +1 -0
  120. data/test/dummy_responses/pressrooms_id.json +1 -0
  121. data/test/dummy_responses/pressrooms_id_press_releases.json +45 -0
  122. data/test/dummy_responses/pressrooms_id_press_releases_109544.json +1 -0
  123. data/test/dummy_responses/pressrooms_id_presskits.json +1 -0
  124. data/test/dummy_responses/pressrooms_id_presskits_215958.json +1 -0
  125. data/test/dummy_responses/pressrooms_id_timeline.json +135 -0
  126. data/test/test_helper.rb +19 -0
  127. metadata +302 -0
@@ -0,0 +1,92 @@
1
+ # This file was generated by the `rails generate rspec:install` command. Conventionally, all
2
+ # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
3
+ # The generated `.rspec` file contains `--require spec_helper` which will cause
4
+ # this file to always be loaded, without a need to explicitly require it in any
5
+ # files.
6
+ #
7
+ # Given that it is always loaded, you are encouraged to keep this file as
8
+ # light-weight as possible. Requiring heavyweight dependencies from this file
9
+ # will add to the boot time of your test suite on EVERY test run, even for an
10
+ # individual file that may not need all of that loaded. Instead, consider making
11
+ # a separate helper file that requires the additional dependencies and performs
12
+ # the additional setup, and require it from the spec files that actually need
13
+ # it.
14
+ #
15
+ # The `.rspec` file also contains a few flags that are not defaults but that
16
+ # users commonly want.
17
+ #
18
+ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
19
+ RSpec.configure do |config|
20
+ # rspec-expectations config goes here. You can use an alternate
21
+ # assertion/expectation library such as wrong or the stdlib/minitest
22
+ # assertions if you prefer.
23
+ config.expect_with :rspec do |expectations|
24
+ # This option will default to `true` in RSpec 4. It makes the `description`
25
+ # and `failure_message` of custom matchers include text for helper methods
26
+ # defined using `chain`, e.g.:
27
+ # be_bigger_than(2).and_smaller_than(4).description
28
+ # # => "be bigger than 2 and smaller than 4"
29
+ # ...rather than:
30
+ # # => "be bigger than 2"
31
+ expectations.include_chain_clauses_in_custom_matcher_descriptions = true
32
+ end
33
+
34
+ # rspec-mocks config goes here. You can use an alternate test double
35
+ # library (such as bogus or mocha) by changing the `mock_with` option here.
36
+ config.mock_with :rspec do |mocks|
37
+ # Prevents you from mocking or stubbing a method that does not exist on
38
+ # a real object. This is generally recommended, and will default to
39
+ # `true` in RSpec 4.
40
+ mocks.verify_partial_doubles = true
41
+ end
42
+
43
+ # The settings below are suggested to provide a good initial experience
44
+ # with RSpec, but feel free to customize to your heart's content.
45
+ =begin
46
+ # These two settings work together to allow you to limit a spec run
47
+ # to individual examples or groups you care about by tagging them with
48
+ # `:focus` metadata. When nothing is tagged with `:focus`, all examples
49
+ # get run.
50
+ config.filter_run :focus
51
+ config.run_all_when_everything_filtered = true
52
+
53
+ # Allows RSpec to persist some state between runs in order to support
54
+ # the `--only-failures` and `--next-failure` CLI options. We recommend
55
+ # you configure your source control system to ignore this file.
56
+ config.example_status_persistence_file_path = "spec/examples.txt"
57
+
58
+ # Limits the available syntax to the non-monkey patched syntax that is
59
+ # recommended. For more details, see:
60
+ # - http://myronmars.to/n/dev-blog/2012/06/rspecs-new-expectation-syntax
61
+ # - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
62
+ # - http://myronmars.to/n/dev-blog/2014/05/notable-changes-in-rspec-3#new__config_option_to_disable_rspeccore_monkey_patching
63
+ config.disable_monkey_patching!
64
+
65
+ # Many RSpec users commonly either run the entire suite or an individual
66
+ # file, and it's useful to allow more verbose output when running an
67
+ # individual spec file.
68
+ if config.files_to_run.one?
69
+ # Use the documentation formatter for detailed output,
70
+ # unless a formatter has already been configured
71
+ # (e.g. via a command-line flag).
72
+ config.default_formatter = 'doc'
73
+ end
74
+
75
+ # Print the 10 slowest examples and example groups at the
76
+ # end of the spec run, to help surface which specs are running
77
+ # particularly slow.
78
+ config.profile_examples = 10
79
+
80
+ # Run specs in random order to surface order dependencies. If you find an
81
+ # order dependency and want to debug it, you can fix the order by providing
82
+ # the seed, which is printed after each run.
83
+ # --seed 1234
84
+ config.order = :random
85
+
86
+ # Seed global randomization in this process using the `--seed` CLI option.
87
+ # Setting this allows you to use `--seed` to deterministically reproduce
88
+ # test failures related to randomization by passing the same `--seed` value
89
+ # as the one that triggered the failure.
90
+ Kernel.srand config.seed
91
+ =end
92
+ end
@@ -0,0 +1 @@
1
+ I"�app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=7ec03b91783914d1179aefc03985cb49a02729e25b1a9b95eafe16a5dbb64eb2:ET
@@ -0,0 +1 @@
1
+ I"}app/assets/stylesheets/application.css?type=text/css&id=a7aca448895446f0dcf49dc5db6a72920b4899a39fdee332d9aef3207a68b0d7:ET
@@ -0,0 +1,2 @@
1
+ [o:Set:
2
+ @hash{ I"environment-version:ETTI"environment-paths;TTI"0processors:type=text/css&file_type=text/css;TTI"9file-digest://app/assets/stylesheets/application.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI")file-digest://app/assets/stylesheets;TT
@@ -0,0 +1 @@
1
+ "%�W\�yho9S���ƫ˥��)|�~���(���
@@ -0,0 +1 @@
1
+ I"�app/assets/javascripts/application.js?type=application/javascript&id=70a367d3c8606d13f1c134b752829ababef9dc9b5bf325d0aebd18ddae959382:ET
@@ -0,0 +1,3 @@
1
+ [o:Set:
2
+ @hash{
3
+ I"environment-version:ETTI"environment-paths;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"9file-digest://app/assets/stylesheets/application.css;TTI")file-digest://app/assets/stylesheets;TT
@@ -0,0 +1 @@
1
+ I"�app/assets/javascripts/application.js?type=application/javascript&pipeline=self&id=96f14244ffba8d05ee957ceadacf7f89807de6a153c7cbc70522b339aac8bbf3:ET
@@ -0,0 +1 @@
1
+ "%��Rm�v�S3.��O�L���ڹc�ƕq�=_j�
@@ -0,0 +1 @@
1
+ "%Ѱč@�����6H�uZoX�Z�gbh0W��V
@@ -0,0 +1,3 @@
1
+ [o:Set:
2
+ @hash{
3
+ I"environment-version:ETTI"environment-paths;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"8file-digest://app/assets/javascripts/application.js;TTI")file-digest://app/assets/javascripts;TT
@@ -0,0 +1,2 @@
1
+ [o:Set:
2
+ @hash{ I"environment-version:ETTI"environment-paths;TTI"Lprocessors:type=application/javascript&file_type=application/javascript;TTI"8file-digest://app/assets/javascripts/application.js;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI")file-digest://app/assets/javascripts;TT
@@ -0,0 +1,2 @@
1
+ [o:Set:
2
+ @hash{ I"environment-version:ETTI"environment-paths;TTI"0processors:type=text/css&file_type=text/css;TTI"9file-digest://app/assets/stylesheets/application.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI")file-digest://app/assets/stylesheets;TT
@@ -0,0 +1 @@
1
+ "%�W\�yho9S���ƫ˥��)|�~���(���
@@ -0,0 +1 @@
1
+ I"�app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=56f705c80e459eded0adaa38e783a77673c4b894d32dc1ef9e930adfa59708c6:ET
@@ -0,0 +1,3 @@
1
+ [o:Set:
2
+ @hash{
3
+ I"environment-version:ETTI"environment-paths;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"9file-digest://app/assets/stylesheets/application.css;TTI")file-digest://app/assets/stylesheets;TT
@@ -0,0 +1 @@
1
+ "%��Rm�v�S3.��O�L���ڹc�ƕq�=_j�
@@ -0,0 +1 @@
1
+ "%Ѱč@�����6H�uZoX�Z�gbh0W��V
@@ -0,0 +1,3 @@
1
+ [o:Set:
2
+ @hash{
3
+ I"environment-version:ETTI"environment-paths;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"8file-digest://app/assets/javascripts/application.js;TTI")file-digest://app/assets/javascripts;TT
@@ -0,0 +1 @@
1
+ I"�app/assets/javascripts/application.js?type=application/javascript&pipeline=self&id=0dbf661553274f1cdcd6efa6d757d871f64b27d457533c5157a5a0f69d7cf845:ET
@@ -0,0 +1,2 @@
1
+ [o:Set:
2
+ @hash{ I"environment-version:ETTI"environment-paths;TTI"Lprocessors:type=application/javascript&file_type=application/javascript;TTI"8file-digest://app/assets/javascripts/application.js;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI")file-digest://app/assets/javascripts;TT
@@ -0,0 +1 @@
1
+ I"�app/assets/javascripts/application.js?type=application/javascript&id=ec61b03dcbe4c94d69d15b3611410a7d9fcc640ff49514b01732eddfaf65ed01:ET
@@ -0,0 +1 @@
1
+ I"}app/assets/stylesheets/application.css?type=text/css&id=759ccc95a227fe37d1bc79478ed69e5d98909540490d42223762743bf7cae4c7:ET
@@ -0,0 +1 @@
1
+ {"data":{"id":60679,"slug":"pataphysics","permalink":"http://pataphysics.pr.co","name":"pataphysics","description":"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent eget venenatis sapien. Etiam rhoncus eros eget mattis rhoncus. Praesent fermentum at lorem sed aliquet. Sed eu euismod nibh, et vestibulum enim. Sed interdum quis orci a euismod. Phasellus sagittis tellus elit, a venenatis nunc pharetra nec. Curabitur ac posuere mauris. Nam tincidunt blandit vehicula. Morbi dignissim, arcu a efficitur ornare, ligula mauris sodales arcu, vel ullamcorper magna orci quis est. Sed non varius urna. Vivamus sit amet venenatis felis, sit amet pulvinar felis. Etiam consequat scelerisque eros quis gravida. Maecenas id velit a sapien viverra dictum. Praesent tempor, neque ac euismod elementum, nunc nibh tincidunt diam, et mollis neque nisi elementum lacus.</p>","language":"en","urls":{"homepage":"http://www.example.com","blog":"http://blog.example.com","contact":"http://www.example.com/contact","twitter":null,"facebook":"http://www.facebook.com/example","linkedin":"http://www.linkedin.com/example/example","presskit":null,"googleplus":"http://google.com/+/example","instagram":null,"sitemap":"http://pr.co/sitemap-60679-pataphysics.xml"},"contact_info":"Pa Ubu\r\n1-800-POLAND","logo":{"small":"https://d21buns5ku92am.cloudfront.net/60679/logo/small-1441008964.jpeg","small_url":"https://d21buns5ku92am.cloudfront.net/60679/logo/small-1441008964.jpeg","square_url":"https://d21buns5ku92am.cloudfront.net/60679/logo/small_square-1441008964.jpeg","small_square_url":"https://d21buns5ku92am.cloudfront.net/60679/logo/tiny_square-1441008964.jpeg","original_url":"https://d21buns5ku92am.cloudfront.net/60679/logo/original-1441008964.jpeg"},"links":[],"type":"regular","css":"<style type=\"text/css\">#wrapper{background-color:#e6dfdf}#wrapper a{color:#d40039}#agency_pressroom .client_pressroom:hover{background-color:#d40039;border-color:#d40039}</style>","noindex":false,"nofollow":false,"twitter_widget_id":null,"ga_code":null,"timezone":"Amsterdam","subscribe_enabled":true,"followers_enabled":true,"design":{"background_image":null,"background_color":"#e6dfdf","background_fixed":null,"background_repeat":null,"link_color":"#d40039","css":"/* I am a comment */","layout":"flat","javascript":null},"parent_pressrooms":[],"child_pressrooms":[],"languages":["en"],"show_banner":false,"show_presskit":true,"tag_tree_enabled":false,"tag_tree":"[{\"id\":\"j1_1\",\"text\":\"Tag\",\"icon\":true,\"li_attr\":{\"id\":\"j1_1\"},\"a_attr\":{\"href\":\"#\"},\"data\":{\"deleted\":false,\"description\":null,\"id\":2145,\"name\":\"Tag\",\"pressroom_id\":60679,\"slug\":\"tag\",\"tag_image_content_type\":null,\"tag_image_file_name\":null,\"tag_image_file_size\":null,\"tag_image_updated_at\":null,\"tag_image\":{\"url\":null,\"original\":{\"url\":null},\"moodbanner\":{\"url\":null},\"thumbnail\":{\"url\":null}}},\"children\":[{\"id\":\"j1_2\",\"text\":\"New tag\",\"icon\":true,\"li_attr\":{\"id\":\"j1_2\"},\"a_attr\":{\"href\":\"#\"},\"data\":{\"deleted\":false,\"description\":null,\"id\":2146,\"name\":\"New tag\",\"pressroom_id\":60679,\"slug\":\"new-tag\",\"tag_image_content_type\":null,\"tag_image_file_name\":null,\"tag_image_file_size\":null,\"tag_image_updated_at\":null,\"tag_image\":{\"url\":null,\"original\":{\"url\":null},\"moodbanner\":{\"url\":null},\"thumbnail\":{\"url\":null}}},\"children\":[],\"type\":\"tag\"},{\"id\":\"j1_3\",\"text\":\"tag 2\",\"icon\":true,\"li_attr\":{\"id\":\"j1_3\"},\"a_attr\":{\"href\":\"#\"},\"data\":{\"deleted\":false,\"description\":null,\"id\":2147,\"name\":\"tag 2\",\"pressroom_id\":60679,\"slug\":\"tag-2\",\"tag_image_content_type\":null,\"tag_image_file_name\":null,\"tag_image_file_size\":null,\"tag_image_updated_at\":null,\"tag_image\":{\"url\":null,\"original\":{\"url\":null},\"moodbanner\":{\"url\":null},\"thumbnail\":{\"url\":null}}},\"children\":[],\"type\":\"tag\"}],\"type\":\"root\"}]","login_enabled":false,"pr_contacts":[{"name":"Pa Ubu","contact_info":"pa.ubu@exkingofpoland.com","id":34174,"urls":{"twitter":"https://twitter.com/pa_ubu","skype":"skype:pa.ubu","avatar":"https://d21buns5ku92am.cloudfront.net/60679/profile_pictures/34174/RnMmmIIx_normal.jpeg"},"usernames":{"skype":"pa.ubu","twitter":"pa_ubu"},"avatar":{"medium_square":{"width":100,"height":100,"url":"https://d21buns5ku92am.cloudfront.net/60679/profile_pictures/34174/medium_square_RnMmmIIx_normal.jpeg"},"large_square":{"width":500,"height":500,"url":"https://d21buns5ku92am.cloudfront.net/60679/profile_pictures/34174/large_square_RnMmmIIx_normal.jpeg"},"original":{"width":null,"height":null,"url":"https://d21buns5ku92am.cloudfront.net/60679/profile_pictures/34174/RnMmmIIx_normal.jpeg"}}}]}}
@@ -0,0 +1,45 @@
1
+ {
2
+ "data": [
3
+ {
4
+ "id":109765,
5
+ "pressroom_id":60679,
6
+ "title":"3 of 27",
7
+ "subtitle":"",
8
+ "release_date":"2015-09-02T13:55:34.000Z",
9
+ "release_location":null,
10
+ "language":"en",
11
+ "social_media_pitch":null,
12
+ "summary":"",
13
+ "body_html":"",
14
+ "permalink":"/109765-3-of-27",
15
+ "type":"story",
16
+ "state":"published",
17
+ "short_link":"http://pr.co/p/002cp1",
18
+ "pdf":null,
19
+ "show_in_timeline":true,
20
+ "content_as_json":"{\"data\":[{\"type\":\"header\",\"data\":{\"title\":\"3 of 27\",\"subtitle\":\"\"}}]}","draft_content_as_json":null},{"id":109764,"pressroom_id":60679,"title":"2 of 27","subtitle":"","release_date":"2015-09-02T13:55:16.000Z","release_location":null,"language":"en","social_media_pitch":null,"summary":"","body_html":"","permalink":"/109764-2-of-27","type":"story","state":"published","short_link":"http://pr.co/p/002cp0","pdf":null,"show_in_timeline":true,"content_as_json":"{\"data\":[{\"type\":\"header\",\"data\":{\"title\":\"2 of 27\",\"subtitle\":\"\"}}]}","draft_content_as_json":null},{"id":109763,"pressroom_id":60679,"title":"1 of 27","subtitle":"","release_date":"2015-09-02T13:54:38.000Z","release_location":null,"language":"en","social_media_pitch":null,"summary":"","body_html":"","permalink":"/109763-1-of-27","type":"story","state":"published","short_link":"http://pr.co/p/002coz","pdf":null,"show_in_timeline":true,"content_as_json":"{\"data\":[{\"type\":\"header\",\"data\":{\"title\":\"1 of 27\",\"subtitle\":\"\"}}]}","draft_content_as_json":null},{"id":109545,"pressroom_id":60679,"title":"unpublished","subtitle":"nobody knows....","release_date":"2015-09-01T08:42:39.000Z","release_location":null,"language":"en","social_media_pitch":null,"summary":"the trouble I've seen!","body_html":"<p>the trouble I've seen!</p>","permalink":"/109545-unpublished","type":"story","state":"published","short_link":"http://pr.co/p/002cix","pdf":null,"show_in_timeline":true,"content_as_json":"{\"data\":[{\"type\":\"header\",\"data\":{\"title\":\"unpublished\",\"subtitle\":\"nobody knows....\"}},{\"type\":\"textarea\",\"data\":{\"body\":\"<p>the trouble I've seen!</p>\"}}]}","draft_content_as_json":null},{"id":109544,"pressroom_id":60679,"title":"Once more, dear Palcontents, once more!","subtitle":"Soon Ubu Roi shall be king of Poland anon!","release_date":"2015-08-31T08:32:08.000Z","release_location":null,"language":"en","social_media_pitch":null,"summary":"my custom summary","body_html":"<p></p><p></p><p></p><p><span>This is a test press release.</span></p><p><span><br /></span></p><p><span>Aha, I can bold using command+b!<i> And italics with command+i!!</i></span></p><p><span><i><br /></i></span></p><p>How to get a list?</p><p>1. hello</p><p>2. hello</p><p><br /></p><p>doesn't seem to format itself</p><p><br /></p><p>what else can we do?</p><p><br /></p><p>I want a sub header!</p><p><br /></p><p><b>Hey!!!!</b></p><p><b><br /></b></p><p><b>HELLO</b></p><p><b><br /></b></p><p>SO... it's pretty rudimentary...</p><p><br /></p><p>Yarhar! By selecting we can do things, beautiful things!</p><p></p><ul><li><span>Hwæt. We Gar-Dena in gear dagum.</span><br /></li><li><span>Theodcyninga thrym gefrunon.</span><br /></li><li><span>Hu dha æthelingas ellen fremedon.</span><br /></li></ul><p></p><ol><li><span>Arddyledog ganu cyman ofri</span><br /></li><li><span>Twrf tân a tharân a rhyferti</span><br /></li><li><span>Gwryd ardderchog, marchog mysgi</span><br /></li><li><span>Rhyddfedel, rhyfel a eidduni</span><br /></li></ol><p><br /></p>","permalink":"/109544-once-more-dear-palcontents-once-more","type":"story","state":"published","short_link":"http://pr.co/p/002ciw","pdf":null,"show_in_timeline":true,"content_as_json":"{\"data\":[{\"type\":\"header\",\"data\":{\"title\":\"Once more, dear Palcontents, once more!\",\"subtitle\":\"Soon Ubu Roi shall be king of Poland anon!\",\"template\":true}},{\"type\":\"textarea\",\"data\":{\"body\":\"<p></p><p></p><p></p><p><span style=\\\"font-family: inherit; font-size: 1rem; line-height: 1.6;\\\">This is a test press release.</span></p><p><span style=\\\"font-family: inherit; font-size: 1rem; line-height: 1.6;\\\"><br></span></p><p><span style=\\\"font-weight: 600;\\\">Aha, I can bold using command+b!<i>&nbsp;And italics with command+i!!</i></span></p><p><span style=\\\"font-weight: 600;\\\"><i><br></i></span></p><p>How to get a list?</p><p>1. hello</p><p>2. hello</p><p><br></p><p>doesn't seem to format itself</p><p><br></p><p>what else can we do?</p><p><br></p><p>I want a sub header!</p><p><br></p><p><b>Hey!!!!</b></p><p><b><br></b></p><p><b>HELLO</b></p><p><b><br></b></p><p>SO... it's pretty rudimentary...</p><p><br></p><p>Yarhar! By selecting we can do things, beautiful things!</p><p><ul><li><span style=\\\"font-family: inherit; font-size: 1rem; line-height: 1.6;\\\">Hwæt. We Gar-Dena in gear dagum.</span><br></li><li><span style=\\\"font-family: inherit; font-size: 1rem; line-height: 1.6;\\\">Theodcyninga thrym gefrunon.</span><br></li><li><span style=\\\"font-family: inherit; font-size: 1rem; line-height: 1.6;\\\">Hu dha æthelingas ellen fremedon.</span><br></li></ul><p><ol><li><span style=\\\"font-family: inherit; font-size: 1rem; line-height: 1.6;\\\">Arddyledog ganu cyman ofri</span><br></li><li><span style=\\\"font-family: inherit; font-size: 1rem; line-height: 1.6;\\\">Twrf tân a tharân a rhyferti</span><br></li><li><span style=\\\"font-family: inherit; font-size: 1rem; line-height: 1.6;\\\">Gwryd ardderchog, marchog mysgi</span><br></li><li><span style=\\\"font-family: inherit; font-size: 1rem; line-height: 1.6;\\\">Rhyddfedel, rhyfel a eidduni</span><br></li></ol></p></p><p><br></p>\",\"template\":true}}]}",
21
+ "draft_content_as_json":null
22
+ },
23
+ {
24
+ "id":109766,
25
+ "pressroom_id":60679,
26
+ "title":"3 of 27",
27
+ "subtitle":"",
28
+ "release_date":"2015-09-02T13:55:34.000Z",
29
+ "release_location":null,
30
+ "language":"de",
31
+ "social_media_pitch":null,
32
+ "summary":"",
33
+ "body_html":"",
34
+ "permalink":"/109765-3-of-27",
35
+ "type":"story",
36
+ "state":"published",
37
+ "short_link":"http://pr.co/p/002cp1",
38
+ "pdf":null,
39
+ "show_in_timeline":true,
40
+ "content_as_json":"{\"data\":[{\"type\":\"header\",\"data\":{\"title\":\"3 of 27\",\"subtitle\":\"\"}}]}","draft_content_as_json":null},{"id":109764,"pressroom_id":60679,"title":"2 of 27","subtitle":"","release_date":"2015-09-02T13:55:16.000Z","release_location":null,"language":"en","social_media_pitch":null,"summary":"","body_html":"","permalink":"/109764-2-of-27","type":"story","state":"published","short_link":"http://pr.co/p/002cp0","pdf":null,"show_in_timeline":true,"content_as_json":"{\"data\":[{\"type\":\"header\",\"data\":{\"title\":\"2 of 27\",\"subtitle\":\"\"}}]}","draft_content_as_json":null},{"id":109763,"pressroom_id":60679,"title":"1 of 27","subtitle":"","release_date":"2015-09-02T13:54:38.000Z","release_location":null,"language":"en","social_media_pitch":null,"summary":"","body_html":"","permalink":"/109763-1-of-27","type":"story","state":"published","short_link":"http://pr.co/p/002coz","pdf":null,"show_in_timeline":true,"content_as_json":"{\"data\":[{\"type\":\"header\",\"data\":{\"title\":\"1 of 27\",\"subtitle\":\"\"}}]}","draft_content_as_json":null},{"id":109545,"pressroom_id":60679,"title":"unpublished","subtitle":"nobody knows....","release_date":"2015-09-01T08:42:39.000Z","release_location":null,"language":"en","social_media_pitch":null,"summary":"the trouble I've seen!","body_html":"<p>the trouble I've seen!</p>","permalink":"/109545-unpublished","type":"story","state":"published","short_link":"http://pr.co/p/002cix","pdf":null,"show_in_timeline":true,"content_as_json":"{\"data\":[{\"type\":\"header\",\"data\":{\"title\":\"unpublished\",\"subtitle\":\"nobody knows....\"}},{\"type\":\"textarea\",\"data\":{\"body\":\"<p>the trouble I've seen!</p>\"}}]}","draft_content_as_json":null},{"id":109544,"pressroom_id":60679,"title":"Once more, dear Palcontents, once more!","subtitle":"Soon Ubu Roi shall be king of Poland anon!","release_date":"2015-08-31T08:32:08.000Z","release_location":null,"language":"en","social_media_pitch":null,"summary":"my custom summary","body_html":"<p></p><p></p><p></p><p><span>This is a test press release.</span></p><p><span><br /></span></p><p><span>Aha, I can bold using command+b!<i> And italics with command+i!!</i></span></p><p><span><i><br /></i></span></p><p>How to get a list?</p><p>1. hello</p><p>2. hello</p><p><br /></p><p>doesn't seem to format itself</p><p><br /></p><p>what else can we do?</p><p><br /></p><p>I want a sub header!</p><p><br /></p><p><b>Hey!!!!</b></p><p><b><br /></b></p><p><b>HELLO</b></p><p><b><br /></b></p><p>SO... it's pretty rudimentary...</p><p><br /></p><p>Yarhar! By selecting we can do things, beautiful things!</p><p></p><ul><li><span>Hwæt. We Gar-Dena in gear dagum.</span><br /></li><li><span>Theodcyninga thrym gefrunon.</span><br /></li><li><span>Hu dha æthelingas ellen fremedon.</span><br /></li></ul><p></p><ol><li><span>Arddyledog ganu cyman ofri</span><br /></li><li><span>Twrf tân a tharân a rhyferti</span><br /></li><li><span>Gwryd ardderchog, marchog mysgi</span><br /></li><li><span>Rhyddfedel, rhyfel a eidduni</span><br /></li></ol><p><br /></p>","permalink":"/109544-once-more-dear-palcontents-once-more","type":"story","state":"published","short_link":"http://pr.co/p/002ciw","pdf":null,"show_in_timeline":true,"content_as_json":"{\"data\":[{\"type\":\"header\",\"data\":{\"title\":\"Once more, dear Palcontents, once more!\",\"subtitle\":\"Soon Ubu Roi shall be king of Poland anon!\",\"template\":true}},{\"type\":\"textarea\",\"data\":{\"body\":\"<p></p><p></p><p></p><p><span style=\\\"font-family: inherit; font-size: 1rem; line-height: 1.6;\\\">This is a test press release.</span></p><p><span style=\\\"font-family: inherit; font-size: 1rem; line-height: 1.6;\\\"><br></span></p><p><span style=\\\"font-weight: 600;\\\">Aha, I can bold using command+b!<i>&nbsp;And italics with command+i!!</i></span></p><p><span style=\\\"font-weight: 600;\\\"><i><br></i></span></p><p>How to get a list?</p><p>1. hello</p><p>2. hello</p><p><br></p><p>doesn't seem to format itself</p><p><br></p><p>what else can we do?</p><p><br></p><p>I want a sub header!</p><p><br></p><p><b>Hey!!!!</b></p><p><b><br></b></p><p><b>HELLO</b></p><p><b><br></b></p><p>SO... it's pretty rudimentary...</p><p><br></p><p>Yarhar! By selecting we can do things, beautiful things!</p><p><ul><li><span style=\\\"font-family: inherit; font-size: 1rem; line-height: 1.6;\\\">Hwæt. We Gar-Dena in gear dagum.</span><br></li><li><span style=\\\"font-family: inherit; font-size: 1rem; line-height: 1.6;\\\">Theodcyninga thrym gefrunon.</span><br></li><li><span style=\\\"font-family: inherit; font-size: 1rem; line-height: 1.6;\\\">Hu dha æthelingas ellen fremedon.</span><br></li></ul><p><ol><li><span style=\\\"font-family: inherit; font-size: 1rem; line-height: 1.6;\\\">Arddyledog ganu cyman ofri</span><br></li><li><span style=\\\"font-family: inherit; font-size: 1rem; line-height: 1.6;\\\">Twrf tân a tharân a rhyferti</span><br></li><li><span style=\\\"font-family: inherit; font-size: 1rem; line-height: 1.6;\\\">Gwryd ardderchog, marchog mysgi</span><br></li><li><span style=\\\"font-family: inherit; font-size: 1rem; line-height: 1.6;\\\">Rhyddfedel, rhyfel a eidduni</span><br></li></ol></p></p><p><br></p>\",\"template\":true}}]}",
41
+ "draft_content_as_json":null
42
+ }
43
+ ],
44
+ "paging":{"page":0,"limit":10,"total":10}
45
+ }
@@ -0,0 +1 @@
1
+ {"data": {"id":109544,"pressroom_id":60679,"title":"Once more, dear Palcontents, once more!","subtitle":"Soon Ubu Roi shall be king of Poland anon!","release_date":"2015-08-31T08:32:08.000Z","release_location":null,"language":"en","social_media_pitch":null,"summary":"my custom summary","body_html":"<p></p><p></p><p></p><p><span>This is a test press release.</span></p><p><span><br /></span></p><p><span>Aha, I can bold using command+b!<i> And italics with command+i!!</i></span></p><p><span><i><br /></i></span></p><p>How to get a list?</p><p>1. hello</p><p>2. hello</p><p><br /></p><p>doesn't seem to format itself</p><p><br /></p><p>what else can we do?</p><p><br /></p><p>I want a sub header!</p><p><br /></p><p><b>Hey!!!!</b></p><p><b><br /></b></p><p><b>HELLO</b></p><p><b><br /></b></p><p>SO... it's pretty rudimentary...</p><p><br /></p><p>Yarhar! By selecting we can do things, beautiful things!</p><p></p><ul><li><span>Hwæt. We Gar-Dena in gear dagum.</span><br /></li><li><span>Theodcyninga thrym gefrunon.</span><br /></li><li><span>Hu dha æthelingas ellen fremedon.</span><br /></li></ul><p></p><ol><li><span>Arddyledog ganu cyman ofri</span><br /></li><li><span>Twrf tân a tharân a rhyferti</span><br /></li><li><span>Gwryd ardderchog, marchog mysgi</span><br /></li><li><span>Rhyddfedel, rhyfel a eidduni</span><br /></li></ol><p><br /></p>","permalink":"/109544-once-more-dear-palcontents-once-more","type":"story","state":"published","short_link":"http://pr.co/p/002ciw","pdf":null,"show_in_timeline":true,"content_as_json":"{\"data\":[{\"type\":\"header\",\"data\":{\"title\":\"Once more, dear Palcontents, once more!\",\"subtitle\":\"Soon Ubu Roi shall be king of Poland anon!\",\"template\":true}},{\"type\":\"text\",\"data\":{\"text\":\"This is a test press release.\",\"style\":\"p\"}}]}","draft_content_as_json":null,"clippings":[{"id":21463,"pressroom_id":60679,"press_release_id":109544,"title":"CLIPPY CLIPPING","source":"Joan was quizzical, studying....","url":"http://en.wikipedia.com/wiki","release_date":"2015-08-31T10:00:00.000Z","shares":{"facebook":11338,"linkedin":0,"twitter":0},"sizes":{"original":{"width":null,"height":null,"url":"https://d21buns5ku92am.cloudfront.net/60679/screenshots/d0b515fe-693c-414e-b3bf-192a56fe138f-4c961ffa0083c3f2392bb1754fa367378e841e73.png"},"thumbnail":{"width":512,"height":384,"url":"https://d21buns5ku92am.cloudfront.net/60679/screenshots/21463-d0b515fe-693c-414e-b3bf-192a56fe138f-4c961ffa0083c3f2392bb1754fa367378e841e73-thumbnail.png"}},"alexa":{"overall_rank":460861,"country_rank":248148,"country_rank_code":"US"},"private":false,"permalink":"/clippings/21463-clippy-clipping","type":"clipping","show_iframe":true,"language":"en"}]}}
@@ -0,0 +1 @@
1
+ {"data":[{"id":215965,"media":[{"title":"pataphysics.jpeg","sizes":{"medium":{"width":"200","height":"200","url":"https://d21buns5ku92am.cloudfront.net/60679/images/177734-pataphysics-22a729-medium-1441182084.jpeg"},"original":{"width":"200","height":"200","url":"https://d21buns5ku92am.cloudfront.net/60679/images/177734-pataphysics-22a729-original-1441182084.jpeg"},"large":{"width":"200","height":"200","url":"https://d21buns5ku92am.cloudfront.net/60679/images/177734-pataphysics-22a729-large-1441182084.jpeg"},"square":{"width":"300","height":"300","url":"https://d21buns5ku92am.cloudfront.net/60679/images/177734-pataphysics-22a729-square-1441182084.jpeg"}},"pressroom_id":60679,"id":177734,"permalink":"/images/177734","type":"image","content_type":"jpeg"}],"title":"The Schittahook"},{"id":215958,"media":[{"title":"pataphysics.jpeg","sizes":{"medium":{"width":"200","height":"200","url":"https://d21buns5ku92am.cloudfront.net/60679/images/177734-pataphysics-22a729-medium-1441182084.jpeg"},"original":{"width":"200","height":"200","url":"https://d21buns5ku92am.cloudfront.net/60679/images/177734-pataphysics-22a729-original-1441182084.jpeg"},"large":{"width":"200","height":"200","url":"https://d21buns5ku92am.cloudfront.net/60679/images/177734-pataphysics-22a729-large-1441182084.jpeg"},"square":{"width":"300","height":"300","url":"https://d21buns5ku92am.cloudfront.net/60679/images/177734-pataphysics-22a729-square-1441182084.jpeg"}},"pressroom_id":60679,"id":177734,"permalink":"/images/177734","type":"image","content_type":"jpeg"}],"title":"Pataphysical Things"}],"paging":{"page":0,"limit":30,"total":30}}
@@ -0,0 +1 @@
1
+ {"data":{"id":215958,"media":[{"title":"pataphysics.jpeg","sizes":{"medium":{"width":"200","height":"200","url":"https://d21buns5ku92am.cloudfront.net/60679/images/177734-pataphysics-22a729-medium-1441182084.jpeg"},"original":{"width":"200","height":"200","url":"https://d21buns5ku92am.cloudfront.net/60679/images/177734-pataphysics-22a729-original-1441182084.jpeg"},"large":{"width":"200","height":"200","url":"https://d21buns5ku92am.cloudfront.net/60679/images/177734-pataphysics-22a729-large-1441182084.jpeg"},"square":{"width":"300","height":"300","url":"https://d21buns5ku92am.cloudfront.net/60679/images/177734-pataphysics-22a729-square-1441182084.jpeg"}},"pressroom_id":60679,"id":177734,"permalink":"/images/177734","type":"image","content_type":"jpeg"}],"title":"Pataphysical Things"}}
@@ -0,0 +1,135 @@
1
+ {
2
+ "data": [{
3
+ "id":109765,
4
+ "pressroom_id":60679,
5
+ "title":"3 of 27",
6
+ "subtitle":"",
7
+ "release_date":"2015-09-02T13:55:34.000Z",
8
+ "release_location":null,
9
+ "language":"en",
10
+ "social_media_pitch":null,
11
+ "summary":"",
12
+ "body_html":"",
13
+ "permalink":"/109765-3-of-27",
14
+ "type":"story",
15
+ "state":"published",
16
+ "short_link":"http://pr.co/p/002cp1",
17
+ "pdf":null,
18
+ "show_in_timeline":true,
19
+ "content_as_json":"{\"data\":[{\"type\":\"header\",\"data\":{\"title\":\"3 of 27\",\"subtitle\":\"\"}}]}",
20
+ "draft_content_as_json":null
21
+ },
22
+ {
23
+ "id":109764,
24
+ "pressroom_id":60679,
25
+ "title":"2 of 27",
26
+ "subtitle":"",
27
+ "release_date":"2015-09-02T13:55:16.000Z",
28
+ "release_location":null,
29
+ "language":"de",
30
+ "social_media_pitch":null,
31
+ "summary":"",
32
+ "body_html":"",
33
+ "permalink":"/109764-2-of-27",
34
+ "type":"story",
35
+ "state":"published",
36
+ "short_link":"http://pr.co/p/002cp0",
37
+ "pdf":null,
38
+ "show_in_timeline":true,
39
+ "content_as_json":"{\"data\":[{\"type\":\"header\",\"data\":{\"title\":\"2 of 27\",\"subtitle\":\"\"}}]}",
40
+ "draft_content_as_json":null
41
+ },
42
+ {
43
+ "id":109763,
44
+ "pressroom_id":60679,
45
+ "title":"1 of 27",
46
+ "subtitle":"",
47
+ "release_date":"2015-09-02T13:54:38.000Z",
48
+ "release_location":null,
49
+ "language":"en",
50
+ "social_media_pitch":null,
51
+ "summary":"",
52
+ "body_html":"",
53
+ "permalink":"/109763-1-of-27",
54
+ "type":"story",
55
+ "state":"published",
56
+ "short_link":"http://pr.co/p/002coz",
57
+ "pdf":null,
58
+ "show_in_timeline":true,
59
+ "content_as_json":"{\"data\":[{\"type\":\"header\",\"data\":{\"title\":\"1 of 27\",\"subtitle\":\"\"}}]}",
60
+ "draft_content_as_json":null
61
+ },
62
+ {
63
+ "id":109545,
64
+ "pressroom_id":60679,
65
+ "title":"unpublished",
66
+ "subtitle":"nobody knows....",
67
+ "release_date":"2015-09-01T08:42:39.000Z",
68
+ "release_location":null,
69
+ "language":"en",
70
+ "social_media_pitch":null,
71
+ "summary":"the trouble I've seen!",
72
+ "body_html":"<p>the trouble I've seen!</p>",
73
+ "permalink":"/109545-unpublished",
74
+ "type":"story",
75
+ "state":"published",
76
+ "short_link":"http://pr.co/p/002cix",
77
+ "pdf":null,
78
+ "show_in_timeline":true,
79
+ "content_as_json":"{\"data\":[{\"type\":\"header\",\"data\":{\"title\":\"unpublished\",\"subtitle\":\"nobody knows....\"}},{\"type\":\"textarea\",\"data\":{\"body\":\"<p>the trouble I've seen!</p>\"}}]}",
80
+ "draft_content_as_json":null
81
+ },
82
+ {
83
+ "id":21463,
84
+ "pressroom_id":60679,
85
+ "press_release_id":109544,
86
+ "title":"CLIPPY CLIPPING",
87
+ "source":"Joan was quizzical, studying....",
88
+ "url":"http://en.wikipedia.com/wiki",
89
+ "release_date":"2015-08-31T10:00:00.000Z",
90
+ "shares":{"facebook":11338,"linkedin":0,"twitter":0},
91
+ "sizes":{
92
+ "original": {
93
+ "width":null,
94
+ "height":null,
95
+ "url":"https://d21buns5ku92am.cloudfront.net/60679/screenshots/d0b515fe-693c-414e-b3bf-192a56fe138f-4c961ffa0083c3f2392bb1754fa367378e841e73.png"
96
+ },
97
+ "thumbnail": {
98
+ "width":512,
99
+ "height":384,
100
+ "url":"https://d21buns5ku92am.cloudfront.net/60679/screenshots/21463-d0b515fe-693c-414e-b3bf-192a56fe138f-4c961ffa0083c3f2392bb1754fa367378e841e73-thumbnail.png"
101
+ }
102
+ },
103
+ "alexa":{"overall_rank":460861,"country_rank":248148,"country_rank_code":"US"},
104
+ "private":false,
105
+ "permalink":"/clippings/21463-clippy-clipping",
106
+ "type":"clipping",
107
+ "show_iframe":true,
108
+ "language":"de"
109
+ },
110
+ {
111
+ "id":109544,
112
+ "pressroom_id":60679,
113
+ "title":"Once more, dear Palcontents, once more!",
114
+ "subtitle":"Soon Ubu Roi shall be king of Poland anon!",
115
+ "release_date":"2015-08-31T08:32:08.000Z",
116
+ "release_location":null,
117
+ "language":"en",
118
+ "social_media_pitch":null,
119
+ "summary":"my custom summary",
120
+ "body_html":"<p></p><p></p><p></p><p><span>This is a test press release.</span></p><p><span><br /></span></p><p><span>Aha, I can bold using command+b!<i> And italics with command+i!!</i></span></p><p><span><i><br /></i></span></p><p>How to get a list?</p><p>1. hello</p><p>2. hello</p><p><br /></p><p>doesn't seem to format itself</p><p><br /></p><p>what else can we do?</p><p><br /></p><p>I want a sub header!</p><p><br /></p><p><b>Hey!!!!</b></p><p><b><br /></b></p><p><b>HELLO</b></p><p><b><br /></b></p><p>SO... it's pretty rudimentary...</p><p><br /></p><p>Yarhar! By selecting we can do things, beautiful things!</p><p></p><ul><li><span>Hwæt. We Gar-Dena in gear dagum.</span><br /></li><li><span>Theodcyninga thrym gefrunon.</span><br /></li><li><span>Hu dha æthelingas ellen fremedon.</span><br /></li></ul><p></p><ol><li><span>Arddyledog ganu cyman ofri</span><br /></li><li><span>Twrf tân a tharân a rhyferti</span><br /></li><li><span>Gwryd ardderchog, marchog mysgi</span><br /></li><li><span>Rhyddfedel, rhyfel a eidduni</span><br /></li></ol><p><br /></p>",
121
+ "permalink":"/109544-once-more-dear-palcontents-once-more",
122
+ "type":"story",
123
+ "state":"published",
124
+ "short_link":"http://pr.co/p/002ciw",
125
+ "pdf":null,
126
+ "show_in_timeline":true,
127
+ "content_as_json":"{\"data\":[{\"type\":\"header\",\"data\":{\"title\":\"Once more, dear Palcontents, once more!\",\"subtitle\":\"Soon Ubu Roi shall be king of Poland anon!\",\"template\":true}},{\"type\":\"textarea\",\"data\":{\"body\":\"<p></p><p></p><p></p><p><span style=\\\"font-family: inherit; font-size: 1rem; line-height: 1.6;\\\">This is a test press release.</span></p><p><span style=\\\"font-family: inherit; font-size: 1rem; line-height: 1.6;\\\"><br></span></p><p><span style=\\\"font-weight: 600;\\\">Aha, I can bold using command+b!<i>&nbsp;And italics with command+i!!</i></span></p><p><span style=\\\"font-weight: 600;\\\"><i><br></i></span></p><p>How to get a list?</p><p>1. hello</p><p>2. hello</p><p><br></p><p>doesn't seem to format itself</p><p><br></p><p>what else can we do?</p><p><br></p><p>I want a sub header!</p><p><br></p><p><b>Hey!!!!</b></p><p><b><br></b></p><p><b>HELLO</b></p><p><b><br></b></p><p>SO... it's pretty rudimentary...</p><p><br></p><p>Yarhar! By selecting we can do things, beautiful things!</p><p><ul><li><span style=\\\"font-family: inherit; font-size: 1rem; line-height: 1.6;\\\">Hwæt. We Gar-Dena in gear dagum.</span><br></li><li><span style=\\\"font-family: inherit; font-size: 1rem; line-height: 1.6;\\\">Theodcyninga thrym gefrunon.</span><br></li><li><span style=\\\"font-family: inherit; font-size: 1rem; line-height: 1.6;\\\">Hu dha æthelingas ellen fremedon.</span><br></li></ul><p><ol><li><span style=\\\"font-family: inherit; font-size: 1rem; line-height: 1.6;\\\">Arddyledog ganu cyman ofri</span><br></li><li><span style=\\\"font-family: inherit; font-size: 1rem; line-height: 1.6;\\\">Twrf tân a tharân a rhyferti</span><br></li><li><span style=\\\"font-family: inherit; font-size: 1rem; line-height: 1.6;\\\">Gwryd ardderchog, marchog mysgi</span><br></li><li><span style=\\\"font-family: inherit; font-size: 1rem; line-height: 1.6;\\\">Rhyddfedel, rhyfel a eidduni</span><br></li></ol></p></p><p><br></p>\",\"template\":true}}]}",
128
+ "draft_content_as_json":null
129
+ }],
130
+ "paging": {
131
+ "page":1,
132
+ "limit":30,
133
+ "total":30
134
+ }
135
+ }
@@ -0,0 +1,19 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ require File.expand_path("../../test/dummy/config/environment.rb", __FILE__)
5
+ ActiveRecord::Migrator.migrations_paths = [File.expand_path("../../test/dummy/db/migrate", __FILE__)]
6
+ require "rails/test_help"
7
+
8
+ # Filter out Minitest backtrace while allowing backtrace from other libraries
9
+ # to be shown.
10
+ Minitest.backtrace_filter = Minitest::BacktraceFilter.new
11
+
12
+ # Load support files
13
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
14
+
15
+ # Load fixtures from the engine
16
+ if ActiveSupport::TestCase.respond_to?(:fixture_path=)
17
+ ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
18
+ ActiveSupport::TestCase.fixtures :all
19
+ end
metadata ADDED
@@ -0,0 +1,302 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: foxynews
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Adam Bahlke
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-03-01 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 4.2.3
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 4.2.3
27
+ - !ruby/object:Gem::Dependency
28
+ name: httparty
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '0.13'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '0.13'
41
+ - !ruby/object:Gem::Dependency
42
+ name: sqlite3
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ description: Foxynews provides a Rails Engine skin to your PR.co account. By default
56
+ you can mount the Pressrooms and Presskits controllers, which follow the design
57
+ and classnames of the PR.co basic layout. Otherwise, you can set up your own custom
58
+ layouts using the parials.
59
+ email:
60
+ - adam.bahlke@hitfoxgroup.com
61
+ executables: []
62
+ extensions: []
63
+ extra_rdoc_files: []
64
+ files:
65
+ - MIT-LICENSE
66
+ - Rakefile
67
+ - app/controllers/foxynews/presskits_controller.rb
68
+ - app/controllers/foxynews/pressrooms_controller.rb
69
+ - app/helpers/foxynews/foxynews_helper.rb
70
+ - app/models/foxynews/featured_item.rb
71
+ - app/services/foxynews/clipping.rb
72
+ - app/services/foxynews/paging.rb
73
+ - app/services/foxynews/parser.rb
74
+ - app/services/foxynews/press_release.rb
75
+ - app/services/foxynews/press_release_setter.rb
76
+ - app/services/foxynews/presskit.rb
77
+ - app/services/foxynews/presskit_setter.rb
78
+ - app/services/foxynews/pressroom.rb
79
+ - app/services/foxynews/pressroom_setter.rb
80
+ - app/views/foxynews/partials/_contact_details.html.erb
81
+ - app/views/foxynews/partials/_contact_panels.html.erb
82
+ - app/views/foxynews/partials/_contact_social_media.html.erb
83
+ - app/views/foxynews/partials/_featured_press_release.html.erb
84
+ - app/views/foxynews/partials/_modal.html.erb
85
+ - app/views/foxynews/partials/_presskits.html.erb
86
+ - app/views/foxynews/partials/_pressroom_about.html.erb
87
+ - app/views/foxynews/partials/_spokesman_details.html.erb
88
+ - app/views/foxynews/partials/_thumbnails.html.erb
89
+ - app/views/foxynews/partials/_timeline.html.erb
90
+ - app/views/foxynews/presskits/show.html.erb
91
+ - app/views/foxynews/pressrooms/index.html.erb
92
+ - app/views/foxynews/pressrooms/show.html.erb
93
+ - config/locales/en.yml
94
+ - config/routes.rb
95
+ - db/migrate/20150915120000_create_foxynews_featured_items.rb
96
+ - db/migrate/20150921110000_change_article_to_article_id.rb
97
+ - lib/foxynews.rb
98
+ - lib/foxynews/engine.rb
99
+ - lib/foxynews/version.rb
100
+ - lib/generators/foxynews/initializer_generator.rb
101
+ - lib/generators/foxynews/templates/foxynews_template.rb
102
+ - lib/tasks/foxynews_tasks.rake
103
+ - test/dummy/README.rdoc
104
+ - test/dummy/Rakefile
105
+ - test/dummy/app/assets/javascripts/application.js
106
+ - test/dummy/app/assets/stylesheets/application.css
107
+ - test/dummy/app/controllers/application_controller.rb
108
+ - test/dummy/app/helpers/application_helper.rb
109
+ - test/dummy/app/views/layouts/application.html.erb
110
+ - test/dummy/bin/bundle
111
+ - test/dummy/bin/rails
112
+ - test/dummy/bin/rake
113
+ - test/dummy/bin/setup
114
+ - test/dummy/config.ru
115
+ - test/dummy/config/application.rb
116
+ - test/dummy/config/boot.rb
117
+ - test/dummy/config/database.yml
118
+ - test/dummy/config/environment.rb
119
+ - test/dummy/config/environments/development.rb
120
+ - test/dummy/config/environments/production.rb
121
+ - test/dummy/config/environments/test.rb
122
+ - test/dummy/config/initializers/assets.rb
123
+ - test/dummy/config/initializers/backtrace_silencers.rb
124
+ - test/dummy/config/initializers/cookies_serializer.rb
125
+ - test/dummy/config/initializers/filter_parameter_logging.rb
126
+ - test/dummy/config/initializers/foxynews.rb
127
+ - test/dummy/config/initializers/inflections.rb
128
+ - test/dummy/config/initializers/mime_types.rb
129
+ - test/dummy/config/initializers/session_store.rb
130
+ - test/dummy/config/initializers/wrap_parameters.rb
131
+ - test/dummy/config/locales/en.yml
132
+ - test/dummy/config/routes.rb
133
+ - test/dummy/config/secrets.yml
134
+ - test/dummy/db/development.sqlite3
135
+ - test/dummy/db/migrate/20150921115208_create_foxynews_featured_items.foxynews.rb
136
+ - test/dummy/db/migrate/20150921115209_change_article_to_article_id.foxynews.rb
137
+ - test/dummy/db/schema.rb
138
+ - test/dummy/db/test.sqlite3
139
+ - test/dummy/log/development.log
140
+ - test/dummy/log/test.log
141
+ - test/dummy/public/404.html
142
+ - test/dummy/public/422.html
143
+ - test/dummy/public/500.html
144
+ - test/dummy/public/favicon.ico
145
+ - test/dummy/spec/features/pressroom_feature_spec.rb
146
+ - test/dummy/spec/rails_helper.rb
147
+ - test/dummy/spec/services/foxynews/press_release_setter_spec.rb
148
+ - test/dummy/spec/services/foxynews/presskit_setter_spec.rb
149
+ - test/dummy/spec/services/foxynews/pressroom_setter_spec.rb
150
+ - test/dummy/spec/spec_helper.rb
151
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/0ieeKnMtadPClPcf7n4_-7f9dFAa5EKPn-nhh8g4E_I.cache
152
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/3fB7XY5WyPu8FySUeyC372vbXJ2Ix4iB1QaNHXbk_BY.cache
153
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/5Lly_CA8DZvPhQV2jDQx-Y6P_y3Ygra9t5jfSlGhHDA.cache
154
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/9dpacct--ty4g6t9ET48xr39Oa8KFJq67stokNMRBE0.cache
155
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/CzzhnWANCyFkiMpG8MGAUus0oHH7jFGSjgKNQytoGB8.cache
156
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/EHcymtlGKlOMMf7gOs-X2_jpvcBTW92Qeaxu2B5-Wbg.cache
157
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/LGn_lRMM4VGWV-tOkzVE711bHWh5XhMIHtLL-ydCc5s.cache
158
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/OI6uxGcnsKavdWTtwDAasU3wPx8QXhzBgV0X2n1KjMQ.cache
159
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/P6CzQLNPa_qmqh4oEs_FJcmJUu_RgN9rxL-u5eUX8a8.cache
160
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/SGxtd6iKmB2TMwH-VOx-jVYXh5m_09UjNEOkifPHLL0.cache
161
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/ZF-VgWKVwd4l6mDAOWYmcWP44GkNpVapsSWxOVT_jXs.cache
162
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/e_NLP8hWf6Ma_xNwWM6lWrQIYZIy62BM5mIpRIVEz24.cache
163
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/eyIVoTHtfeBUAG8zonwJLMFQsk7muavIqU6by75vy6E.cache
164
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/hZi1k6tpxxCGYxRe7zY74ItcOI8gZrREOpGuA8JSpGg.cache
165
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/hkb4T84XlBEogo6JU3t-W-8oWx1BbAVq7dqJ2DNHwt4.cache
166
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/pEhaat2KBd5SrT7szC_8R1_6hK17FTpvoRFkmCRSD3M.cache
167
+ - test/dummy/tmp/cache/assets/test/sprockets/v3.0/1fnsGuWQsCAFit0Lhxi-NuDTrnuzg0MPZnEeYfoXT9Q.cache
168
+ - test/dummy/tmp/cache/assets/test/sprockets/v3.0/5Lly_CA8DZvPhQV2jDQx-Y6P_y3Ygra9t5jfSlGhHDA.cache
169
+ - test/dummy/tmp/cache/assets/test/sprockets/v3.0/9dpacct--ty4g6t9ET48xr39Oa8KFJq67stokNMRBE0.cache
170
+ - test/dummy/tmp/cache/assets/test/sprockets/v3.0/9jPCqzZvmeFf31Rz8y3OEo8OQXEHVcwmLgkx0tXs-o8.cache
171
+ - test/dummy/tmp/cache/assets/test/sprockets/v3.0/CzzhnWANCyFkiMpG8MGAUus0oHH7jFGSjgKNQytoGB8.cache
172
+ - test/dummy/tmp/cache/assets/test/sprockets/v3.0/N-1CMS_rjg3LKA5Sh64XgIXIzy-4T-PQ8PIf4HY_R8s.cache
173
+ - test/dummy/tmp/cache/assets/test/sprockets/v3.0/OI6uxGcnsKavdWTtwDAasU3wPx8QXhzBgV0X2n1KjMQ.cache
174
+ - test/dummy/tmp/cache/assets/test/sprockets/v3.0/WZy7M8vyOXLZi2NSRoODBS6edlqJTSpd1JoU8Aq03fY.cache
175
+ - test/dummy/tmp/cache/assets/test/sprockets/v3.0/ZF-VgWKVwd4l6mDAOWYmcWP44GkNpVapsSWxOVT_jXs.cache
176
+ - test/dummy/tmp/cache/assets/test/sprockets/v3.0/eyIVoTHtfeBUAG8zonwJLMFQsk7muavIqU6by75vy6E.cache
177
+ - test/dummy/tmp/cache/assets/test/sprockets/v3.0/hZi1k6tpxxCGYxRe7zY74ItcOI8gZrREOpGuA8JSpGg.cache
178
+ - test/dummy/tmp/cache/assets/test/sprockets/v3.0/o2kqwqoUQ3gkgncZO1IWdVRzFD0wCSQ-HyL62cINFOU.cache
179
+ - test/dummy/tmp/cache/assets/test/sprockets/v3.0/pEhaat2KBd5SrT7szC_8R1_6hK17FTpvoRFkmCRSD3M.cache
180
+ - test/dummy/tmp/cache/assets/test/sprockets/v3.0/pQIgTfLmEPykNamzxdqBww21SMT7YlZlZGy6hgQ6eVE.cache
181
+ - test/dummy/tmp/cache/assets/test/sprockets/v3.0/tAO-KLuNv0f9gUG3lGwGw7ujopxtlyjAr83jAzLWyq0.cache
182
+ - test/dummy/tmp/cache/assets/test/sprockets/v3.0/td9wUl9SLRnSSgE2ZK_VqCzLxTkFiCW50KkOhE916Wo.cache
183
+ - test/dummy_responses/pressrooms_id.json
184
+ - test/dummy_responses/pressrooms_id_press_releases.json
185
+ - test/dummy_responses/pressrooms_id_press_releases_109544.json
186
+ - test/dummy_responses/pressrooms_id_presskits.json
187
+ - test/dummy_responses/pressrooms_id_presskits_215958.json
188
+ - test/dummy_responses/pressrooms_id_timeline.json
189
+ - test/test_helper.rb
190
+ homepage: https://github.com/HitFox/foxynews
191
+ licenses:
192
+ - MIT
193
+ metadata: {}
194
+ post_install_message:
195
+ rdoc_options: []
196
+ require_paths:
197
+ - lib
198
+ required_ruby_version: !ruby/object:Gem::Requirement
199
+ requirements:
200
+ - - ">="
201
+ - !ruby/object:Gem::Version
202
+ version: '0'
203
+ required_rubygems_version: !ruby/object:Gem::Requirement
204
+ requirements:
205
+ - - ">="
206
+ - !ruby/object:Gem::Version
207
+ version: '0'
208
+ requirements: []
209
+ rubyforge_project:
210
+ rubygems_version: 2.4.8
211
+ signing_key:
212
+ specification_version: 4
213
+ summary: Foxynews connects with a PR.co account and lets users access their pressrooms,
214
+ presskits, timelines, stories, and clippings
215
+ test_files:
216
+ - test/dummy/app/assets/javascripts/application.js
217
+ - test/dummy/app/assets/stylesheets/application.css
218
+ - test/dummy/app/controllers/application_controller.rb
219
+ - test/dummy/app/helpers/application_helper.rb
220
+ - test/dummy/app/views/layouts/application.html.erb
221
+ - test/dummy/bin/bundle
222
+ - test/dummy/bin/rails
223
+ - test/dummy/bin/rake
224
+ - test/dummy/bin/setup
225
+ - test/dummy/config/application.rb
226
+ - test/dummy/config/boot.rb
227
+ - test/dummy/config/database.yml
228
+ - test/dummy/config/environment.rb
229
+ - test/dummy/config/environments/development.rb
230
+ - test/dummy/config/environments/production.rb
231
+ - test/dummy/config/environments/test.rb
232
+ - test/dummy/config/initializers/assets.rb
233
+ - test/dummy/config/initializers/backtrace_silencers.rb
234
+ - test/dummy/config/initializers/cookies_serializer.rb
235
+ - test/dummy/config/initializers/filter_parameter_logging.rb
236
+ - test/dummy/config/initializers/foxynews.rb
237
+ - test/dummy/config/initializers/inflections.rb
238
+ - test/dummy/config/initializers/mime_types.rb
239
+ - test/dummy/config/initializers/session_store.rb
240
+ - test/dummy/config/initializers/wrap_parameters.rb
241
+ - test/dummy/config/locales/en.yml
242
+ - test/dummy/config/routes.rb
243
+ - test/dummy/config/secrets.yml
244
+ - test/dummy/config.ru
245
+ - test/dummy/db/development.sqlite3
246
+ - test/dummy/db/migrate/20150921115208_create_foxynews_featured_items.foxynews.rb
247
+ - test/dummy/db/migrate/20150921115209_change_article_to_article_id.foxynews.rb
248
+ - test/dummy/db/schema.rb
249
+ - test/dummy/db/test.sqlite3
250
+ - test/dummy/log/development.log
251
+ - test/dummy/log/test.log
252
+ - test/dummy/public/404.html
253
+ - test/dummy/public/422.html
254
+ - test/dummy/public/500.html
255
+ - test/dummy/public/favicon.ico
256
+ - test/dummy/Rakefile
257
+ - test/dummy/README.rdoc
258
+ - test/dummy/spec/features/pressroom_feature_spec.rb
259
+ - test/dummy/spec/rails_helper.rb
260
+ - test/dummy/spec/services/foxynews/press_release_setter_spec.rb
261
+ - test/dummy/spec/services/foxynews/presskit_setter_spec.rb
262
+ - test/dummy/spec/services/foxynews/pressroom_setter_spec.rb
263
+ - test/dummy/spec/spec_helper.rb
264
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/0ieeKnMtadPClPcf7n4_-7f9dFAa5EKPn-nhh8g4E_I.cache
265
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/3fB7XY5WyPu8FySUeyC372vbXJ2Ix4iB1QaNHXbk_BY.cache
266
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/5Lly_CA8DZvPhQV2jDQx-Y6P_y3Ygra9t5jfSlGhHDA.cache
267
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/9dpacct--ty4g6t9ET48xr39Oa8KFJq67stokNMRBE0.cache
268
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/CzzhnWANCyFkiMpG8MGAUus0oHH7jFGSjgKNQytoGB8.cache
269
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/e_NLP8hWf6Ma_xNwWM6lWrQIYZIy62BM5mIpRIVEz24.cache
270
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/EHcymtlGKlOMMf7gOs-X2_jpvcBTW92Qeaxu2B5-Wbg.cache
271
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/eyIVoTHtfeBUAG8zonwJLMFQsk7muavIqU6by75vy6E.cache
272
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/hkb4T84XlBEogo6JU3t-W-8oWx1BbAVq7dqJ2DNHwt4.cache
273
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/hZi1k6tpxxCGYxRe7zY74ItcOI8gZrREOpGuA8JSpGg.cache
274
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/LGn_lRMM4VGWV-tOkzVE711bHWh5XhMIHtLL-ydCc5s.cache
275
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/OI6uxGcnsKavdWTtwDAasU3wPx8QXhzBgV0X2n1KjMQ.cache
276
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/P6CzQLNPa_qmqh4oEs_FJcmJUu_RgN9rxL-u5eUX8a8.cache
277
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/pEhaat2KBd5SrT7szC_8R1_6hK17FTpvoRFkmCRSD3M.cache
278
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/SGxtd6iKmB2TMwH-VOx-jVYXh5m_09UjNEOkifPHLL0.cache
279
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/ZF-VgWKVwd4l6mDAOWYmcWP44GkNpVapsSWxOVT_jXs.cache
280
+ - test/dummy/tmp/cache/assets/test/sprockets/v3.0/1fnsGuWQsCAFit0Lhxi-NuDTrnuzg0MPZnEeYfoXT9Q.cache
281
+ - test/dummy/tmp/cache/assets/test/sprockets/v3.0/5Lly_CA8DZvPhQV2jDQx-Y6P_y3Ygra9t5jfSlGhHDA.cache
282
+ - test/dummy/tmp/cache/assets/test/sprockets/v3.0/9dpacct--ty4g6t9ET48xr39Oa8KFJq67stokNMRBE0.cache
283
+ - test/dummy/tmp/cache/assets/test/sprockets/v3.0/9jPCqzZvmeFf31Rz8y3OEo8OQXEHVcwmLgkx0tXs-o8.cache
284
+ - test/dummy/tmp/cache/assets/test/sprockets/v3.0/CzzhnWANCyFkiMpG8MGAUus0oHH7jFGSjgKNQytoGB8.cache
285
+ - test/dummy/tmp/cache/assets/test/sprockets/v3.0/eyIVoTHtfeBUAG8zonwJLMFQsk7muavIqU6by75vy6E.cache
286
+ - test/dummy/tmp/cache/assets/test/sprockets/v3.0/hZi1k6tpxxCGYxRe7zY74ItcOI8gZrREOpGuA8JSpGg.cache
287
+ - test/dummy/tmp/cache/assets/test/sprockets/v3.0/N-1CMS_rjg3LKA5Sh64XgIXIzy-4T-PQ8PIf4HY_R8s.cache
288
+ - test/dummy/tmp/cache/assets/test/sprockets/v3.0/o2kqwqoUQ3gkgncZO1IWdVRzFD0wCSQ-HyL62cINFOU.cache
289
+ - test/dummy/tmp/cache/assets/test/sprockets/v3.0/OI6uxGcnsKavdWTtwDAasU3wPx8QXhzBgV0X2n1KjMQ.cache
290
+ - test/dummy/tmp/cache/assets/test/sprockets/v3.0/pEhaat2KBd5SrT7szC_8R1_6hK17FTpvoRFkmCRSD3M.cache
291
+ - test/dummy/tmp/cache/assets/test/sprockets/v3.0/pQIgTfLmEPykNamzxdqBww21SMT7YlZlZGy6hgQ6eVE.cache
292
+ - test/dummy/tmp/cache/assets/test/sprockets/v3.0/tAO-KLuNv0f9gUG3lGwGw7ujopxtlyjAr83jAzLWyq0.cache
293
+ - test/dummy/tmp/cache/assets/test/sprockets/v3.0/td9wUl9SLRnSSgE2ZK_VqCzLxTkFiCW50KkOhE916Wo.cache
294
+ - test/dummy/tmp/cache/assets/test/sprockets/v3.0/WZy7M8vyOXLZi2NSRoODBS6edlqJTSpd1JoU8Aq03fY.cache
295
+ - test/dummy/tmp/cache/assets/test/sprockets/v3.0/ZF-VgWKVwd4l6mDAOWYmcWP44GkNpVapsSWxOVT_jXs.cache
296
+ - test/dummy_responses/pressrooms_id.json
297
+ - test/dummy_responses/pressrooms_id_press_releases.json
298
+ - test/dummy_responses/pressrooms_id_press_releases_109544.json
299
+ - test/dummy_responses/pressrooms_id_presskits.json
300
+ - test/dummy_responses/pressrooms_id_presskits_215958.json
301
+ - test/dummy_responses/pressrooms_id_timeline.json
302
+ - test/test_helper.rb