giturl 1.0.3 → 1.0.4

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: d67f5532b441a6155bc847b2e8cbc44f8e102cdf9ffe6e5cd10b13c7e1631e9f
4
- data.tar.gz: 52fcef8b50fb9ea174896b652df0b2dd47428581435f5adfff5210369a822f08
3
+ metadata.gz: 8f6f9e7ec47158f1d04f1554971e51c956b401aae8a37ded0f48a5a523adfe47
4
+ data.tar.gz: a1e4311d6612f041e9d716fba2e66f3244aa963f49aff6eab02535feb1792e38
5
5
  SHA512:
6
- metadata.gz: bb179edfd84b907f9921cda428e1491cb8293ca67149684c35da31e41de2c2605b554bba0cc24591030ec2c08d71cf604623a6722f27df3e1835ec2947fc0dad
7
- data.tar.gz: ac444cc2dc40c23dd78397bd38422aaed0070e894e64c0cca7ee79f5467a7a3086a98bf3878f2d1408e8d2666d6df6c970f9a37aea9dfe9d69c772ebc241d3c6
6
+ metadata.gz: c5a306cffec79b182b4eee89482def8493429e8480e303932607bb383290a689da3019a52f45dee9ce7e8c90bc75058c0c1eeb83d70aba7f02b87ad8b9b802b0
7
+ data.tar.gz: 867f196bbb91818a4eab525237bb18120b0af039caf5da271a5eeff98e59fa8e652211e9c8cd59c3913ee310d080f3858e428f13375a6f0e96dcb4ab8e64b6d2
data/README.md CHANGED
@@ -1,35 +1,43 @@
1
- # Giturl
1
+ # giturl
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/giturl`. To experiment with that code, run `bin/console` for an interactive prompt.
4
-
5
- TODO: Delete this and the text above, and describe your gem
3
+ Welcome to giturl! Do you often want to access the GitHub web page from the terminal you are working on? You can use `giturl` to display the URL corresponding to the git-managed directory given as an argument, and open the URL directly in your browser if needed. `giturl` is a simple command. you can easily use from now on.
6
4
 
7
5
  ## Installation
8
6
 
9
- Add this line to your application's Gemfile:
7
+ Install `giturl` yourself as:
8
+
9
+ $ gem install giturl
10
+
11
+ Or add `giturl` to your application's Gemfile and run `bundle` command:
10
12
 
11
13
  ```ruby
12
14
  gem 'giturl'
13
15
  ```
14
16
 
15
- And then execute:
16
-
17
- $ bundle
17
+ ## Usage
18
18
 
19
- Or install it yourself as:
19
+ If you have it installed, you can use `giturl` as follows:
20
20
 
21
- $ gem install giturl
21
+ giturl [-o or --open] dir1 [dir2, dir3, ...]
22
22
 
23
- ## Usage
23
+ Then you will get a list of URLs:
24
24
 
25
- TODO: Write usage instructions here
25
+ URL1 [URL2, URL3, ...] (one URL for each line)
26
26
 
27
- ## Development
27
+ and if `--open` is given, open the URLs on your browser.
28
+ Here is a example to open GitHub web page for current directory:
28
29
 
29
- After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
-
31
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
30
+ ```sh
31
+ $ git clone git@github.com:shinyaohtani/giturl.git
32
+ $ cd giturl/lib/giturl/
33
+ # (working here)
34
+ # (some editing. like vim version.rb......)
35
+ # (then you want to access the GitHub web page for current dir.)
36
+ $ giturl -o .
37
+ https://github.com/shinyaohtani/giturl/tree/master/lib/giturl/
38
+ # and your default browser automatically opens the URL
39
+ ```
32
40
 
33
41
  ## Contributing
34
42
 
35
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/giturl.
43
+ Bug reports and pull requests are welcome on GitHub at https://github.com/shinyaohtani/giturl
data/giturl.gemspec CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
 
11
11
  spec.summary = %q{Show or open GitHub URL for given directory}
12
12
  spec.description = %q{Show or open GitHub URL for given directory}
13
- spec.homepage = "https://shinya-ohtani.hatenadiary.org"
13
+ spec.homepage = "https://github.com/shinyaohtani/giturl"
14
14
 
15
15
  #:spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
16
16
 
@@ -1,3 +1,3 @@
1
1
  module Giturl
2
- VERSION = "1.0.3"
2
+ VERSION = "1.0.4"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: giturl
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - shinyaohtani
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-03-11 00:00:00.000000000 Z
11
+ date: 2020-03-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -56,10 +56,10 @@ files:
56
56
  - bin/setup
57
57
  - giturl.gemspec
58
58
  - lib/giturl/version.rb
59
- homepage: https://shinya-ohtani.hatenadiary.org
59
+ homepage: https://github.com/shinyaohtani/giturl
60
60
  licenses: []
61
61
  metadata:
62
- homepage_uri: https://shinya-ohtani.hatenadiary.org
62
+ homepage_uri: https://github.com/shinyaohtani/giturl
63
63
  source_code_uri: https://github.com/shinyaohtani/giturl
64
64
  changelog_uri: https://github.com/shinyaohtani/giturl/blob/master/README.md
65
65
  post_install_message: