Add "uuid" as dependency for diaspora_federation-test

Because it is used in the factories.
This commit is contained in:
Benjamin Neff 2017-01-25 02:37:51 +01:00
parent 68bddfcb82
commit 4ff91a56cc
No known key found for this signature in database
GPG key ID: 971464C3F1A90194
4 changed files with 3 additions and 4 deletions

View file

@ -60,9 +60,6 @@ group :development, :test do
gem "rspec-core", "~> 3.5.1"
gem "rspec-rails", "~> 3.5.1"
# GUID generation
gem "uuid", "~> 2.3.8"
# test database
gem "sqlite3", "~> 1.3.11"
end

View file

@ -13,6 +13,7 @@ PATH
diaspora_federation-test (0.1.7)
diaspora_federation (= 0.1.7)
factory_girl (~> 4.7)
uuid (~> 2.3.8)
GEM
remote: https://rubygems.org/
@ -316,7 +317,6 @@ DEPENDENCIES
spring-commands-rspec
spring-watcher-listen
sqlite3 (~> 1.3.11)
uuid (~> 2.3.8)
webmock (~> 2.0)
yard

View file

@ -21,4 +21,5 @@ Gem::Specification.new do |s|
s.add_dependency "diaspora_federation", DiasporaFederation::VERSION
s.add_dependency "factory_girl", "~> 4.7"
s.add_dependency "uuid", "~> 2.3.8"
end

View file

@ -1,5 +1,6 @@
require "diaspora_federation"
require "factory_girl"
require "uuid"
module DiasporaFederation
module Test