pdc 0.1.5 → 0.1.6

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: 5a63a931b11dc86a0902d4632e3a6cdfc8ac3812
4
- data.tar.gz: 18be45c56ab85aeb2ebced876758df49052fdb32
3
+ metadata.gz: 36201c8037075f9375b6f62e673be1fc163aba7f
4
+ data.tar.gz: 56c62aa74f23501622fa4d96a4aab91bd0e12990
5
5
  SHA512:
6
- metadata.gz: 28df5bd5f63bef0af4d6122df37f3552df06ccb4bf108283f5396224fb1746e3c62a500d145bcfc3b38a16371e9394043e55a788f5af9be3b77daa23953d4ff1
7
- data.tar.gz: 0e316110d183aab7b67357816124daa0b825b5b9d35fd56abf43093972607b4e1c066c85c89d5acd5afff6f7d8c09a108cf2d462a769c90fe5908cfd43e31aa8
6
+ metadata.gz: b16424fed2deddb9264d9d656067040c2d11a98cb5e3805d49d85f5b8500a6719956216db3c31c347a6cb1e5e650238b04963fa0a64f7baf35c81fd6fb3562fc
7
+ data.tar.gz: 8e976c290e7927a841577012ca38b3375562f1455a50eb972ae07cf785f437fd7f599c08122809bf464ae9689c76c772eff2b4ed440e559cef4107a5c17c72a3
data/.flayignore ADDED
@@ -0,0 +1 @@
1
+ examples/**/*
data/.pronto.yml CHANGED
@@ -1,10 +1,7 @@
1
1
  all:
2
2
  exclude:
3
3
  - 'spec/**/*'
4
- # exclude files for single runner
5
- eslint:
6
- exclude:
7
- - 'app/assets/**/*'
4
+
8
5
  github:
9
6
  slug: product-definition-center/pdc-ruby-gem
10
7
  api_endpoint: https://api.github.com/
data/.rubocop.yml CHANGED
@@ -2,9 +2,6 @@ AllCops:
2
2
  DisplayCopNames: true
3
3
  DisplayStyleGuide: true
4
4
 
5
- Exclude:
6
- - spec/**/*
7
-
8
5
  Style/Documentation:
9
6
  Enabled: false
10
7
 
@@ -1,4 +1,5 @@
1
1
  module PDC::V1
2
2
  class Product < PDC::Base
3
+ attributes :name, :short, :active, :product_versions, :internal
3
4
  end
4
5
  end
data/lib/pdc/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module PDC
2
- VERSION = '0.1.5'.freeze
2
+ VERSION = '0.1.6'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pdc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sunil Thaha
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-01-18 00:00:00.000000000 Z
12
+ date: 2017-02-07 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activesupport
@@ -134,6 +134,7 @@ extensions: []
134
134
  extra_rdoc_files: []
135
135
  files:
136
136
  - ".editorconfig"
137
+ - ".flayignore"
137
138
  - ".gitignore"
138
139
  - ".pronto.yml"
139
140
  - ".rubocop.yml"