diff --git a/Gemfile.lock b/Gemfile.lock index 00d42e2..5b5473c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,8 +1,8 @@ PATH remote: . specs: - factory_bot_rails (5.0.0.rc2) - factory_bot (~> 5.0.0.rc2) + factory_bot_rails (5.0.0) + factory_bot (~> 5.0.0) railties (>= 4.2.0) GEM @@ -72,7 +72,7 @@ GEM diff-lcs (1.3) erubi (1.7.1) execjs (2.7.0) - factory_bot (5.0.0.rc2) + factory_bot (5.0.0) activesupport (>= 4.2.0) ffi (1.9.25) ffi (1.9.25-java) diff --git a/factory_bot_rails.gemspec b/factory_bot_rails.gemspec index 7ec54f3..4d9c5f7 100644 --- a/factory_bot_rails.gemspec +++ b/factory_bot_rails.gemspec @@ -1,20 +1,19 @@ Gem::Specification.new do |s| s.name = "factory_bot_rails" - s.version = "5.0.0.rc2" + s.version = "5.0.0" s.authors = ["Joe Ferris"] s.email = "jferris@thoughtbot.com" s.homepage = "https://github.com/thoughtbot/factory_bot_rails" s.summary = "factory_bot_rails provides integration between "\ - "factory_bot and rails 3 or newer" + "factory_bot and rails 4.2 or newer" s.description = "factory_bot_rails provides integration between "\ - "factory_bot and rails 3 or newer (currently just automatic "\ - "factory definition loading)" + "factory_bot and rails 4.2 or newer" s.files = Dir["lib/**/*"] + %w[CONTRIBUTING.md LICENSE NEWS README.md] s.require_paths = ["lib"] s.executables = [] s.license = "MIT" - s.add_runtime_dependency("factory_bot", "~> 5.0.0.rc2") + s.add_runtime_dependency("factory_bot", "~> 5.0.0") s.add_runtime_dependency("railties", ">= 4.2.0") end