quickey_ruby_sdk 0.1.0 → 0.1.1

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: 9138797951a637252681fc73b3377055dafdc5e18ab5db100e40d8ef78b9e131
4
- data.tar.gz: e031f791665507011fc9832e9b2f4443e53a9416dd441124bf347bc2948fa0aa
3
+ metadata.gz: bf5362cd1ae59f14d624efeb57218d92ac896c4ce71f454472c39df2d1219ea9
4
+ data.tar.gz: c9c56e18c75f309cab546a1c857e9c58983b06ead7a75e2cbf0fe8d0133da3f6
5
5
  SHA512:
6
- metadata.gz: c68436c670b951c4462024ba980aa2f43d7be2a678885981b6528cd8416608c3c188843e5de279d93a79a09f368f7045ac8c9aeb07bb18a3a5128af31971c645
7
- data.tar.gz: 1fa7d32c85057ea5523b99804113c5ba7e2c44f40d76836589a390f46742ed671fb963f8b9822ae7a7ea97885186a0a133c5b100c141743f89055365a34e2a97
6
+ metadata.gz: a2903afe2a2a84641689f934e24351f8465d44f6b20ac36e14fa15f8bc13d2b662057bbb593493b369282677149950c0905a32ddb6d74a483f36ef77ffe1201b
7
+ data.tar.gz: 88ceb60b5e1c506e678256f0060bb1a5339f3d00636bf6a274e1c7d70383c672378a581d2ea954fbb9260dff270e3f6758aa8320ff0bac204ae42abcb1406828
data/.gitignore ADDED
@@ -0,0 +1,2 @@
1
+ magic-admin-*.gem
2
+ Gemfile.lock
data/bin/console CHANGED
File without changes
data/bin/setup CHANGED
File without changes
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module QuickeyRubySdk
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
@@ -5,7 +5,7 @@ require_relative "lib/quickey_ruby_sdk/version"
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "quickey_ruby_sdk"
7
7
  spec.version = QuickeyRubySdk::VERSION
8
- spec.authors = ["efrizal"]
8
+ spec.authors = ["quickey team"]
9
9
  spec.email = ["efrizal@analisa.io"]
10
10
 
11
11
  spec.summary = 'SDK quickey for Ruby"'
@@ -19,11 +19,12 @@ Gem::Specification.new do |spec|
19
19
 
20
20
  # Specify which files should be added to the gem when it is released.
21
21
  # 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.bindir = "exe"
26
- spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
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) }
27
28
  spec.require_paths = ["lib"]
28
29
 
29
30
  # Uncomment to register a new dependency of your gem
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ RSpec.describe QuickeyRubySdk do
4
+ end
@@ -0,0 +1,15 @@
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
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.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
- - efrizal
7
+ - quickey team
8
8
  autorequire:
9
- bindir: exe
9
+ bindir: bin
10
10
  cert_chain: []
11
11
  date: 2021-06-14 00:00:00.000000000 Z
12
12
  dependencies:
@@ -61,14 +61,16 @@ dependencies:
61
61
  description: A Login Management System for Application
62
62
  email:
63
63
  - efrizal@analisa.io
64
- executables: []
64
+ executables:
65
+ - console
66
+ - setup
65
67
  extensions: []
66
68
  extra_rdoc_files: []
67
69
  files:
70
+ - ".gitignore"
68
71
  - CHANGELOG.md
69
72
  - CODE_OF_CONDUCT.md
70
73
  - Gemfile
71
- - Gemfile.lock
72
74
  - LICENSE.txt
73
75
  - README.md
74
76
  - Rakefile
@@ -78,6 +80,8 @@ files:
78
80
  - lib/quickey_ruby_sdk/config.rb
79
81
  - lib/quickey_ruby_sdk/version.rb
80
82
  - quickey_ruby_sdk.gemspec
83
+ - spec/quickey_ruby_sdk_spec.rb
84
+ - spec/spec_helper.rb
81
85
  homepage: https://github.com/efrizal-analisa/quickey_ruby_sdk
82
86
  licenses:
83
87
  - MIT
data/Gemfile.lock DELETED
@@ -1,65 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- quickey_ruby_sdk (0.1.0)
5
- httparty (~> 0.18.1)
6
- json (~> 2.5, >= 2.5.1)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- ast (2.4.2)
12
- diff-lcs (1.4.4)
13
- httparty (0.18.1)
14
- mime-types (~> 3.0)
15
- multi_xml (>= 0.5.2)
16
- json (2.5.1)
17
- mime-types (3.3.1)
18
- mime-types-data (~> 3.2015)
19
- mime-types-data (3.2021.0225)
20
- multi_xml (0.6.0)
21
- parallel (1.20.1)
22
- parser (3.0.1.1)
23
- ast (~> 2.4.1)
24
- rainbow (3.0.0)
25
- rake (13.0.3)
26
- regexp_parser (2.1.1)
27
- rexml (3.2.5)
28
- rspec (3.10.0)
29
- rspec-core (~> 3.10.0)
30
- rspec-expectations (~> 3.10.0)
31
- rspec-mocks (~> 3.10.0)
32
- rspec-core (3.10.1)
33
- rspec-support (~> 3.10.0)
34
- rspec-expectations (3.10.1)
35
- diff-lcs (>= 1.2.0, < 2.0)
36
- rspec-support (~> 3.10.0)
37
- rspec-mocks (3.10.2)
38
- diff-lcs (>= 1.2.0, < 2.0)
39
- rspec-support (~> 3.10.0)
40
- rspec-support (3.10.2)
41
- rubocop (1.16.1)
42
- parallel (~> 1.10)
43
- parser (>= 3.0.0.0)
44
- rainbow (>= 2.2.2, < 4.0)
45
- regexp_parser (>= 1.8, < 3.0)
46
- rexml
47
- rubocop-ast (>= 1.7.0, < 2.0)
48
- ruby-progressbar (~> 1.7)
49
- unicode-display_width (>= 1.4.0, < 3.0)
50
- rubocop-ast (1.7.0)
51
- parser (>= 3.0.1.1)
52
- ruby-progressbar (1.11.0)
53
- unicode-display_width (2.0.0)
54
-
55
- PLATFORMS
56
- x86_64-linux
57
-
58
- DEPENDENCIES
59
- quickey_ruby_sdk!
60
- rake (~> 13.0)
61
- rspec (~> 3.0)
62
- rubocop (~> 1.7)
63
-
64
- BUNDLED WITH
65
- 2.2.15