parse_gemspec 0.1.0 → 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: 64dbe7aa7ea1f5d41e961ef8882c623250232af0
4
- data.tar.gz: 8f3fb0e9fe0dcf6956cdac6a5804b847ed233b07
3
+ metadata.gz: 239de115ade90d071db6f688b54ed30f5aa2edab
4
+ data.tar.gz: 14a5d1c970680366597294f2a1875e8bc69c8a71
5
5
  SHA512:
6
- metadata.gz: f408155ec2d856c393be88af153206f315c947f196dbb0a9eb9a70f956549318461031439a4fd1166dd46c2227ee20265b3af15fa87e6c259fc61114ba6a81d3
7
- data.tar.gz: 9a255e299ceb473d02f6f6059ec9c86722d6dedfd16a2454890d3511a06ae30ef44f5775a1ca56704fc234f36125b5ca73b51ee67737272749a54c6bca883550
6
+ metadata.gz: bddab34d1bd9a264f7dda883ada9aa2ebef1605e4623982d8813161441158b0eb9110c83a4703813d7f6986fc9b1a0fe760cf258f6a8fedef48841070c0291c0
7
+ data.tar.gz: e58be5feafd446b912d7df43c0c8dff1067c7d76952c1c34f5bb9e429d5d3226f700c6c88e6bad28b7d66f73cd16de6e119d1764255d68043a5c8c18a236d984
data/.gitignore CHANGED
@@ -8,3 +8,4 @@
8
8
  /spec/reports/
9
9
  /tmp/
10
10
  /example/.bundle/
11
+ /example/vendor/
data/.rubocop.yml CHANGED
@@ -2,6 +2,7 @@ AllCops:
2
2
  Exclude:
3
3
  - test/fixtures/**/*
4
4
  - vendor/bundle/**/*
5
+ - example/vendor/bundle/**/*
5
6
  Style/Documentation:
6
7
  Enabled: false
7
8
  Style/FileName:
data/changelog.md CHANGED
@@ -1,3 +1,16 @@
1
+ <a name"0.2.0"></a>
2
+ ### 0.2.0 (2015-09-23)
3
+
4
+ * Breaking change
5
+
6
+ respect `Kernel.format`.
7
+
8
+
9
+ #### Features
10
+
11
+ * **output:** build Specification#to_hash_object
12
+
13
+
1
14
  <a name"0.1.0"></a>
2
15
  ### 0.1.0 (2015-09-23)
3
16
 
@@ -12,10 +12,7 @@ module ParseGemspec
12
12
  @spec = spec
13
13
  end
14
14
 
15
- def format(output_format: {})
16
- # avoid rubocop warn
17
- output_format.nil?
18
-
15
+ def to_hash_object(format: {}) # rubocop:disable Lint/UnusedMethodArgument
19
16
  {
20
17
  name: name,
21
18
  version: version.version,
@@ -1,3 +1,3 @@
1
1
  module ParseGemspec
2
- VERSION = '0.1.0'
2
+ VERSION = '0.2.0'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: parse_gemspec
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - sanemat