quickey_ruby_sdk 0.1.1 → 0.1.2
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 +4 -4
- data/.gitignore +1 -1
- data/lib/quickey_ruby_sdk/version.rb +1 -1
- data/quickey_ruby_sdk.gemspec +8 -8
- metadata +3 -7
- data/spec/quickey_ruby_sdk_spec.rb +0 -4
- data/spec/spec_helper.rb +0 -15
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cf80fc7c44a3f8f5f9f968f1f0d6a2e2286eef3ff13ccd513d654b9e01838955
|
4
|
+
data.tar.gz: 0e1c21e26ebd7dd0d7c534d1b839075130a40dc6088a0205876bc8108996c48b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cfb79374fe26c56eb1946280566517286b83c67e09acd63f7f096e6e10aefdbfd95017667abfce12397e13e448701eeb754a7512d580c5de8edb49a0622e4210
|
7
|
+
data.tar.gz: 3e997b4ac00bc2e5633de7e3a5b8e19f817b7c339a4971f619924d1026c33304a4d6966ae36126f03144550d474fb04051c83fb5fa208d4adc22664d9894f4c8
|
data/.gitignore
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
|
1
|
+
quickey_ruby_sdk-*.gem
|
2
2
|
Gemfile.lock
|
data/quickey_ruby_sdk.gemspec
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
|
-
|
3
|
-
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'quickey_ruby_sdk/version'
|
4
5
|
|
5
6
|
Gem::Specification.new do |spec|
|
6
7
|
spec.name = "quickey_ruby_sdk"
|
@@ -19,12 +20,11 @@ Gem::Specification.new do |spec|
|
|
19
20
|
|
20
21
|
# Specify which files should be added to the gem when it is released.
|
21
22
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
spec.
|
26
|
-
|
27
|
-
spec.executables = `git ls-files -- bin/*`.split("\n").map { |f| ::File.basename(f) }
|
23
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
24
|
+
f.match(%r{^(test|spec|features)/})
|
25
|
+
end
|
26
|
+
spec.bindir = "exe"
|
27
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
28
28
|
spec.require_paths = ["lib"]
|
29
29
|
|
30
30
|
# Uncomment to register a new dependency of your gem
|
metadata
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: quickey_ruby_sdk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- quickey team
|
8
8
|
autorequire:
|
9
|
-
bindir:
|
9
|
+
bindir: exe
|
10
10
|
cert_chain: []
|
11
11
|
date: 2021-06-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
@@ -61,9 +61,7 @@ dependencies:
|
|
61
61
|
description: A Login Management System for Application
|
62
62
|
email:
|
63
63
|
- efrizal@analisa.io
|
64
|
-
executables:
|
65
|
-
- console
|
66
|
-
- setup
|
64
|
+
executables: []
|
67
65
|
extensions: []
|
68
66
|
extra_rdoc_files: []
|
69
67
|
files:
|
@@ -80,8 +78,6 @@ files:
|
|
80
78
|
- lib/quickey_ruby_sdk/config.rb
|
81
79
|
- lib/quickey_ruby_sdk/version.rb
|
82
80
|
- quickey_ruby_sdk.gemspec
|
83
|
-
- spec/quickey_ruby_sdk_spec.rb
|
84
|
-
- spec/spec_helper.rb
|
85
81
|
homepage: https://github.com/efrizal-analisa/quickey_ruby_sdk
|
86
82
|
licenses:
|
87
83
|
- MIT
|
data/spec/spec_helper.rb
DELETED
@@ -1,15 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require "quickey_ruby_sdk"
|
4
|
-
|
5
|
-
RSpec.configure do |config|
|
6
|
-
# Enable flags like --only-failures and --next-failure
|
7
|
-
config.example_status_persistence_file_path = ".rspec_status"
|
8
|
-
|
9
|
-
# Disable RSpec exposing methods globally on `Module` and `main`
|
10
|
-
config.disable_monkey_patching!
|
11
|
-
|
12
|
-
config.expect_with :rspec do |c|
|
13
|
-
c.syntax = :expect
|
14
|
-
end
|
15
|
-
end
|