master_delivery 1.0.6 → 1.0.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b42150430f655e38f3b1c525f8a69e44131f0172d284caa86a9877797d347668
4
- data.tar.gz: '05964dc0d64be2f97cdeb94644a7f54a96e543f904c6f71e2f392af9256ad24b'
3
+ metadata.gz: 5c82fb965b37cc5750cb671c39cac70edd7e4fee65d676fb3a4e0fef460d2f33
4
+ data.tar.gz: e1287627942fbeea23c3b91ac9b8edec25cf7bb0dbf45b45456594ec3c3566da
5
5
  SHA512:
6
- metadata.gz: bae487838a7e4a204bcac6defefe30d2f52e3e9491938af723cd2d0b434fe129eb830ed0029d13f23f71ee1eac35d660cac2333ddf4755e7674b9ff4acb04345
7
- data.tar.gz: f6f964a1d3a613e9b8a5c4eeb985b065694dd46de861e81a273180e364d787acf573417e160009184aaccbc6f60bf67648a80515d73c1ca90c38e2375e306eb5
6
+ metadata.gz: 8eb6c554011f7a763596ea66407384e84f0f50f7b2e021e7e57d071892d338f4a469dc1849bd24046503fd98242140665a30dfa3caf3ca7b60379add85a2d85f
7
+ data.tar.gz: '029761a40904e3aa795541a05169e7a761da6aab822adef041576755018c6ce4c7900bc9795ae6c985059f2aae3bd6a8e1d14d57dd4708613f2bbd6a62c8d3bc'
@@ -1,5 +1,20 @@
1
1
  # Changelog
2
2
 
3
+ ## [v1.0.7](https://github.com/shinyaohtani/master_delivery/tree/v1.0.7) (2020-05-11)
4
+
5
+ [Full Changelog](https://github.com/shinyaohtani/master_delivery/compare/v1.0.6...v1.0.7)
6
+
7
+ - No changes on behavior.
8
+
9
+ **Closed issues:**
10
+
11
+ - Non urgent refactoring [\#27](https://github.com/shinyaohtani/master_delivery/issues/27)
12
+
13
+ **Merged pull requests:**
14
+
15
+ - version -\> v1.0.7 [\#30](https://github.com/shinyaohtani/master_delivery/pull/30) ([shinyaohtani](https://github.com/shinyaohtani))
16
+ - Simplified code [\#28](https://github.com/shinyaohtani/master_delivery/pull/28) ([shinyaohtani](https://github.com/shinyaohtani))
17
+
3
18
  ## [v1.0.6](https://github.com/shinyaohtani/master_delivery/tree/v1.0.6) (2020-05-06)
4
19
 
5
20
  [Full Changelog](https://github.com/shinyaohtani/master_delivery/compare/v1.0.5...v1.0.6)
@@ -1,17 +1,17 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- master_delivery (1.0.6)
4
+ master_delivery (1.0.7)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
- activesupport (6.0.2.2)
9
+ activesupport (6.0.3)
10
10
  concurrent-ruby (~> 1.0, >= 1.0.2)
11
11
  i18n (>= 0.7, < 2)
12
12
  minitest (~> 5.1)
13
13
  tzinfo (~> 1.1)
14
- zeitwerk (~> 2.2)
14
+ zeitwerk (~> 2.2, >= 2.2.2)
15
15
  addressable (2.7.0)
16
16
  public_suffix (>= 2.0.2, < 5.0)
17
17
  ast (2.4.0)
@@ -78,7 +78,7 @@ GEM
78
78
  pry-byebug (3.9.0)
79
79
  byebug (~> 11.0)
80
80
  pry (~> 0.13.0)
81
- public_suffix (4.0.4)
81
+ public_suffix (4.0.5)
82
82
  rainbow (3.0.0)
83
83
  rake (13.0.1)
84
84
  retriable (3.1.2)
@@ -89,7 +89,7 @@ GEM
89
89
  rspec-mocks (~> 3.9.0)
90
90
  rspec-core (3.9.2)
91
91
  rspec-support (~> 3.9.3)
92
- rspec-expectations (3.9.1)
92
+ rspec-expectations (3.9.2)
93
93
  diff-lcs (>= 1.2.0, < 2.0)
94
94
  rspec-support (~> 3.9.0)
95
95
  rspec-mocks (3.9.1)
data/README.md CHANGED
@@ -83,6 +83,9 @@ Usage: master_delivery -m <dir> -d <dir> [options]
83
83
  (default: --no-dryrun)
84
84
  -q, --[no-]quiet Suppress non-error messages
85
85
  (default: --no-quiet)
86
+ -v, --[no-]verbose Process actual commands for file operations, such as
87
+ moving files and creating folders, one by one.
88
+ (default: --no-verbose)
86
89
  -y, --[no-]yes Skip confirmation. It is recommended to execute
87
90
  the command carefully without skipping confirmation.
88
91
  With the "--yes" option, if you want to change the
@@ -7,9 +7,8 @@ require 'master_delivery'
7
7
  # You can add fixtures and/or initialization code here to make experimenting
8
8
  # with your gem easier. You can also use a different console, if you like.
9
9
 
10
- # (If you use this, don't forget to add pry to your Gemfile!)
11
- # require "pry"
12
- # Pry.start
10
+ require 'pry'
11
+ Pry.start
13
12
 
14
- require 'irb'
15
- IRB.start(__FILE__)
13
+ # require 'irb'
14
+ # IRB.start(__FILE__)
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module MasterDelivery
4
- VERSION = '1.0.6'
4
+ VERSION = '1.0.7'
5
5
  DESCRIPTION = <<~DESC
6
6
  Deliver all master files managed in a single master snapshot directory
7
7
  into the specified directory while maintaining the hierarchy of the
@@ -21,4 +21,5 @@ module MasterDelivery
21
21
  of files that are delivered here and there at once with commands
22
22
  like git diff and git commit.
23
23
  DESC
24
+ REPOSITORY_URL = 'https://github.com/shinyaohtani/master_delivery'
24
25
  end
@@ -10,15 +10,15 @@ Gem::Specification.new do |spec|
10
10
 
11
11
  spec.summary = 'Deliver master files to appropriate place'
12
12
  spec.description = MasterDelivery::DESCRIPTION
13
- spec.homepage = 'https://github.com/shinyaohtani/master_delivery/tree/master/README.md'
13
+ spec.homepage = MasterDelivery::REPOSITORY_URL + '/tree/master/README.md'
14
14
  spec.license = 'MIT'
15
15
  spec.required_ruby_version = Gem::Requirement.new('>= 2.3.0')
16
16
 
17
17
  spec.metadata['allowed_push_host'] = 'https://rubygems.org'
18
18
 
19
19
  spec.metadata['homepage_uri'] = spec.homepage
20
- spec.metadata['source_code_uri'] = 'https://github.com/shinyaohtani/master_delivery'
21
- spec.metadata['changelog_uri'] = 'https://github.com/shinyaohtani/master_delivery/tree/master/CHANGELOG.md'
20
+ spec.metadata['source_code_uri'] = MasterDelivery::REPOSITORY_URL
21
+ spec.metadata['changelog_uri'] = MasterDelivery::REPOSITORY_URL + '/tree/master/CHANGELOG.md'
22
22
 
23
23
  # Specify which files should be added to the gem when it is released.
24
24
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: master_delivery
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.6
4
+ version: 1.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shinya Ohtani (shinyaohtani@github)
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-05-06 00:00:00.000000000 Z
11
+ date: 2020-05-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler