rgversion 0.1.2 → 0.2.0

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: 5034879cffcd273c120370d81ae762168f58f83b
4
- data.tar.gz: d6270405847e9af03766864cb067e5ff4696f1e7
3
+ metadata.gz: 18b2aa1ec0b1ad555160be2362d5b8d9a67a2861
4
+ data.tar.gz: 797071f83754012a9e9333ebca8c5235b2bd6be2
5
5
  SHA512:
6
- metadata.gz: 66990e56c63e664e94af081daf132865ccb8ac9294b61a3734f53104ed92e17f7410fa4d53dd948696b5cc2ca80181b7cb333727359e5ce408a55b3bc82fd02d
7
- data.tar.gz: b241e721424fb18f2c69fd76c19ef9cb91abd692b87d02406ffc7933e661eb23ad752cc783056992fc2143ffea9f4d4cad4964342bf5536388d62334ff153f0a
6
+ metadata.gz: d1ecca1388ea18d6f5374e93be11a524502ba3c8093a460fdbe9934da901ac1862c3f3258beccbcd300dea1c05aff2df4a4d655a1ba9cb9ba89803914cc6fa82
7
+ data.tar.gz: 9aa48ca15b45a5fbebe499cfea937077c49f8942aca2400f14e2705e2936c80dbf4a0a8889d4786c063448e7adb6a54336ddcf77bae0bac492ac4a6e5b15dd22
data/exe/rgversion CHANGED
@@ -1,6 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- require "bundler/setup"
4
3
  require "rgversion"
5
4
 
6
5
  Rgversion::Application.run
@@ -1,4 +1,4 @@
1
1
  module Rgversion
2
- VERSION = '0.1.2'
3
- PREVIOUS_VERSION = '0.1.1'
2
+ VERSION = "0.2.0".freeze
3
+ PREVIOUS_VERSION = "0.1.2".freeze
4
4
  end
data/rgversion.gemspec CHANGED
@@ -1,7 +1,7 @@
1
1
  # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
2
+ lib = File.expand_path("../lib", __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'rgversion/version'
4
+ require "rgversion/version"
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "rgversion"
@@ -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{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.}
12
+ spec.summary = "Copy latest semantic versions of specified gems to your clipboard."
13
+ spec.description = "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,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rgversion
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - vavgustov
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-07-22 00:00:00.000000000 Z
11
+ date: 2017-08-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -82,8 +82,6 @@ files:
82
82
  - LICENSE.txt
83
83
  - README.md
84
84
  - Rakefile
85
- - bin/console
86
- - bin/setup
87
85
  - exe/rgversion
88
86
  - lib/rgversion.rb
89
87
  - lib/rgversion/application.rb
data/bin/console DELETED
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require "bundler/setup"
4
- require "rgversion"
5
-
6
- # You can add fixtures and/or initialization code here to make experimenting
7
- # with your gem easier. You can also use a different console, if you like.
8
-
9
- # (If you use this, don't forget to add pry to your Gemfile!)
10
- # require "pry"
11
- # Pry.start
12
-
13
- require "irb"
14
- IRB.start(__FILE__)
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here