Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module Swagger
VERSION = "4.06.08"
VERSION = "{{appVersion}}"
end

4 changes: 2 additions & 2 deletions samples/client/petstore/ruby/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ gem build swagger-client.gemspec
Then you can either install the gem:

```shell
gem install ./swagger-client-4.06.08.gem
gem install ./swagger-client-1.0.0.gem
```

or publish the gem to a gem server like [RubyGems](https://rubygems.org/).

Finally add this to your Gemfile:

gem 'swagger-client', '~> 4.06.08'
gem 'swagger-client', '~> 1.0.0'

### Host as a git repository

Expand Down
2 changes: 1 addition & 1 deletion samples/client/petstore/ruby/lib/swagger/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module Swagger
VERSION = "4.06.08"
VERSION = "1.0.0"
end