diff --git a/README.md b/README.md index c947cca..f2935a1 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ By adopting an API Design First approach with APICraft Rails, you can accelerate Add this line to your application's Gemfile: ```ruby -gem 'apicraft-rails', '~> 0.4.0.beta1' +gem 'apicraft-rails', '~> 0.5.0.beta1' ``` And then execute: diff --git a/apicraft-rails.gemspec b/apicraft-rails.gemspec index 1523645..4d2e4dc 100644 --- a/apicraft-rails.gemspec +++ b/apicraft-rails.gemspec @@ -22,7 +22,7 @@ Gem::Specification.new do |spec| # Specify which files should be added to the gem when it is released. # The `git ls-files -z` loads the files in the RubyGem that have been added into git. - spec.files = Dir.glob("{lib,bin}/**/*") + Dir.glob("*.{gemspec,md}") + spec.files = Dir.glob("{lib,bin,web}/**/*") + Dir.glob("*.{gemspec,md}") spec.bindir = "exe" spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] diff --git a/lib/apicraft/version.rb b/lib/apicraft/version.rb index 054b3ed..fd50084 100644 --- a/lib/apicraft/version.rb +++ b/lib/apicraft/version.rb @@ -2,5 +2,5 @@ # Current version of Apicraft. module Apicraft - VERSION = "0.4.0.beta1" + VERSION = "0.5.0.beta1" end