Procházet zdrojové kódy

get nodes imported

Chris Mague před 7 roky
rodič
revize
00d42c6836
2 změnil soubory, kde provedl 5 přidání a 3 odebrání
  1. 1 0
      lib/neoinfra.rb
  2. 4 3
      lib/neoinfra/nodes.rb

+ 1 - 0
lib/neoinfra.rb

@@ -15,4 +15,5 @@ module NeoInfra
   require 'neoinfra/accounts'
   require 'neoinfra/aws'
   require 'neoinfra/vpcs'
+  require 'neoinfra/nodes'
 end

+ 4 - 3
lib/neoinfra/nodes.rb

@@ -1,10 +1,11 @@
 # frozen_string_literal: true
 
+require 'neo4j'
+require 'neoinfra'
 require 'nodes'
 require 'accounts'
-require 'fog'
-require 'neo4j'
-require 'neoinfra/aws'
+require 'fog-aws'
+
 
 # NeoInfra Account information
 module NeoInfra