git-backup 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 41d4b88c30b91ade30c1917d813097fbddbf57ad
4
- data.tar.gz: 79d73010208e161c8cc420919aa76e9be4eb99ad
3
+ metadata.gz: 512cf4c0027a6c61aa704a11870ad7400377991e
4
+ data.tar.gz: 70c74b67f6f24d2a0af0dc85cf5401e7e8dde035
5
5
  SHA512:
6
- metadata.gz: 82d2faafd2eb40a0cdcda10bd00accddc057fed5643be7357e682e2e18e164c8179a04d17b8adbd5195724ea43671ff8c81211e9e01714190720abd792b60216
7
- data.tar.gz: 2d63ff1e7f25b63adcfa7f351fea7e57d1302cbb33ba4b66e90237258ba9b41379e2a81048da5a632af05a2f3bd82d4735a248d64033c1aef38fdfe4ac10b666
6
+ metadata.gz: f6983e018e8ca669fd18f3d60217670295678070e0fa4ff0172dfef8b62c9d464bfe2c3c4e28ebe766d95daa28253d044a81359e0adb85b965437619d18daebc
7
+ data.tar.gz: 3cf4185e677b2bd34e9d96f6e202e2b9824c778dc0868dce1606d7be574e01c7259395f2d89b5f39e5b940165fb6164665740054cf74c49d347cd3baaa05351b
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- git-backup (0.1.0)
4
+ git-backup (0.2.1)
5
5
  git
6
6
 
7
7
  GEM
data/bin/git-backup CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- require "git_backup"
3
+ require "git-backup"
4
4
 
5
5
  GitBackup.main
data/git-backup.gemspec CHANGED
@@ -1,7 +1,7 @@
1
1
 
2
2
  lib = File.expand_path("../lib", __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require "git_backup/version"
4
+ require "git-backup/version"
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "git-backup"
@@ -9,7 +9,8 @@ Gem::Specification.new do |spec|
9
9
  spec.authors = ["Caleb St-Denis"]
10
10
  spec.email = ["caleb.stdenis@gmail.com"]
11
11
 
12
- spec.summary = %q{git subcommand for backing up your current branch}
12
+ spec.summary = %q{A Git subcommand for pre-empting troubles caused by powerful commands such as `rebase`.}
13
+ spec.description = %q{This gem adds a subcommand `git backup`. All the subcommand does is `git branch backup/your-current-branch-name`.}
13
14
  spec.homepage = "https://fake.io"
14
15
 
15
16
  spec.files = `git ls-files`.split("\n")
@@ -1,3 +1,3 @@
1
1
  module GitBackup
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
@@ -1,4 +1,4 @@
1
- require "git_backup/version"
1
+ require "git-backup/version"
2
2
  require "git"
3
3
 
4
4
  module GitBackup
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git-backup
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Caleb St-Denis
@@ -52,7 +52,8 @@ dependencies:
52
52
  - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
- description:
55
+ description: This gem adds a subcommand `git backup`. All the subcommand does is `git
56
+ branch backup/your-current-branch-name`.
56
57
  email:
57
58
  - caleb.stdenis@gmail.com
58
59
  executables:
@@ -67,8 +68,8 @@ files:
67
68
  - Rakefile
68
69
  - bin/git-backup
69
70
  - git-backup.gemspec
70
- - lib/git_backup.rb
71
- - lib/git_backup/version.rb
71
+ - lib/git-backup.rb
72
+ - lib/git-backup/version.rb
72
73
  homepage: https://fake.io
73
74
  licenses: []
74
75
  metadata: {}
@@ -91,5 +92,6 @@ rubyforge_project:
91
92
  rubygems_version: 2.5.2.3
92
93
  signing_key:
93
94
  specification_version: 4
94
- summary: git subcommand for backing up your current branch
95
+ summary: A Git subcommand for pre-empting troubles caused by powerful commands such
96
+ as `rebase`.
95
97
  test_files: []