adyen-cse-ruby 0.1.4 → 0.1.5

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: c5fc9adabb2241639d30e0b5cb121c47eb2686c6
4
- data.tar.gz: c7dc82025a3c6ae90f1eb6585d760c940e0de0bb
3
+ metadata.gz: 5c7ca95081976ea2f8c31a6ba33249d213534ec9
4
+ data.tar.gz: 36c7dbb961da7aeb6a7b37d8e1709c8af7767047
5
5
  SHA512:
6
- metadata.gz: dbc661d1679dfd3cd523d81fa3cee773f70dcbd744dde7ff65b287261cb0d24ff9cb39d23d201af7a5c3bbf97e8dd04882861e7065d3f08f18544055a3b63c3f
7
- data.tar.gz: be25fd85d3a1f8af3c174e37cb20b38108faf1989d319668301e1227ff81a31e0c43683b0bd4c092d9a914aa21d439254c66b9447b081cde716aa5ab9519b5bb
6
+ metadata.gz: 6f8bca433565116733632974672df8cf832d4732be8db4c72ecdec91c086cb5fa87bf70b05ab58290e3b9f5827f5f35d67c58da051e02a60743748d20d1238f5
7
+ data.tar.gz: 101ec3c369d1889579c9a86f8f820a249103d80379f3bc3d9443b047f7c277e28c96db2d859322000b19b75d79751c8ea1b21d493d57161ec69285e50eb2842b
data/development.md ADDED
@@ -0,0 +1,8 @@
1
+ ## Development
2
+
3
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
4
+
5
+ To install this gem onto your local machine, run `bundle exec rake install`.
6
+
7
+ To release a new version, update the version number in `version.rb`,
8
+ and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
@@ -13,7 +13,7 @@ module AdyenCse
13
13
 
14
14
  def initialize(public_key)
15
15
  @public_key = public_key
16
- yield self
16
+ yield self rescue nil
17
17
  self.generation_time ||= Time.now
18
18
  end
19
19
 
@@ -1,3 +1,3 @@
1
1
  module AdyenCse
2
- VERSION = "0.1.4"
2
+ VERSION = "0.1.5"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: adyen-cse-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joey Cheng
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-08-02 00:00:00.000000000 Z
11
+ date: 2017-08-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: openssl-ccm
@@ -82,6 +82,7 @@ files:
82
82
  - adyen-cse-ruby.gemspec
83
83
  - bin/console
84
84
  - bin/setup
85
+ - development.md
85
86
  - lib/adyen_cse.rb
86
87
  - lib/adyen_cse/encrypter.rb
87
88
  - lib/adyen_cse/version.rb