hyper-console 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,18 +1,20 @@
1
- class Evaluate < Hyperloop::ServerOp
2
- param acting_user: nil, nils: true
3
- param :target_id
4
- param :sender_id
5
- param :context
6
- param string: nil
1
+ module Hyperloop
2
+ module Console
3
+ class Evaluate < Hyperloop::ServerOp
4
+ param acting_user: nil, nils: true
5
+ param :target_id
6
+ param :sender_id
7
+ param :context
8
+ param string: nil
9
+ dispatch_to { Hyperloop::Application }
10
+ end
7
11
 
8
- dispatch_to { Hyperloop::Application }
9
- end
10
-
11
- class Response < Hyperloop::ServerOp
12
- param acting_user: nil, nils: true
13
- param :target_id
14
- param :kind
15
- param :message
16
-
17
- dispatch_to { Hyperloop::Application }
12
+ class Response < Hyperloop::ServerOp
13
+ param acting_user: nil, nils: true
14
+ param :target_id
15
+ param :kind
16
+ param :message
17
+ dispatch_to { Hyperloop::Application }
18
+ end
19
+ end
18
20
  end
@@ -16,6 +16,7 @@ require 'opal/compiler'
16
16
  require 'active_support'
17
17
  require 'securerandom'
18
18
  require 'hyperloop/console/evaluate'
19
+ require 'hyperloop/console/version'
19
20
  require 'hyperloop/console/sources/codemirror'
20
21
  require 'hyperloop/console/sources/jquery-2.1.4'
21
22
  require 'hyperloop/console/sources/react'
@@ -1,5 +1,5 @@
1
1
  module Hyperloop
2
2
  module Console
3
- VERSION = "0.1.1"
3
+ VERSION = "0.1.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hyper-console
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - catmando
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-04-24 00:00:00.000000000 Z
11
+ date: 2017-04-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: hyper-operation