spec/fixtures/components/foo/models/foo.rb in alephant-preview-0.5.3 vs spec/fixtures/components/foo/models/foo.rb in alephant-preview-0.6.0

- old
+ new

@@ -1,9 +1,9 @@ -require "alephant/renderer/views/json" +require 'alephant/renderer/views/json' module MyApp class Foo < ::Alephant::Renderer::Views::Json def to_h - { "content" => "as json" } + { 'content' => 'as json' } end end end