bricky 0.0.13 → 0.0.14
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 +8 -8
- data/etc/bricks/debian/builder +0 -3
- data/etc/templates/bricky/bricky.yml +1 -0
- data/lib/bricky/command.rb +7 -1
- data/lib/bricky/commands/bootstrap.rb +1 -1
- data/lib/bricky/commands/install.rb +3 -0
- data/lib/bricky/commands/version.rb +9 -0
- data/lib/bricky/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
YmUxNjQxYjVjMmQxOTc0NGFhZjk0MWEwNjk1ODI3YTQ2YTBmOTY4Nw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
OTgyOWViMmYxNmY2OGU5YWEzZmI4ZGM0MGFmZDgzNDMyNTMxOWVlNw==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MmY3ZmZmOWVhNTE2YjNiN2Q3OTJjYjUwNzQwZDU1M2RkNWUwYWI1NTRhYzlm
|
10
|
+
YWNiMzU3N2JmNDUwYWEyNjViNzY4OTM4OWVhZWZlZTk5MjEyYjA5OTZiNzZk
|
11
|
+
ZDZiZjBmMzc1NThlYzQxZjQ5MzZhMmFiYzQ0YjVlYWU2OGU2OWI=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
ZWRkNzQ2YjYxOWI3MjUyZTE2ZmEyMDRkNjhiM2ViY2I4M2ExNGI2M2M4OThk
|
14
|
+
MTlkOTdiZGExY2QzMGY4MWM0MmMxZjVkNzAwYTYyZjFjYzcxNjZjYjkwNGNh
|
15
|
+
M2I5MmUzZjhlODViNGM2OGZiOTFlYzk4NDViNDliZGI4NWJkMTM=
|
data/etc/bricks/debian/builder
CHANGED
data/lib/bricky/command.rb
CHANGED
@@ -5,8 +5,9 @@ require "colorize"
|
|
5
5
|
require "bricky/image"
|
6
6
|
require "bricky/requirements"
|
7
7
|
require "bricky/commands/base"
|
8
|
-
require "bricky/commands/install"
|
9
8
|
require "bricky/commands/builder"
|
9
|
+
require "bricky/commands/install"
|
10
|
+
require "bricky/commands/version"
|
10
11
|
require "bricky/commands/bootstrap"
|
11
12
|
|
12
13
|
module Bricky
|
@@ -24,6 +25,11 @@ module Bricky
|
|
24
25
|
end
|
25
26
|
end
|
26
27
|
|
28
|
+
desc :version, "bricky version"
|
29
|
+
def version
|
30
|
+
dispatch(:version)
|
31
|
+
end
|
32
|
+
|
27
33
|
private
|
28
34
|
def requirements
|
29
35
|
Bricky::Requirements.new
|
data/lib/bricky/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bricky
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.14
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- andrerocker
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-06-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -113,6 +113,7 @@ files:
|
|
113
113
|
- lib/bricky/commands/bootstrap.rb
|
114
114
|
- lib/bricky/commands/builder.rb
|
115
115
|
- lib/bricky/commands/install.rb
|
116
|
+
- lib/bricky/commands/version.rb
|
116
117
|
- lib/bricky/config.rb
|
117
118
|
- lib/bricky/image.rb
|
118
119
|
- lib/bricky/logger.rb
|
@@ -139,7 +140,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
139
140
|
version: '0'
|
140
141
|
requirements: []
|
141
142
|
rubyforge_project:
|
142
|
-
rubygems_version: 2.4.
|
143
|
+
rubygems_version: 2.4.4
|
143
144
|
signing_key:
|
144
145
|
specification_version: 4
|
145
146
|
summary: a smart way to build software packages
|