giturl 1.0.4 → 1.0.5

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: 8f6f9e7ec47158f1d04f1554971e51c956b401aae8a37ded0f48a5a523adfe47
4
- data.tar.gz: a1e4311d6612f041e9d716fba2e66f3244aa963f49aff6eab02535feb1792e38
3
+ metadata.gz: 34abe50c2571b75655d804f3fade8517a6d5c7e8586020a6fd2fbabf4748ae9e
4
+ data.tar.gz: 7a81192953aa7b6a5fdca0c376c7c5cfb4b408180bbb24cb87ff2cfd2cd6b887
5
5
  SHA512:
6
- metadata.gz: c5a306cffec79b182b4eee89482def8493429e8480e303932607bb383290a689da3019a52f45dee9ce7e8c90bc75058c0c1eeb83d70aba7f02b87ad8b9b802b0
7
- data.tar.gz: 867f196bbb91818a4eab525237bb18120b0af039caf5da271a5eeff98e59fa8e652211e9c8cd59c3913ee310d080f3858e428f13375a6f0e96dcb4ab8e64b6d2
6
+ metadata.gz: bb063daf2f8b9071471c468da6dd990ef905d208bbaf0fb2aa63ba3778ebc52d626e961c84a4d0886d3c2c8fefd14eb2aa4a65207afddfb537ff470d13c6bec0
7
+ data.tar.gz: 80384712e4e0f14390643880bfa2a54939256dcb7a498b201c318081e3673abe53db829d886e40c21091a4e7448ef1bc43840b0a7b4b00e49aba52232d70c4de
data/Gemfile CHANGED
@@ -1,4 +1,6 @@
1
- source "https://rubygems.org"
1
+ # frozen_string_literal: true
2
+
3
+ source 'https://rubygems.org'
2
4
 
3
5
  # Specify your gem's dependencies in giturl.gemspec
4
6
  gemspec
data/README.md CHANGED
@@ -4,7 +4,7 @@ Welcome to giturl! Do you often want to access the GitHub web page from the ter
4
4
 
5
5
  ## Installation
6
6
 
7
- Install `giturl` yourself as:
7
+ Install `giturl` as:
8
8
 
9
9
  $ gem install giturl
10
10
 
@@ -16,7 +16,7 @@ gem 'giturl'
16
16
 
17
17
  ## Usage
18
18
 
19
- If you have it installed, you can use `giturl` as follows:
19
+ You can use `giturl` as follows:
20
20
 
21
21
  giturl [-o or --open] dir1 [dir2, dir3, ...]
22
22
 
@@ -30,12 +30,15 @@ Here is a example to open GitHub web page for current directory:
30
30
  ```sh
31
31
  $ git clone git@github.com:shinyaohtani/giturl.git
32
32
  $ cd giturl/lib/giturl/
33
+
33
34
  # (working here)
34
- # (some editing. like vim version.rb......)
35
+ # (some editing, like vim version.rb......)
35
36
  # (then you want to access the GitHub web page for current dir.)
37
+
36
38
  $ giturl -o .
37
39
  https://github.com/shinyaohtani/giturl/tree/master/lib/giturl/
38
- # and your default browser automatically opens the URL
40
+
41
+ # == your default browser automatically opens the URL ==
39
42
  ```
40
43
 
41
44
  ## Contributing
data/Rakefile CHANGED
@@ -1,2 +1,4 @@
1
- require "bundler/gem_tasks"
2
- task :default => :spec
1
+ # frozen_string_literal: true
2
+
3
+ require 'bundler/gem_tasks'
4
+ task default: :spec
data/bin/giturl CHANGED
@@ -17,7 +17,8 @@ opt.parse!(ARGV, into: params)
17
17
 
18
18
  ARGV.each do |arg|
19
19
  remote_origin_url = `git -C #{arg} config --get remote.origin.url`.chomp
20
- baseurl = remote_origin_url.gsub(/^.*@/, '').gsub(/\.git$/, '').gsub(/:/, '/').gsub(/^/, 'https://')
20
+ # remote_origin_url: git@github.com:shinyaohtani/giturl.git
21
+ baseurl = remote_origin_url.gsub(/:/, '/').gsub(/^.*@/, 'https://').gsub(/\.git$/, '')
21
22
 
22
23
  gitdir_prefix = `git -C #{arg} rev-parse --show-prefix`.chomp
23
24
  gitdir_branch = `git -C #{arg} rev-parse --abbrev-ref HEAD`.chomp
data/giturl.gemspec CHANGED
@@ -1,32 +1,34 @@
1
- lib = File.expand_path("lib", __dir__)
1
+ # frozen_string_literal: true
2
+
3
+ lib = File.expand_path('lib', __dir__)
2
4
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
- require "giturl/version"
5
+ require 'giturl/version'
4
6
 
5
7
  Gem::Specification.new do |spec|
6
- spec.name = "giturl"
8
+ spec.name = 'giturl'
7
9
  spec.version = Giturl::VERSION
8
- spec.authors = ["shinyaohtani"]
9
- spec.email = ["shinya_ohtani@yahoo.co.jp"]
10
+ spec.authors = ['shinyaohtani']
11
+ spec.email = ['shinya_ohtani@yahoo.co.jp']
10
12
 
11
- spec.summary = %q{Show or open GitHub URL for given directory}
12
- spec.description = %q{Show or open GitHub URL for given directory}
13
- spec.homepage = "https://github.com/shinyaohtani/giturl"
13
+ spec.summary = 'Show or open GitHub URL for given directory'
14
+ spec.description = 'Show or open GitHub URL for given directory'
15
+ spec.homepage = 'https://github.com/shinyaohtani/giturl'
14
16
 
15
17
  #:spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
16
18
 
17
- spec.metadata["homepage_uri"] = spec.homepage
18
- spec.metadata["source_code_uri"] = "https://github.com/shinyaohtani/giturl"
19
- spec.metadata["changelog_uri"] = "https://github.com/shinyaohtani/giturl/blob/master/README.md"
19
+ spec.metadata['homepage_uri'] = spec.homepage
20
+ spec.metadata['source_code_uri'] = 'https://github.com/shinyaohtani/giturl'
21
+ spec.metadata['changelog_uri'] = 'https://github.com/shinyaohtani/giturl/blob/master/README.md'
20
22
 
21
23
  # Specify which files should be added to the gem when it is released.
22
24
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
23
- spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
25
+ spec.files = Dir.chdir(File.expand_path(__dir__)) do
24
26
  `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
25
27
  end
26
- spec.bindir = "bin"
27
- spec.executables = ["giturl"]
28
- spec.require_paths = ["lib"]
28
+ spec.bindir = 'bin'
29
+ spec.executables = ['giturl']
30
+ spec.require_paths = ['lib']
29
31
 
30
- spec.add_development_dependency "bundler", "~> 2.0"
31
- spec.add_development_dependency "rake", ">= 12.3.3"
32
+ spec.add_development_dependency 'bundler', '~> 2.0'
33
+ spec.add_development_dependency 'rake', '>= 12.3.3'
32
34
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Giturl
2
- VERSION = "1.0.4"
4
+ VERSION = '1.0.5'
3
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: giturl
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.4
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - shinyaohtani