Skip to content

Commit

Permalink
fix broken gem build
Browse files Browse the repository at this point in the history
  • Loading branch information
DocX committed Jul 15, 2020
1 parent 47baaae commit c441bf1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.5.25

* Fix broken gem build (gemspec files)

# 0.5.23

* Add support for HTTP status code: 423 Locked
Expand Down
8 changes: 4 additions & 4 deletions api_client.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ Gem::Specification.new do |s|

s.rubyforge_project = "api_client"
s.required_ruby_version = ">= 2.2.0"

s.platform = "java" if RUBY_PLATFORM == "java"

# Declare runtime dependencies here:
def s.add_runtime_dependencies(method)
if RUBY_PLATFORM == "java"
Expand Down Expand Up @@ -45,8 +45,8 @@ Gem::Specification.new do |s|
s.add_runtime_dependencies(:add_dependency)
end

s.files = Dir['lib/*.rb'] + Dir['spec/*.rb'] + Dir['[A-Z]*']
s.test_files = Dir['spec/*.rb']
s.files = Dir['lib/**/*.rb'] + Dir['spec/**/*.rb'] + Dir['[A-Z]*']
s.test_files = Dir['spec/**/*.rb']
s.executables = []
s.require_paths = ["lib"]
end
2 changes: 1 addition & 1 deletion lib/api_client/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module ApiClient
VERSION = '0.5.24'
VERSION = '0.5.25'
end

0 comments on commit c441bf1

Please sign in to comment.