Ubuntu Pastebin

Paste from bdx at Wed, 14 Jun 2017 17:37:04 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
$ snapcraft
Searching for local plugin for x_ruby
DEPRECATED: the plugin used by part 'ruby' needs to be updated to accept project options in its initializer. See https://github.com/snapcore/snapcraft/blob/master/docs/plugins.md#initializing-a-plugin for more information
__init__() missing 1 required positional argument: 'source_dir'

$ cat snap/snapcraft.yaml 
name: ruby-test
version: '0.1'
summary: ruby-test
description: |
  Ruby-test

grade: devel
confinement: devmode

parts:
  ruby:
    # See 'snapcraft plugins'
    plugin: x_ruby
    ruby-version: "2.3.1"

$ vim snap/snapcraft.yaml 

$ cat snap/snapcraft.yaml 
name: ruby-test
version: '0.1'
summary: ruby-test
description: |
  Ruby-test

grade: devel
confinement: devmode

parts:
  ruby:
    # See 'snapcraft plugins'
    plugin: ruby
    ruby-version: "2.3.1"

$ snapcraft
Searching for local plugin for ruby
Issue while loading plugin: unknown plugin: ruby
unknown plugin: ruby
Download as text