Sha256: 674d0b73ebf08def8744d3baaa7e3493795e2d4c965e038d045fc117de788fc5

Contents?: true

Size: 312 Bytes

Versions: 5

Compression:

Stored size: 312 Bytes

Contents

# dummy up React::Config so it doesn't complain

module React
  module Config
    extend self
    def environment=(value)
      config[:environment] = value
    end

    def config
      @config ||= default_config
    end

    def default_config
      {
        environment: 'express'
      }
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
hyper-console-0.1.4 lib/react/config/client.rb
hyper-console-0.1.3 lib/react/config/client.rb
hyper-console-0.1.2 lib/react/config/client.rb
hyper-console-0.1.1 lib/react/config/client.rb
hyper-console-0.1.0 lib/react/config/client.rb