scone 0.1.3 → 0.1.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6a9248d4d941b82c07f56419d17339b865aec73f6283ace5ed427f6c11db46b9
4
- data.tar.gz: f1b53fb2d2239a2c0554a5bef8fa243bf997ed1edcbf3b043ed578c9e234c2b1
3
+ metadata.gz: f0d27795c29032d6ed593f5a04b1b0a87bafbbd8021bc3f7c1aa35ead4771c3e
4
+ data.tar.gz: a5e509a0b5665ad22166c35a08ab047f5ed1e45e84b2ca542473213414324f25
5
5
  SHA512:
6
- metadata.gz: 69993fa96e9110889566ef25f306305b465dd271936453654bdfa18bf477fb92afc7020a9e4cbeb2910b6b310efe5e29ddcd44598605c7d4e3e4d88162acac06
7
- data.tar.gz: 7465f2b7ec56421a619432fb0000ce7b4d464596f548c2588103883ad6209c37c6e43199dfdfbf44c2bbdea4d7ea070b9b8737e1c6a3bc5ce8edc60197dae580
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
@@ -0,0 +1,2 @@
1
+ *
2
+ !.gitignore
@@ -15,5 +15,4 @@
15
15
  #
16
16
 
17
17
  module Directory
18
-
19
18
  end
data/lib/scone/io/File.rb CHANGED
@@ -15,5 +15,4 @@
15
15
  #
16
16
 
17
17
  module File
18
-
19
18
  end
@@ -15,5 +15,4 @@
15
15
  #
16
16
 
17
17
  module System
18
-
19
18
  end
@@ -15,5 +15,4 @@
15
15
  #
16
16
 
17
17
  module Group
18
-
19
18
  end
@@ -15,5 +15,4 @@
15
15
  #
16
16
 
17
17
  module Package
18
-
19
18
  end
@@ -15,5 +15,4 @@
15
15
  #
16
16
 
17
17
  module User
18
-
19
18
  end
data/lib/scone/version.rb CHANGED
@@ -15,5 +15,5 @@
15
15
  #
16
16
 
17
17
  module Scone
18
- VERSION = "0.1.3"
18
+ VERSION = "0.1.4"
19
19
  end
data/lib/scone.rb CHANGED
@@ -18,5 +18,6 @@ require_relative "scone/version"
18
18
 
19
19
  module Scone
20
20
  class Error < StandardError; end
21
+
21
22
  # Your code goes here...
22
23
  end
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 = "scone"
5
- spec.version = Scone::VERSION
6
- spec.authors = ["Clivern"]
7
- spec.email = ["hello@clivern.com"]
20
+ spec.name = "scone"
21
+ spec.version = Scone::VERSION
22
+ spec.authors = ["clivern"]
23
+ spec.email = ["hello@clivern.com"]
8
24
 
9
- spec.summary = "A Unified SDK for Linux OS Distributions in Ruby."
10
- spec.description = "A Set of Modules to work with a different Linux Operating System Distributions in Ruby."
11
- spec.homepage = "https://github.com/Clivern/Scone"
12
- spec.license = "MIT"
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 = "exe"
27
- spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
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.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
- - Clivern
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