Add "uuid" as dependency for diaspora_federation-test
Because it is used in the factories.
This commit is contained in:
parent
68bddfcb82
commit
4ff91a56cc
4 changed files with 3 additions and 4 deletions
3
Gemfile
3
Gemfile
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
require "diaspora_federation"
|
||||
require "factory_girl"
|
||||
require "uuid"
|
||||
|
||||
module DiasporaFederation
|
||||
module Test
|
||||
|
|
|
|||
Loading…
Reference in a new issue