Skip to content

Commit 2044a2b

Browse files
committed
chore: pre relase for name
1 parent 2fdce29 commit 2044a2b

File tree

4 files changed

+67
-12
lines changed

4 files changed

+67
-12
lines changed

Gemfile.lock

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
PATH
2+
remote: .
3+
specs:
4+
rootfs (0.0.1.pre)
5+
6+
GEM
7+
remote: https://rubygems.org/
8+
specs:
9+
ast (2.4.2)
10+
diff-lcs (1.5.0)
11+
json (2.6.3)
12+
parallel (1.22.1)
13+
parser (3.1.3.0)
14+
ast (~> 2.4.1)
15+
rainbow (3.1.1)
16+
rake (13.0.6)
17+
regexp_parser (2.6.1)
18+
rexml (3.2.5)
19+
rspec (3.12.0)
20+
rspec-core (~> 3.12.0)
21+
rspec-expectations (~> 3.12.0)
22+
rspec-mocks (~> 3.12.0)
23+
rspec-core (3.12.0)
24+
rspec-support (~> 3.12.0)
25+
rspec-expectations (3.12.1)
26+
diff-lcs (>= 1.2.0, < 2.0)
27+
rspec-support (~> 3.12.0)
28+
rspec-mocks (3.12.1)
29+
diff-lcs (>= 1.2.0, < 2.0)
30+
rspec-support (~> 3.12.0)
31+
rspec-support (3.12.0)
32+
rubocop (1.41.1)
33+
json (~> 2.3)
34+
parallel (~> 1.10)
35+
parser (>= 3.1.2.1)
36+
rainbow (>= 2.2.2, < 4.0)
37+
regexp_parser (>= 1.8, < 3.0)
38+
rexml (>= 3.2.5, < 4.0)
39+
rubocop-ast (>= 1.23.0, < 2.0)
40+
ruby-progressbar (~> 1.7)
41+
unicode-display_width (>= 1.4.0, < 3.0)
42+
rubocop-ast (1.24.1)
43+
parser (>= 3.1.1.0)
44+
ruby-progressbar (1.11.0)
45+
unicode-display_width (2.3.0)
46+
47+
PLATFORMS
48+
x86_64-linux
49+
50+
DEPENDENCIES
51+
rake (~> 13.0)
52+
rootfs!
53+
rspec (~> 3.0)
54+
rubocop (~> 1.21)
55+
56+
BUNDLED WITH
57+
2.4.1

README.md

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
# Rootfs
22

3-
TODO: Delete this and the text below, and describe your gem
3+
> Rootfs build workflow powered by ruby
44
5-
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/rootfs`. To experiment with that code, run `bin/console` for an interactive prompt.
5+
Build workflow for rootfs images, Ubuntu openSUSE and more
66

77
## Installation
88

9-
TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
10-
119
Install the gem and add to the application's Gemfile by executing:
1210

1311
$ bundle add UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG
@@ -28,4 +26,4 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
2826

2927
## Contributing
3028

31-
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/rootfs.
29+
Bug reports and pull requests are welcome on GitHub at https://github.com/initdc/rootfs.

lib/rootfs/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Rootfs
4-
VERSION = "0.1.0"
4+
VERSION = "0.0.1.pre"
55
end

rootfs.gemspec

+6-6
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ Gem::Specification.new do |spec|
88
spec.authors = ["initdc"]
99
spec.email = ["[email protected]"]
1010

11-
spec.summary = "TODO: Write a short summary, because RubyGems requires one."
12-
spec.description = "TODO: Write a longer description or delete this line."
13-
spec.homepage = "TODO: Put your gem's website or public repo URL here."
11+
spec.summary = "Rootfs build workflow powered by ruby"
12+
spec.description = "Build workflow for rootfs images, Ubuntu openSUSE and more"
13+
spec.homepage = "https://github.com/initdc/rootfs"
1414
spec.required_ruby_version = ">= 2.6.0"
1515

16-
spec.metadata["allowed_push_host"] = "TODO: Set to your gem server 'https://example.com'"
16+
spec.metadata["allowed_push_host"] = "https://rubygems.org"
1717

1818
spec.metadata["homepage_uri"] = spec.homepage
19-
spec.metadata["source_code_uri"] = "TODO: Put your gem's public repo URL here."
20-
spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
19+
spec.metadata["source_code_uri"] = "https://github.com/initdc/rootfs"
20+
spec.metadata["changelog_uri"] = "https://github.com/initdc/rootfs/blob/master/CHANGELOG.md"
2121

2222
# Specify which files should be added to the gem when it is released.
2323
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.

0 commit comments

Comments
 (0)