Sha256: a3836db844715d04b335e43276820bfd4ebc2fdd9064eac31212f6c6a8e0c2ef

Contents?: true

Size: 895 Bytes

Versions: 8

Compression:

Stored size: 895 Bytes

Contents

Native::Engine.routes.draw do

    if Native.configuration&.android
        get 'android', to: 'native/platforms#android'
    end
    if Native.configuration&.ios
        get 'ios', to: 'native/platforms#ios'
    end
    if Native.configuration&.uwp
        get 'uwp', to: 'native/platforms#uwp'
    end
    if Native.configuration&.chrome
        get 'chrome', to: 'native/platforms#chrome'
    end
    if Native.configuration&.osx
        get 'osx', to: 'native/platforms#osx'
    end
    if Native.configuration&.win32
        get 'win32', to: 'native/platforms#win32'
    end
    if Native.configuration&.win64
        get 'win64', to: 'native/platforms#win64'
    end
    if Native.configuration&.lin32
        get 'lin32', to: 'native/platforms#lin32'
    end
    if Native.configuration&.lin64
        get 'lin64', to: 'native/platforms#lin64'
    end

end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
native-2.1.4 config/routes.rb
native-2.1.3 config/routes.rb
native-2.1.2 config/routes.rb
native-2.1.1 config/routes.rb
native-2.1.0 config/routes.rb
native-2.0.1 config/routes.rb
native-2.0.0 config/routes.rb
native-1.0.0 config/routes.rb