parse_gemspec-cli 0.4.1 → 1.0.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: df9c57db656a10ed8dc4872186e9de5af9650a4c
4
- data.tar.gz: bb0836f3b31c543823f39105e68feb6ad99c3c1e
3
+ metadata.gz: 5bab6c2ae8727718e0090b3dd80d965b4ea83749
4
+ data.tar.gz: 1416bfb100e49cd0bd5f914b18976486a5e7df5a
5
5
  SHA512:
6
- metadata.gz: f440e12fe8adc056a816e39dab153cc2b9f7ba638b5110a148b15f18fde3309581cb3b5e9c27991d464699f4ce1a09d60b2c201a3855e0cdf637363ee8075f36
7
- data.tar.gz: cce36732a517401f91917f12ed429324ae327c7711e1d9f3fb8ed0ce090b25fa17bc8acbe42b1dc0c5316f7eeda665ed884a4737ed188c1d750bfe23a98ed46e
6
+ metadata.gz: a8728c58a31712c59e26e164159f4026d3c15dab12a961b4ccf77b1abcb9a43b075d4d28d6e8594a87a8e516bcc1940220a94f7ae51fc55c1890652cf6ab5500
7
+ data.tar.gz: 677155ddda7aadc1232e40fd3824fa0ca35d65ca597e994139aec6c9467f412b741beb245c53a5ca3246c1701cfee4edf24ff80810ea241d57ecaf08b457aa79
File without changes
data/.gitignore CHANGED
File without changes
File without changes
@@ -1,8 +1,10 @@
1
1
  language: "ruby"
2
2
  rvm:
3
- - "2.0"
4
- - "2.1"
5
- - "2.2"
3
+ - "2.0.0"
4
+ - "2.1.10"
5
+ - "2.2.6"
6
+ - "2.3.3"
7
+ - "2.4.0"
6
8
  - "ruby-head"
7
9
  matrix:
8
10
  allow_failures:
@@ -10,4 +12,3 @@ matrix:
10
12
  before_install:
11
13
  - "gem update bundler"
12
14
  - "bin/setup"
13
- script: "bundle exec rubocop && rake"
File without changes
data/Gemfile CHANGED
File without changes
File without changes
data/README.md CHANGED
File without changes
data/Rakefile CHANGED
File without changes
@@ -1,3 +1,9 @@
1
+ <a name="1.0.0"></a>
2
+ # [1.0.0](https://github.com/packsaddle/ruby-parse_gemspec-cli/compare/v0.4.1...v1.0.0) (2017-01-01)
3
+
4
+ * Require ruby 2.0
5
+
6
+
1
7
  <a name="0.4.1"></a>
2
8
  ## [0.4.1](https://github.com/packsaddle/ruby-parse_gemspec-cli/compare/v0.4.0...v0.4.1) (2015-09-24)
3
9
 
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -1,5 +1,5 @@
1
1
  module ParseGemspec
2
2
  module Cli
3
- VERSION = '0.4.1'
3
+ VERSION = '1.0.0'
4
4
  end
5
5
  end
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "devDependencies": {
3
- "conventional-changelog": "0.4.3",
3
+ "conventional-changelog": "0.5.1",
4
4
  "npm-check-updates": "^2.2.3",
5
5
  "urijs": "^1.16.1"
6
6
  },
@@ -16,6 +16,7 @@ Gem::Specification.new do |spec|
16
16
  'CLI for parsing *.gemspec file. Convert to JSON format.'
17
17
  spec.homepage = ParseGemspec::Cli::HOMEPAGE
18
18
  spec.license = 'MIT'
19
+ spec.required_ruby_version = '>= 2.0'
19
20
 
20
21
  spec.files =
21
22
  `git ls-files -z`
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: parse_gemspec-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - sanemat
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-09-24 00:00:00.000000000 Z
11
+ date: 2017-01-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
@@ -137,7 +137,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
137
137
  requirements:
138
138
  - - ">="
139
139
  - !ruby/object:Gem::Version
140
- version: '0'
140
+ version: '2.0'
141
141
  required_rubygems_version: !ruby/object:Gem::Requirement
142
142
  requirements:
143
143
  - - ">="
@@ -145,7 +145,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
145
145
  version: '0'
146
146
  requirements: []
147
147
  rubyforge_project:
148
- rubygems_version: 2.4.5
148
+ rubygems_version: 2.5.1
149
149
  signing_key:
150
150
  specification_version: 4
151
151
  summary: CLI for parsing *.gemspec file. Convert to JSON format.