idnow 1.0.0 → 1.1.0

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: 68e89c9d1b1a11908376b9492588a24195deb333
4
- data.tar.gz: 024274414183613e12b8dc8c2400085f5be24fc3
3
+ metadata.gz: 57e72a956f1a026c9297ba8199cc07b3e943fcc1
4
+ data.tar.gz: 86c6851ce341282bac0092a96321d8d437f1c870
5
5
  SHA512:
6
- metadata.gz: f8337596ceff9678d48c84599e5f2425e8ae6d708f5d41b0bf50ff0fa7652087656d4bdcf9e0c1c64146c54b2a1e2d323e3663f92d61dff7f4b8dc71cfb6e340
7
- data.tar.gz: d138e5b6fe4600e56af9bc8667b6b19735e8b881149109ccddedc671b67d19695f2c2d7622a18c8b90d6227a38be9cc7cf5512b8c919611a3ad9856a7344ba43
6
+ metadata.gz: 458341cdac882f348728b17556f33f6ac6faddd3b9aeae4eb88b7e0c0706ff03cdddc6d5cc0489703b0eda9ea5225e76a1b0eb96d79addc72cd05124108d158c
7
+ data.tar.gz: 8ed1b3ff93ce58a1f559ff614343c6aa3022ebe50f9c9159c6e133c28291f06d9703af8ce3b15bf917f96f444fe5e6e33af8b70ffd2b1715e87ce14c4c6bfdd5
@@ -35,9 +35,3 @@ Style/Documentation:
35
35
 
36
36
  Style/GuardClause:
37
37
  Enabled: false
38
-
39
- # Offense count: 1
40
- # Configuration parameters: ExpectMatchingDefinition, Regex, IgnoreExecutableScripts.
41
- Style/FileName:
42
- Exclude:
43
- - 'lib/solaris/oauth2-error_monkey-patch.rb'
@@ -0,0 +1,13 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
+
5
+ We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion.
6
+
7
+ Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8
+
9
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10
+
11
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12
+
13
+ This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2015 Dominic Breuker
3
+ Copyright (c) 2016 solarisBank AG
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = 'idnow'
5
- spec.version = '1.0.0'
5
+ spec.version = '1.1.0'
6
6
  spec.authors = ['Joan Martinez, Tobias Bielohlawek']
7
7
  spec.email = ['joan.martinez.ripoll@gmail.com']
8
8
 
@@ -6,7 +6,7 @@ module Idnow
6
6
  include Idnow::Jsonable
7
7
 
8
8
  attr_accessor :identification_process, :contact_data, :user_data,
9
- :identification_document, :attachments, :esigning
9
+ :identification_document, :attachments, :esigning, :raw_data
10
10
 
11
11
  def initialize(data)
12
12
  @identification_process = IdentificationProcess.new(data['identificationprocess'])
@@ -15,6 +15,7 @@ module Idnow
15
15
  @identification_document = IdentificationDocument.new(data.fetch('identificationdocument', {}))
16
16
  @attachments = data['attachments']
17
17
  @esigning = data['esigning']
18
+ @raw_data = data
18
19
  end
19
20
 
20
21
  def esigning?
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: idnow
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joan Martinez, Tobias Bielohlawek
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-05-04 00:00:00.000000000 Z
11
+ date: 2016-07-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: net-sftp
@@ -118,7 +118,7 @@ files:
118
118
  - ".gitignore"
119
119
  - ".rspec"
120
120
  - ".rubocop.yml"
121
- - ".travis.yml"
121
+ - CODE_OF_CONDUCT.md
122
122
  - Gemfile
123
123
  - LICENSE.txt
124
124
  - Makefile
@@ -1,4 +0,0 @@
1
- language: ruby
2
- rvm:
3
- - 2.0.0
4
- before_install: gem install bundler -v 1.10.6