gemspec 0.1.0 → 0.2.1

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: 6703d9a6209f017896a24cb5611385a3d2aac0a8
4
- data.tar.gz: bddb090732e5bad00b9d407fb5b30aa3bb35d146
3
+ metadata.gz: 496653dc44c9435391ce036b0f0d2d5e48f7d7a9
4
+ data.tar.gz: 8e92c57405f7091c0e8a9b6530f30fc955549649
5
5
  SHA512:
6
- metadata.gz: 623760ee54ff5b7ee941774bd862eee71dc0eb821bf7317b2f128bfebcc547c213171c996a6e3fadcaa853d2dcd09362e01f71ddccef325e0d92f436f05798f2
7
- data.tar.gz: 266f6377fd0b7125e8f2816e48ef93443b92bd070790f5898317cd2d3d4a095fc2717299c6d0ef8a72d5af10eec83d2c559289b6b723e6fcc3eb984c780e7e21
6
+ metadata.gz: bcf2353aea2cda764e60d69b3d90a5ff3037760d75f181e425e2d1f9d32b1739df02512be63e82c1928eeb1cc8d2b009f68949ff73b274fb4f55e8d03d2fd1ee
7
+ data.tar.gz: 678e80ec50715b10ea287c46b57cd420f2ff72f16e3de0893106610909e99f4151ea6922a4b3780ca8678a935515ea3aaeae0afe89c922334d3c4dc07b21eb32
data/.gitignore CHANGED
@@ -1,2 +1,3 @@
1
1
  /pkg/
2
2
  /Gemfile.lock
3
+ /LICENSES/
data/gemspec.gemspec CHANGED
@@ -24,6 +24,7 @@ Gem::Specification.new do |s|
24
24
  #####Unlikely to change
25
25
  s.email = [ `git config user.email` ]
26
26
  s.homepage = "https://github.com/#{`git config github.username`}/#{s.name}.git"
27
+ $? == 0 || s.homepage = nil
27
28
  ###################################
28
29
 
29
30
  s.add_dependency 'activesupport', '4.2.1'
data/lib/gemspec.rb CHANGED
@@ -37,7 +37,7 @@ module Gemspec
37
37
  #Specify common paths and files
38
38
  s.test_files = Git::ls_files.grep(%r{^(test|s|features)/})
39
39
  s.files = Git::ls_files.reject { |f| f.match(%r{^(test|s|features)/}) }
40
- s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
40
+ s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
41
41
  s.require_paths = ["lib"]
42
42
 
43
43
  #Authors are all committers or `git config user.name` if the former is empty
data/lib/gemspec/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.2.1
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
@@ -24,6 +24,7 @@ Gem::Specification.new do |s|
24
24
  #####Unlikely to change
25
25
  s.email = [ `git config user.email` ]
26
26
  s.homepage = "https://github.com/#{`git config github.username`}/#{s.name}.git"
27
+ $? == 0 || s.homepage = nil
27
28
  ###################################
28
29
 
29
30
  #Dependencies
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gemspec
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Petr Skocik
@@ -88,8 +88,6 @@ extra_rdoc_files: []
88
88
  files:
89
89
  - ".gitignore"
90
90
  - Gemfile
91
- - LICENSES/.info
92
- - LICENSES/MIT
93
91
  - README.md
94
92
  - Rakefile
95
93
  - VERSION
@@ -433,13 +431,14 @@ files:
433
431
  - share/gemspec/templates/rspec/rakelib/spec.rake
434
432
  - share/gemspec/templates/rspec/spec/spec_helper.rb
435
433
  - share/gemspec/templates/rspec/spec/spec_spec.rb
436
- homepage: https://github.com//gemspec.git
434
+ homepage:
437
435
  licenses:
438
436
  - MIT
439
437
  metadata:
440
438
  namespaced_path: gemspec
441
439
  constant_name: Gemspec
442
- human_version: 0.1.0
440
+ human_version: |
441
+ 0.1.1
443
442
  post_install_message:
444
443
  rdoc_options: []
445
444
  require_paths:
data/LICENSES/.info DELETED
@@ -1 +0,0 @@
1
- This directory contains the licenses you can use with this gem
data/LICENSES/MIT DELETED
@@ -1,9 +0,0 @@
1
-
2
- MIT License
3
- Copyright (c) <year> <copyright holders>
4
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
5
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
7
-
8
- There is no standard license header for the license
9
-