conjoiner 0.2.0 → 0.2.1
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 +4 -4
- data/CHANGELOG.md +6 -2
- data/lib/conjoiner/cli.rb +1 -1
- data/lib/conjoiner/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cee8e549e1ba1fe552e790fc3bc0aab26e22c2325d1519f6aa93c2fa32af2153
|
|
4
|
+
data.tar.gz: 3b3c50905c5e9331f3518a3d0795c6d78c7e27d0aa9075f0af5dde2f9a001e51
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 57f17cde51fdd99c7f6ae9dad2bff7e8ae90d89750e6ab27c7102af589bf298aaac2c8f10500dcc1b1976b555d66f56eba2c7dbfe21aaa0084fe89ad504eec98
|
|
7
|
+
data.tar.gz: 93586ee1a77aae9ff2d06af389052d9119697eabc313e8d2a3a5710dfb7fd974fb57a0b16fe3f92583494d8932c9745db29818b01cbcb9f58d8407b03a7fba25
|
data/CHANGELOG.md
CHANGED
|
@@ -5,15 +5,19 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
|
|
5
5
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
|
+
## [0.2.1] - 2022-01-01
|
|
9
|
+
### Fixed
|
|
10
|
+
- `init_aspect` command failing on wrong number of argument when calling
|
|
11
|
+
`Configuration#dated_repository_names`
|
|
8
12
|
|
|
9
|
-
## [0.2.0] -
|
|
13
|
+
## [0.2.0] - 2021-12-24
|
|
10
14
|
### Added
|
|
11
15
|
- Command to clone an arbitrary repository into the `~/joined` directory
|
|
12
16
|
structure
|
|
13
17
|
- Command to list all the remote origins of the joined repositories
|
|
14
18
|
- Add configuration file for specifying the default aspect
|
|
15
19
|
|
|
16
|
-
## [0.1.0] -
|
|
20
|
+
## [0.1.0] - 2021-11-12
|
|
17
21
|
### Added
|
|
18
22
|
- Initializing dated aspect directories
|
|
19
23
|
- Manual synchronization command
|
data/lib/conjoiner/cli.rb
CHANGED
|
@@ -35,7 +35,7 @@ module Conjoiner
|
|
|
35
35
|
year.to_s
|
|
36
36
|
)
|
|
37
37
|
|
|
38
|
-
configuration.dated_repository_names.each do |name|
|
|
38
|
+
configuration.dated_repository_names(aspect).each do |name|
|
|
39
39
|
repo = "gitolite@git.andrewcant.ca:andrew/aspects/#{aspect}/dated/#{year}/#{name}"
|
|
40
40
|
dir = dated_root.join(name)
|
|
41
41
|
|
data/lib/conjoiner/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: conjoiner
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andrew Sullivan Cant
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2022-01-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: git
|