We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6269042 + 84e6228 commit b516ddbCopy full SHA for b516ddb
kinde_sdk.gemspec
@@ -26,7 +26,10 @@ Gem::Specification.new do |s|
26
27
s.add_development_dependency "rspec", "~> 3.6", ">= 3.6.0"
28
29
- s.files = `find *`.split("\n").uniq.sort.reject(&:empty?)
+ s.files = Dir.glob(['lib/**/*', 'kinde_api/**/*']).reject do |f|
30
+ File.directory?(f) || f.start_with?('kinde_api/spec/')
31
+ end
32
+
33
s.test_files = `find spec/* #{SDK_PATH}/spec/*`.split("\n")
34
s.executables = []
35
s.require_paths = %W[lib #{SDK_PATH}/lib]
lib/kinde_sdk/version.rb
@@ -1,3 +1,3 @@
1
module KindeSdk
2
- VERSION = "1.2.2"
+ VERSION = "1.2.3"
3
end
0 commit comments