hyper-console 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/hyper-console-client.js +323 -274
- data/lib/hyper-console-client.min.js +3 -3
- data/lib/hyperloop/console/client_components.rb +211 -207
- data/lib/hyperloop/console/evaluate.rb +18 -16
- data/lib/hyperloop/console/hyper-console-client-manifest.rb +1 -0
- data/lib/hyperloop/console/version.rb +1 -1
- metadata +2 -2
@@ -1,18 +1,20 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
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
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
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'
|
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.
|
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-
|
11
|
+
date: 2017-04-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: hyper-operation
|