scone 0.1.3 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Makefile +9 -0
- data/cache/.gitignore +2 -0
- data/lib/scone/io/Directory.rb +0 -1
- data/lib/scone/io/File.rb +0 -1
- data/lib/scone/io/System.rb +0 -1
- data/lib/scone/ubuntu/Group.rb +0 -1
- data/lib/scone/ubuntu/Package.rb +0 -1
- data/lib/scone/ubuntu/User.rb +0 -1
- data/lib/scone/version.rb +1 -1
- data/lib/scone.rb +1 -0
- data/scone.gemspec +26 -10
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f0d27795c29032d6ed593f5a04b1b0a87bafbbd8021bc3f7c1aa35ead4771c3e
|
4
|
+
data.tar.gz: a5e509a0b5665ad22166c35a08ab047f5ed1e45e84b2ca542473213414324f25
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e77a018cb9e01cc8531425127b7e4b855389d403cc1c11a0271ca97616a3980492ae93a5c9e019e2abbbb827b0252d8fa5ac13c541d9f8d814f4040e223f8077
|
7
|
+
data.tar.gz: 83326ac63d84a3ecbd7a05db88bb760c4ff2a4a417dd74612281717f528a181062b41e23d8001601bae51de60c277ac4f74a11a0640f35411dc710195a7a9275
|
data/Makefile
CHANGED
@@ -3,6 +3,7 @@ RDOC ?= rdoc
|
|
3
3
|
BUNDLE ?= bundle
|
4
4
|
RAKE ?= rake
|
5
5
|
GEM ?= gem
|
6
|
+
RUFO ?= rufo
|
6
7
|
|
7
8
|
|
8
9
|
help: Makefile
|
@@ -69,6 +70,14 @@ release:
|
|
69
70
|
$(RAKE) release
|
70
71
|
|
71
72
|
|
73
|
+
## format: Format the ruby code.
|
74
|
+
.PHONY: format
|
75
|
+
format:
|
76
|
+
@echo ">> ============= Format the Code ============= <<"
|
77
|
+
$(GEM) install rufo
|
78
|
+
$(RUFO) .
|
79
|
+
|
80
|
+
|
72
81
|
## ci: Run all CI tests.
|
73
82
|
.PHONY: ci
|
74
83
|
ci: test
|
data/cache/.gitignore
ADDED
data/lib/scone/io/Directory.rb
CHANGED
data/lib/scone/io/System.rb
CHANGED
data/lib/scone/ubuntu/Group.rb
CHANGED
data/lib/scone/ubuntu/Package.rb
CHANGED
data/lib/scone/ubuntu/User.rb
CHANGED
data/lib/scone/version.rb
CHANGED
data/lib/scone.rb
CHANGED
data/scone.gemspec
CHANGED
@@ -1,15 +1,31 @@
|
|
1
|
+
#
|
2
|
+
# Scone - A Unified SDK for Linux OS Distributions in Ruby
|
3
|
+
#
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
+
# you may not use this file except in compliance with the License.
|
6
|
+
# You may obtain a copy of the License at
|
7
|
+
#
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
#
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
# See the License for the specific language governing permissions and
|
14
|
+
# limitations under the License.
|
15
|
+
#
|
16
|
+
|
1
17
|
require_relative "lib/scone/version"
|
2
18
|
|
3
19
|
Gem::Specification.new do |spec|
|
4
|
-
spec.name
|
5
|
-
spec.version
|
6
|
-
spec.authors
|
7
|
-
spec.email
|
20
|
+
spec.name = "scone"
|
21
|
+
spec.version = Scone::VERSION
|
22
|
+
spec.authors = ["clivern"]
|
23
|
+
spec.email = ["hello@clivern.com"]
|
8
24
|
|
9
|
-
spec.summary
|
10
|
-
spec.description
|
11
|
-
spec.homepage
|
12
|
-
spec.license
|
25
|
+
spec.summary = "A Unified SDK for Linux OS Distributions in Ruby."
|
26
|
+
spec.description = "A Set of Modules to work with a different Linux Operating System Distributions in Ruby."
|
27
|
+
spec.homepage = "https://github.com/Clivern/Scone"
|
28
|
+
spec.license = "MIT"
|
13
29
|
spec.required_ruby_version = ">= 2.6.0"
|
14
30
|
|
15
31
|
spec.metadata["homepage_uri"] = spec.homepage
|
@@ -23,8 +39,8 @@ Gem::Specification.new do |spec|
|
|
23
39
|
(f == __FILE__) || f.match(%r{\A(?:(?:test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
|
24
40
|
end
|
25
41
|
end
|
26
|
-
spec.bindir
|
27
|
-
spec.executables
|
42
|
+
spec.bindir = "exe"
|
43
|
+
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
28
44
|
spec.require_paths = ["lib"]
|
29
45
|
|
30
46
|
# Uncomment to register a new dependency of your gem
|
metadata
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: scone
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- clivern
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
@@ -31,6 +31,7 @@ files:
|
|
31
31
|
- Rakefile
|
32
32
|
- bin/console
|
33
33
|
- bin/setup
|
34
|
+
- cache/.gitignore
|
34
35
|
- lib/scone.rb
|
35
36
|
- lib/scone/io/Directory.rb
|
36
37
|
- lib/scone/io/File.rb
|