samus 3.0.4 → 3.0.9

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: d5abc0a8419bc2037a0f18d7473a0156909deb7e0de4d900256b5829592db883
4
- data.tar.gz: 39895dfb2f089a65ff1e03cc6412011b62254d4a469ca210822a0b8adc5fccf9
3
+ metadata.gz: f04e142129687658a7fd111af0ed1587d9e6d6c2b5d7d5c8b6eaab195940dfa9
4
+ data.tar.gz: a53a88046167502a858b185831d20217a4542c19a6305b618f9467093231bed6
5
5
  SHA512:
6
- metadata.gz: b25b940e53902fa2d3a73f040ec78dcdd94d9d4070e831b77f8ce14c0b7cff9b14e5cfa534739abda9e4ee0158eb9dbafb03f543d8bd6125153e4c343a80882a
7
- data.tar.gz: aee76adacf89dd1d58741bb16220cc53ce7d83eeb9330151e3e1fd9dced2aa462f03912e86ddd0f6931b8f6fc27dcb6748934a5587bbf800fe9af61345abdd4d
6
+ metadata.gz: 8613ffe3e5f6106b92c15a527854f1b0e21f0f6c0aba4358a5e77214a169768e75ba7c7be8f80b501a06e28eb7ba29cc822f63ffe89aec378e48982b16af2f70
7
+ data.tar.gz: b2dbfc18ff675b399cc4e781a62ab461e32669f08a2fb1924a742aa1a7c1289c4d48f82ee1eaefe05d6cfeeffed88ccc4de9e2cc18fd888c02108bfe18e3f7cb
@@ -1,3 +1,38 @@
1
+ # main
2
+
3
+ # 3.0.9 - June 19th, 2020
4
+
5
+ [3.0.9]: https://github.com/lsegal/samus/compare/v3.0.8...v3.0.9
6
+
7
+ - Improved support for alternate primary branch names
8
+
9
+ # 3.0.8 - April 1st, 2019
10
+
11
+ [3.0.8]: https://github.com/lsegal/samus/compare/v3.0.7...v3.0.8
12
+
13
+ - Fix timezone handling issue.
14
+
15
+ # 3.0.7 - April 1st, 2019
16
+
17
+ [3.0.7]: https://github.com/lsegal/samus/compare/v3.0.6...v3.0.7
18
+
19
+ - Fix bug in `publish` task of DockerReleaseTask in previous release.
20
+
21
+ # 3.0.6 - April 1st, 2019
22
+
23
+ [3.0.6]: https://github.com/lsegal/samus/compare/v3.0.5...v3.0.6
24
+
25
+ - Add `--skip-restore` to samus build to skip restoring Git repository. Useful
26
+ with Docker build support in order to inspect output of a built release.
27
+ - Add `build/changelog-rotate` command for changelog rotation.
28
+ - Add `inspect` and `clean` Rake tasks for `DockerReleaseTask` to inspect and
29
+ remove a previously built release respectively.
30
+
31
+ # 3.0.5 - April 1st, 2019
32
+
33
+ - Fix bug that breaks DockerReleaseTask if .gitconfig or .samus configs are
34
+ not present on the system.
35
+
1
36
  # 3.0.4 - April 1st, 2019
2
37
 
3
38
  - Automatically build Dockerfile.samus as tempfile if it is not present in
@@ -92,7 +127,3 @@ end
92
127
  # 1.3.0 - July 23, 2014
93
128
 
94
129
  - Fix issue where repository would not reset when using `samus-build` command.
95
-
96
- ```
97
-
98
- ```
data/Dockerfile CHANGED
@@ -2,8 +2,8 @@ FROM python:3.7-alpine
2
2
 
3
3
  RUN apk add -U --no-cache openssh ruby ruby-json nodejs git curl
4
4
  RUN pip install awscli
5
- RUN gem install bundler -v '1.17.3' --no-rdoc --no-ri
6
- RUN gem install rake --no-rdoc --no-ri
5
+ RUN gem install bundler --no-document
6
+ RUN gem install rake --no-document
7
7
  RUN mkdir -p ~/.ssh
8
8
  RUN echo "Host *" > ~/.ssh/config
9
9
  RUN echo " StrictHostKeyChecking no" >> ~/.ssh/config
@@ -13,6 +13,7 @@ RUN git config --global user.email "bot@not.human"
13
13
  RUN git config --global user.name "Samus Release Bot"
14
14
 
15
15
  COPY . /samus
16
+ RUN chmod 755 /samus/commands/build/* /samus/commands/publish/*
16
17
  ENV PATH=$PATH:/samus/bin
17
18
 
18
19
  WORKDIR /build
data/README.md CHANGED
@@ -18,7 +18,7 @@ machine.
18
18
  Samus is a RubyGem and requires Ruby 1.9.x+. Installing is as easy as typing:
19
19
 
20
20
  ```sh
21
- $ gem install samus
21
+ gem install samus
22
22
  ```
23
23
 
24
24
  If you would rather use Samus via Docker, see the Docker section in Usage below.
@@ -44,7 +44,7 @@ manifest file is just a list of discrete actions like so (minus comments):
44
44
  "action": "git-push",
45
45
  "arguments": {
46
46
  "remotes": "origin",
47
- "refs": "master v1.5.0" // the v1.5.0 is a tag for your release
47
+ "refs": "main v1.5.0" // the v1.5.0 is a tag for your release
48
48
  }
49
49
  },
50
50
  {
@@ -91,9 +91,9 @@ it "samus.json" for easier integration:
91
91
  "files": ["lib/my-gem/version.rb"]
92
92
  },
93
93
  {
94
- "action": "git-merge", // merge new commit into master branch
94
+ "action": "git-merge", // merge new commit into main branch
95
95
  "arguments": {
96
- "branch": "master"
96
+ "branch": "main"
97
97
  }
98
98
  },
99
99
  {
@@ -103,7 +103,7 @@ it "samus.json" for easier integration:
103
103
  "action": "git-push",
104
104
  "arguments": {
105
105
  "remotes": "origin",
106
- "refs": "master v$version"
106
+ "refs": "main v$version"
107
107
  }
108
108
  }]
109
109
  },
@@ -123,12 +123,12 @@ it "samus.json" for easier integration:
123
123
  ```
124
124
 
125
125
  It looks a little longer, but it contains all of the steps to automate when
126
- bumping the VERSION constant, tagging a version, merging into the master
126
+ bumping the VERSION constant, tagging a version, merging into the primary
127
127
  branch, and building the gem. To build a release with this manifest, simply
128
128
  type:
129
129
 
130
130
  ```sh
131
- $ samus build 1.5.0
131
+ samus build 1.5.0
132
132
  ```
133
133
 
134
134
  Samus will look for `samus.json` and build a release for version 1.5.0 of your
@@ -136,10 +136,10 @@ code. It will produce an archive called `release-v1.5.0.tar.gz` that you
136
136
  can then publish with:
137
137
 
138
138
  ```sh
139
- $ samus publish release-v1.5.0.tar.gz
139
+ samus publish release-v1.5.0.tar.gz
140
140
  ```
141
141
 
142
- You may have noticed some funny looking "$version" strings in the above
142
+ You may have noticed some funny looking "\$version" strings in the above
143
143
  manifest. Those strings will be replaced with the version provided in the
144
144
  build command, so all the correct tagging and building will be handled for you.
145
145
 
@@ -227,14 +227,14 @@ repositories. In this case, you can simply type `samus install REPO` to
227
227
  download the repository to your machine:
228
228
 
229
229
  ```sh
230
- $ samus install git@github.com:my_org/samus_config
230
+ samus install git@github.com:my_org/samus_config
231
231
  ```
232
232
 
233
233
  Of course, Samus doesn't need these custom packages to be Git-backed. All
234
234
  the above command does is clone a repository into the ~/.samus directory.
235
235
  The above command creates:
236
236
 
237
- ```
237
+ ```plaintext
238
238
  .samus/
239
239
  `- samus_config/
240
240
  `- commands/
@@ -274,18 +274,20 @@ commands directory depending on whether they are for `samus build` or
274
274
  In addition to exposing arguments as underscored environment variables,
275
275
  Samus also exposes a few special variables with double underscore prefixes:
276
276
 
277
- - `__build_dir` - this variable refers to the temporary directory that the
277
+ - `__BUILD_DIR` - this variable refers to the temporary directory that the
278
278
  release package is being built inside of. The files inside of this directory,
279
279
  and _only_ the files inside of this directory, will be built into the release
280
280
  archive. If you write a build-time command that produces an output file which
281
281
  is part of the release, you should make sure to move it into this directory.
282
- - `__restore_file` - the restore file is a newline delimited file containing
282
+ - `__ORIG_BRANCH` - the original branch being built from.
283
+ - `__BUILD_BRANCH` - the name of the branch being built to.
284
+ - `__RESTORE_FILE` - the restore file is a newline delimited file containing
283
285
  branches and their original ref. All branches listed in this file will be
284
286
  restored to the respective ref at the end of `samus build` regardless of
285
287
  success status. If you make destructive modifications to existing branches
286
288
  in the workspace repository, you should add the original ref for the branch
287
289
  to this file.
288
- - `__creds_*` - provides key, secret, and other values loaded from credentials.
290
+ - `__CREDS_*` - provides key, secret, and other values loaded from credentials.
289
291
  See Credentials section for more information on how these are set.
290
292
 
291
293
  #### Help Files
@@ -295,14 +297,15 @@ command should include a file named `your-command.help.md` in the same directory
295
297
  as the command script itself. These files are Markdown-formatted files and
296
298
  should follow the same structure of the built-in command help files:
297
299
 
298
- ```
300
+ ```markdown
299
301
  Short description of command.
300
302
 
301
- * Files:
302
- * Description of what the command line arguments are
303
+ - Files:
304
+
305
+ - Description of what the command line arguments are
303
306
 
304
- * Arguments:
305
- * argname: Documentation for argument
307
+ - Arguments:
308
+ - argname: Documentation for argument
306
309
  ```
307
310
 
308
311
  Notes:
@@ -425,7 +428,7 @@ property:
425
428
 
426
429
  The "condition" property is a Ruby expression that is evaluated for truthiness
427
430
  to decide if the action item should be evaluated or skipped. A common use for
428
- this is to take action based on the version (see "$version" variable section
431
+ this is to take action based on the version (see "\$version" variable section
429
432
  below). The following example runs an action item only for version 2.0+ of a
430
433
  release:
431
434
 
@@ -437,9 +440,9 @@ release:
437
440
  }
438
441
  ```
439
442
 
440
- #### "$version" Variable
443
+ #### "\$version" Variable
441
444
 
442
- A special variable "$version" is interpolated when loading the build manifest.
445
+ A special variable "\$version" is interpolated when loading the build manifest.
443
446
  This variable can appear anywhere in the JSON document, and is interpolated
444
447
  before any actions or conditions are evaluated.
445
448
 
data/bin/samus CHANGED
@@ -43,6 +43,7 @@ command =
43
43
 
44
44
  dry_run = false
45
45
  zip_release = true
46
+ skip_restore = false
46
47
  outfile = nil
47
48
  docker = false
48
49
  docker_image = "lsegal/samus:latest"
@@ -63,6 +64,9 @@ options = OptionParser.new do |opts|
63
64
  opts.on('-o FILE', '--output', 'The file (no extension) to generate') do |file|
64
65
  outfile = file
65
66
  end
67
+ opts.on('--skip-restore', 'Skips restore after build completes') do
68
+ skip_restore = true
69
+ end
66
70
  end
67
71
  opts.on('--docker', 'Use Docker to build or publish') do |_v|
68
72
  docker = true
@@ -107,7 +111,7 @@ elsif command == Samus::Builder
107
111
  Samus::Builder.build_version = ver.sub(/^v/, '')
108
112
 
109
113
  (ARGV.empty? ? ['samus.json'] : ARGV).each do |file|
110
- command.new(file).build(dry_run, zip_release, outfile)
114
+ command.new(file).build(dry_run, zip_release, outfile, skip_restore)
111
115
  end
112
116
  else
113
117
  puts options
@@ -0,0 +1,23 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ file = ARGV[0]
4
+ ver = ENV['_VERSION']
5
+ heading = ENV['_HEADING'] || ENV['_MASTER'] || ENV['__ORIG_BRANCH']
6
+ title_fmt = ENV['_TITLE_FORMAT'] || "[$version] - %B %-d$day_nth, %Y"
7
+ ENV['TZ'] ||= ENV['_TZ']
8
+
9
+ content = File.read(file)
10
+ compare_url = `git config remote.origin.url`.strip.sub(/^git@(.+?):/, 'https://\1/')
11
+ day_nth = {1 => 'st', 2 => 'nd', 3 => 'rd'}[Time.now.day % 10] || 'th'
12
+ title = Time.now.strftime(title_fmt).sub('$version', ver).sub('$day_nth', day_nth)
13
+
14
+ match = /\A\s*# #{heading}\r?\n(?<body>.*?)(?<rest>\r?\n# .+|\Z)/mis.match(content)
15
+ raise "Failed to rotate changelog: #{file} (invalid heading: #{heading})" unless match
16
+
17
+ prev_ver = match['rest'][/(\d+\.\d+(?:\.\d+)?)/, 1]
18
+ repl = "# #{heading}\n\n# #{title}\n\n" +
19
+ (prev_ver ? "[#{ver}]: #{compare_url}/compare/v#{prev_ver}...v#{ver}\n" : '') +
20
+ match['body'] + match['rest']
21
+ File.open(file, 'w') {|f| f.write(repl) }
22
+ puts "Added new #{file} header: #{title}"
23
+ puts "Previous #{file} version: #{prev_ver.inspect}"
@@ -0,0 +1,18 @@
1
+ Rotates the latest ChangeLog entries into an arbitrary formatted title heading.
2
+ The heading is formatted via `title_format` and can include the version
3
+ and release date.
4
+
5
+ Files:
6
+
7
+ - The path to the ChangeLog file.
8
+
9
+ Arguments:
10
+
11
+ - heading: (optional) defaults to primary branch name, should match the first development
12
+ heading used for in-flux changelog entries before rotation.
13
+ - title_format: (optional) a `Time.strftime` date formatted string that can
14
+ also include `$version` to represent the title of the rotated changelog entry.
15
+ Example: `$version - %B %-d, %Y`. It is recommended to put the version at the
16
+ front of the title to improve the reliability of generating a compare URL.
17
+ - tz: (optional) set the timezone if not available on the build system. Defaults
18
+ to system timezone.
@@ -1,8 +1,20 @@
1
1
  #!/bin/sh
2
2
 
3
3
  set -e
4
- git clone -q --branch ${_BRANCH-master} \
4
+
5
+ cd ${_REPOSITORY-.}
6
+ BRANCHES=`git branch --list --format="%(refname:lstrip=2)"`
7
+
8
+ git clone -q $([ -n "$_BRANCH" ] && echo --branch $_BRANCH) \
5
9
  ${_REPOSITORY-.} $__BUILD_DIR/$1 2>${__DEVNULL-/dev/null}
6
10
 
11
+ oldpw=`pwd`
12
+ cd $__BUILD_DIR/$1
13
+ for branch in $BRANCHES; do
14
+ echo Copying over $branch from repository.
15
+ git branch $branch --track origin/$branch 2>${__DEVNULL-/dev/null} || true
16
+ done
17
+ cd $oldpw
18
+
7
19
  # preserve all previously configured remotes for publish actions
8
20
  cp ${_REPOSITORY-.}/.git/config $__BUILD_DIR/$1/.git/config
@@ -5,4 +5,4 @@ Files:
5
5
 
6
6
  Arguments:
7
7
  * repository: the location of the working copy repository, defaults to ".".
8
- * branch: the branch to clone, defaults to "master"
8
+ * branch: the branch to clone, clones to default primary if not provided.
@@ -6,8 +6,8 @@ module Samus
6
6
 
7
7
  module Rake
8
8
  # Autoloads
9
- autoload :ReleaseTask, File.expand_path('samus/rake/samus_task', __dir__)
10
- autoload :DockerReleaseTask, File.expand_path('samus/rake/samus_task', __dir__)
9
+ autoload :ReleaseTask, File.expand_path('samus/rake/tasks', __dir__)
10
+ autoload :DockerReleaseTask, File.expand_path('samus/rake/tasks', __dir__)
11
11
  end
12
12
 
13
13
  module_function
@@ -22,7 +22,7 @@ module Samus
22
22
  @manifest = {}
23
23
  end
24
24
 
25
- def build(dry_run = false, zip_release = true, outfile = nil)
25
+ def build(dry_run = false, zip_release = true, outfile = nil, skip_restore = false)
26
26
  orig_pwd = Dir.pwd
27
27
  manifest = { 'version' => version, 'actions' => [] }
28
28
  build_branch = "samus-release/v#{version}"
@@ -43,6 +43,7 @@ module Samus
43
43
  '_RESTORE_FILE' => RESTORE_FILE,
44
44
  '_BUILD_DIR' => build_dir,
45
45
  '_BUILD_BRANCH' => build_branch,
46
+ '_ORIG_BRANCH' => orig_branch,
46
47
  '_DEVNULL' => devnull,
47
48
  'VERSION' => version
48
49
  }).load(action)
@@ -60,9 +61,13 @@ module Samus
60
61
  end
61
62
  end
62
63
  ensure
63
- restore_git_repo
64
- system "git checkout -q #{orig_branch} 2>#{devnull}"
65
- system "git branch -qD #{build_branch} 2>#{devnull}"
64
+ if skip_restore
65
+ remove_restore_file
66
+ else
67
+ restore_git_repo
68
+ system "git checkout -q #{orig_branch} 2>#{devnull}"
69
+ system "git branch -qD #{build_branch} 2>#{devnull}"
70
+ end
66
71
  end
67
72
 
68
73
  private
@@ -49,16 +49,20 @@ module Samus
49
49
 
50
50
  yield self if block_given?
51
51
 
52
+ build_config_files
53
+ define
54
+ end
55
+
56
+ private
57
+
58
+ def build_config_files
52
59
  @config_files = {
53
60
  Samus::CONFIG_PATH => '.samus',
54
61
  File.expand_path('~/.gitconfig') => '.gitconfig'
55
62
  }.merge(extra_config)
56
-
57
- define
63
+ @config_files.select! {|src, _dst| File.exist?(src) }
58
64
  end
59
65
 
60
- private
61
-
62
66
  def copy_prep
63
67
  FileUtils.rm_rf(PREP_DIR)
64
68
  FileUtils.mkdir_p(PREP_DIR)
@@ -79,12 +83,12 @@ module Samus
79
83
  "COPY . /build",
80
84
  config_copies.join("\n"),
81
85
  "RUN rm -rf /build/.samusprep",
82
- "RUN samus build ${VERSION}"
86
+ "RUN samus build --skip-restore ${VERSION}"
83
87
  ].join("\n"))
84
88
  end
85
89
  fname
86
90
  end
87
-
91
+
88
92
  def define
89
93
  namespace(@namespace) do
90
94
  desc '[VERSION=X.Y.Z] Builds a Samus release using Docker'
@@ -95,7 +99,7 @@ module Samus
95
99
 
96
100
  begin
97
101
  copy_prep
98
- sh "docker build . -t #{img} -f #{build_or_get_dockerfile} --build-arg VERSION=#{ver}"
102
+ sh "docker build . --rm -t #{img} -f #{build_or_get_dockerfile} --build-arg VERSION=#{ver}"
99
103
  ensure
100
104
  FileUtils.rm_rf(PREP_DIR)
101
105
  end
@@ -105,10 +109,20 @@ module Samus
105
109
  task :publish do
106
110
  img = release_image
107
111
  mount = mount_samus_config ? "-v #{Samus::CONFIG_PATH}:/root/.samus:ro" : ''
108
- sh "docker run #{mount} --rm #{img}"
109
- sh "docker rmi -f #{img}" if delete_image_after_publish
112
+ sh "docker run #{mount} --rm #{release_image}"
113
+ ::Rake::Task["#{@namespace}:clean"].execute if delete_image_after_publish
110
114
  sh "git pull" if git_pull_after_publish
111
115
  end
116
+
117
+ desc '[VERSION=X.Y.Z] Inspects a built release using Docker shell'
118
+ task :inspect do
119
+ sh "docker run -it --entrypoint sh #{release_image}"
120
+ end
121
+
122
+ desc '[VERSION=X.Y.Z] Removes a built release using Docker'
123
+ task :clean do
124
+ sh "docker rmi -f #{release_image}"
125
+ end
112
126
  end
113
127
  end
114
128
  end
@@ -136,7 +150,7 @@ module Samus
136
150
  def zipfile
137
151
  @zipfile || "release-v#{release_version}.tar.gz"
138
152
  end
139
-
153
+
140
154
  def define
141
155
  namespace(@namespace) do
142
156
  desc '[VERSION=X.Y.Z] Builds a Samus release'
@@ -1,3 +1,3 @@
1
1
  module Samus
2
- VERSION = '3.0.4'.freeze
2
+ VERSION = '3.0.9'.freeze
3
3
  end
data/samus.json CHANGED
@@ -2,12 +2,24 @@
2
2
  "actions": [
3
3
  {
4
4
  "action": "fs-sedfiles",
5
- "files": ["lib/*/version.rb"],
5
+ "files": [
6
+ "lib/*/version.rb"
7
+ ],
6
8
  "arguments": {
7
9
  "search": "VERSION = ['\"](.+?)['\"]",
8
10
  "replace": "VERSION = '$version'"
9
11
  }
10
12
  },
13
+ {
14
+ "action": "changelog-rotate",
15
+ "files": [
16
+ "CHANGELOG.md"
17
+ ],
18
+ "arguments": {
19
+ "title_format": "$version - %B %-d$day_nth, %Y",
20
+ "tz": "GMT+8"
21
+ }
22
+ },
11
23
  {
12
24
  "action": "chmod-files",
13
25
  "files": [
@@ -19,42 +31,53 @@
19
31
  },
20
32
  {
21
33
  "action": "git-commit",
22
- "files": ["lib/*/version.rb"]
34
+ "files": [
35
+ "CHANGELOG.md",
36
+ "lib/*/version.rb"
37
+ ]
23
38
  },
24
39
  {
25
40
  "action": "git-merge",
26
41
  "arguments": {
27
- "branch": "master"
42
+ "branch": "main"
28
43
  }
29
44
  },
30
45
  {
31
46
  "action": "git-clone",
32
- "files": ["git-repo"],
47
+ "files": [
48
+ "git-repo"
49
+ ],
33
50
  "publish": [
34
51
  {
35
52
  "action": "git-push",
36
53
  "credentials": "lsegal.github.ssh",
37
54
  "arguments": {
38
55
  "remotes": "origin",
39
- "refs": "master v$version"
56
+ "refs": "main v$version"
40
57
  }
41
58
  }
42
59
  ]
43
60
  },
44
61
  {
45
62
  "action": "gem-build",
46
- "files": ["*.gemspec"],
63
+ "files": [
64
+ "*.gemspec"
65
+ ],
47
66
  "publish": [
48
67
  {
49
68
  "action": "gem-push",
50
- "files": ["*.gem"],
69
+ "files": [
70
+ "*.gem"
71
+ ],
51
72
  "credentials": "lsegal.rubygems"
52
73
  }
53
74
  ]
54
75
  },
55
76
  {
56
77
  "action": "changelog-parse",
57
- "files": ["CHANGELOG.md"],
78
+ "files": [
79
+ "CHANGELOG.md"
80
+ ],
58
81
  "publish": [
59
82
  {
60
83
  "action": "github-release",
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: samus
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.4
4
+ version: 3.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Loren Segal
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-04-01 00:00:00.000000000 Z
11
+ date: 2020-06-20 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email: lsegal@soen.ca
@@ -32,6 +32,8 @@ files:
32
32
  - commands/build/archive-zip.help.md
33
33
  - commands/build/changelog-parse
34
34
  - commands/build/changelog-parse.help.md
35
+ - commands/build/changelog-rotate
36
+ - commands/build/changelog-rotate.help.md
35
37
  - commands/build/chmod-files
36
38
  - commands/build/chmod-files.help.md
37
39
  - commands/build/fs-copy
@@ -90,7 +92,7 @@ files:
90
92
  - lib/samus/credentials.rb
91
93
  - lib/samus/publish_action.rb
92
94
  - lib/samus/publisher.rb
93
- - lib/samus/rake/samus_task.rb
95
+ - lib/samus/rake/tasks.rb
94
96
  - lib/samus/version.rb
95
97
  - samus.gemspec
96
98
  - samus.json
@@ -113,8 +115,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
113
115
  - !ruby/object:Gem::Version
114
116
  version: '0'
115
117
  requirements: []
116
- rubyforge_project:
117
- rubygems_version: 2.7.6
118
+ rubygems_version: 3.1.2
118
119
  signing_key:
119
120
  specification_version: 4
120
121
  summary: Samus helps you release Open Source Software.