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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bf5362cd1ae59f14d624efeb57218d92ac896c4ce71f454472c39df2d1219ea9
4
- data.tar.gz: c9c56e18c75f309cab546a1c857e9c58983b06ead7a75e2cbf0fe8d0133da3f6
3
+ metadata.gz: cf80fc7c44a3f8f5f9f968f1f0d6a2e2286eef3ff13ccd513d654b9e01838955
4
+ data.tar.gz: 0e1c21e26ebd7dd0d7c534d1b839075130a40dc6088a0205876bc8108996c48b
5
5
  SHA512:
6
- metadata.gz: a2903afe2a2a84641689f934e24351f8465d44f6b20ac36e14fa15f8bc13d2b662057bbb593493b369282677149950c0905a32ddb6d74a483f36ef77ffe1201b
7
- data.tar.gz: 88ceb60b5e1c506e678256f0060bb1a5339f3d00636bf6a274e1c7d70383c672378a581d2ea954fbb9260dff270e3f6758aa8320ff0bac204ae42abcb1406828
6
+ metadata.gz: cfb79374fe26c56eb1946280566517286b83c67e09acd63f7f096e6e10aefdbfd95017667abfce12397e13e448701eeb754a7512d580c5de8edb49a0622e4210
7
+ data.tar.gz: 3e997b4ac00bc2e5633de7e3a5b8e19f817b7c339a4971f619924d1026c33304a4d6966ae36126f03144550d474fb04051c83fb5fa208d4adc22664d9894f4c8
data/.gitignore CHANGED
@@ -1,2 +1,2 @@
1
- magic-admin-*.gem
1
+ quickey_ruby_sdk-*.gem
2
2
  Gemfile.lock
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module QuickeyRubySdk
4
- VERSION = "0.1.1"
4
+ VERSION = "0.1.2"
5
5
  end
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
-
3
- require_relative "lib/quickey_ruby_sdk/version"
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
- # spec.files = Dir.chdir(File.expand_path(__dir__)) do
23
- # `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
24
- # end
25
- spec.files = `git ls-files`.split("\n")
26
- # spec.bindir = "exe"
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.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - quickey team
8
8
  autorequire:
9
- bindir: bin
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
@@ -1,4 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- RSpec.describe QuickeyRubySdk do
4
- end
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