rgversion 0.0.1 → 0.0.2

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
  SHA1:
3
- metadata.gz: e6833c25e948b42bf4a02695842de1037bbdb9a7
4
- data.tar.gz: 53ad829258b204c9cdb42a18482ba63e1274b291
3
+ metadata.gz: cc19581c25707ba64e0a326d5072ca7e7ae4edfa
4
+ data.tar.gz: 362251ede09b7b40289adbc46e2430256ebbbbf9
5
5
  SHA512:
6
- metadata.gz: 55fe7bffd578b571cf5957610db11e305eb222b5e5135a451479e277d6774f7e950c79fe5e016756ed4be46f9c79e883ee31277e2d7cc91f92bf762b8d959cb6
7
- data.tar.gz: e5728333e36c02d3ee992917d53610dcfb2749c2efcc1d7de5ecccaf15d451d2aecd3ba54585ff7bfefae6793e2a88bd77ed4978fb13a566d875e5ff15d534cd
6
+ metadata.gz: d89604227918e9a9e4d2d53043067983ab2204f4c82650a555395d2c8a287498ce0e9363476da776c6f6aa2cac3839cbc447c07ac1238dc09ade2ec6ebf51242
7
+ data.tar.gz: c3237bf556f39e0afd5fc278492752d57c65f5e694b19163e3be757c8af2a47ccce69246d9821d8508456c8b2cf79c329a36bdf4b2bdda0f4faf0163f1f7cbcb
data/.gitignore CHANGED
@@ -1,5 +1,6 @@
1
1
  /.bundle/
2
2
  /.yardoc
3
+ /*.gem
3
4
  /Gemfile.lock
4
5
  /_yardoc/
5
6
  /coverage/
data/README.md CHANGED
@@ -1,14 +1,22 @@
1
- # Rgversion
2
-
3
- TODO: Coming soon...
1
+ # rgversion [![Gem](https://img.shields.io/gem/v/rgversion.svg)](https://rubygems.org/gems/rgversion) [![Build Status](https://img.shields.io/travis/vavgustov/rgversion/master.svg)](https://travis-ci.org/vavgustov/rgversion) [![Code Climate](https://img.shields.io/codeclimate/github/vavgustov/rgversion.svg)](https://codeclimate.com/github/vavgustov/rgversion)
2
+
3
+ This library allow you to quickly copy latest semantic versions of specified gems to your clipboard. Versions will be taken from [`rubygems.org`](https://rubygems.org/). Then you can past them in your `Gemfile`.
4
+ ![image](https://cloud.githubusercontent.com/assets/312873/25066821/21615b82-223a-11e7-8110-4e91127a0b6c.png)
4
5
 
5
6
  ## Installation
6
7
 
7
- TODO: Coming soon...
8
+ ```bash
9
+ gem install rgversion
10
+ ```
11
+
12
+ Copy to clipboard work through ``pbcopy`` and will be work out from the box on macOS / OS X.
13
+ To make it work in Ubuntu / Debian you can follow these [steps](https://coderwall.com/p/oaaqwq/pbcopy-on-ubuntu-linux).
8
14
 
9
15
  ## Usage
16
+ Open terminal and execute ``rgversion`` with list of needed gems. E.g:
10
17
 
11
- TODO: Coming soon...
18
+ ```
19
+ rgversion rails puma pg
20
+ ```
12
21
 
13
- ## Code Status
14
- [![Build Status](https://travis-ci.org/vavgustov/rgversion.svg?branch=master)](https://travis-ci.org/vavgustov/rgversion)
22
+ After that semantic version of gem(s) will be copied to your clipboard.
@@ -1,3 +1,3 @@
1
1
  module Rgversion
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
data/rgversion.gemspec CHANGED
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
9
9
  spec.authors = ["vavgustov"]
10
10
  spec.email = ["vavgustov@gmail.com"]
11
11
 
12
- spec.summary = %q{rgversion is a library to quickly copy to clipboard latest version for the specific gem.}
13
- spec.description = %q{rgversion is a library to quickly copy to clipboard latest version for the specific gem.}
12
+ spec.summary = %q{This library allow you to quickly copy latest semantic versions of specified gems to your clipboard. .}
13
+ spec.description = %q{This library allow you to quickly copy latest semantic versions of specified gems to your clipboard. .}
14
14
  spec.homepage = "https://github.com/vavgustov/rgversion"
15
15
  spec.license = "MIT"
16
16
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rgversion
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - vavgustov
@@ -66,8 +66,8 @@ dependencies:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
68
  version: '1.7'
69
- description: rgversion is a library to quickly copy to clipboard latest version for
70
- the specific gem.
69
+ description: This library allow you to quickly copy latest semantic versions of specified
70
+ gems to your clipboard. .
71
71
  email:
72
72
  - vavgustov@gmail.com
73
73
  executables:
@@ -114,6 +114,6 @@ rubyforge_project:
114
114
  rubygems_version: 2.6.11
115
115
  signing_key:
116
116
  specification_version: 4
117
- summary: rgversion is a library to quickly copy to clipboard latest version for the
118
- specific gem.
117
+ summary: This library allow you to quickly copy latest semantic versions of specified
118
+ gems to your clipboard. .
119
119
  test_files: []