diff --git a/spec/factories/mdm/exported_web_vulns.rb b/spec/factories/mdm/exported_web_vulns.rb index 06ea041459..0e97fa6b6e 100644 --- a/spec/factories/mdm/exported_web_vulns.rb +++ b/spec/factories/mdm/exported_web_vulns.rb @@ -11,4 +11,4 @@ FactoryGirl.define do sequence :mdm_web_vuln_description do |n| "Mdm::WebVuln#description #{n}" end -end \ No newline at end of file +end diff --git a/spec/factories/mdm/module_details.rb b/spec/factories/mdm/module_details.rb index 4981482cca..c67f200128 100644 --- a/spec/factories/mdm/module_details.rb +++ b/spec/factories/mdm/module_details.rb @@ -6,4 +6,4 @@ FactoryGirl.modify do } end end -end \ No newline at end of file +end diff --git a/spec/lib/metasploit/framework/afp/client_spec.rb b/spec/lib/metasploit/framework/afp/client_spec.rb index e69de29bb2..8b13789179 100644 --- a/spec/lib/metasploit/framework/afp/client_spec.rb +++ b/spec/lib/metasploit/framework/afp/client_spec.rb @@ -0,0 +1 @@ + diff --git a/spec/lib/metasploit/framework/jtr/cracker_spec.rb b/spec/lib/metasploit/framework/jtr/cracker_spec.rb index 8ec3ea8bb0..13d16c8c63 100644 --- a/spec/lib/metasploit/framework/jtr/cracker_spec.rb +++ b/spec/lib/metasploit/framework/jtr/cracker_spec.rb @@ -245,4 +245,4 @@ describe Metasploit::Framework::JtR::Cracker do end end end -end \ No newline at end of file +end diff --git a/spec/lib/metasploit/framework/jtr/invalid_wordlist_spec.rb b/spec/lib/metasploit/framework/jtr/invalid_wordlist_spec.rb index 9061e2c78a..192ae127f8 100644 --- a/spec/lib/metasploit/framework/jtr/invalid_wordlist_spec.rb +++ b/spec/lib/metasploit/framework/jtr/invalid_wordlist_spec.rb @@ -35,4 +35,4 @@ describe Metasploit::Framework::JtR::InvalidWordlist do end end -end \ No newline at end of file +end diff --git a/spec/lib/metasploit/framework/jtr/wordlist_spec.rb b/spec/lib/metasploit/framework/jtr/wordlist_spec.rb index 7067bcf683..ba0839664b 100644 --- a/spec/lib/metasploit/framework/jtr/wordlist_spec.rb +++ b/spec/lib/metasploit/framework/jtr/wordlist_spec.rb @@ -135,4 +135,4 @@ describe Metasploit::Framework::JtR::Wordlist do end end -end \ No newline at end of file +end diff --git a/spec/lib/metasploit/framework/login_scanner/db2_spec.rb b/spec/lib/metasploit/framework/login_scanner/db2_spec.rb index 531d788a2d..b577ab4f5c 100644 --- a/spec/lib/metasploit/framework/login_scanner/db2_spec.rb +++ b/spec/lib/metasploit/framework/login_scanner/db2_spec.rb @@ -41,4 +41,4 @@ describe Metasploit::Framework::LoginScanner::DB2 do end end -end \ No newline at end of file +end diff --git a/spec/lib/metasploit/framework/login_scanner/ftp_spec.rb b/spec/lib/metasploit/framework/login_scanner/ftp_spec.rb index 326667e641..83de8cc1cf 100644 --- a/spec/lib/metasploit/framework/login_scanner/ftp_spec.rb +++ b/spec/lib/metasploit/framework/login_scanner/ftp_spec.rb @@ -131,4 +131,4 @@ describe Metasploit::Framework::LoginScanner::FTP do end end -end \ No newline at end of file +end diff --git a/spec/lib/metasploit/framework/login_scanner/mssql_spec.rb b/spec/lib/metasploit/framework/login_scanner/mssql_spec.rb index f419105c05..d2cbe410be 100644 --- a/spec/lib/metasploit/framework/login_scanner/mssql_spec.rb +++ b/spec/lib/metasploit/framework/login_scanner/mssql_spec.rb @@ -90,4 +90,4 @@ describe Metasploit::Framework::LoginScanner::MSSQL do end end -end \ No newline at end of file +end diff --git a/spec/lib/metasploit/framework/login_scanner/mysql_spec.rb b/spec/lib/metasploit/framework/login_scanner/mysql_spec.rb index 6bc5a3df61..dcfeeb88ad 100644 --- a/spec/lib/metasploit/framework/login_scanner/mysql_spec.rb +++ b/spec/lib/metasploit/framework/login_scanner/mysql_spec.rb @@ -105,4 +105,4 @@ describe Metasploit::Framework::LoginScanner::MySQL do end end -end \ No newline at end of file +end diff --git a/spec/lib/metasploit/framework/login_scanner/pop3_spec.rb b/spec/lib/metasploit/framework/login_scanner/pop3_spec.rb index ccefb2b97e..e77fad96b5 100644 --- a/spec/lib/metasploit/framework/login_scanner/pop3_spec.rb +++ b/spec/lib/metasploit/framework/login_scanner/pop3_spec.rb @@ -8,7 +8,7 @@ describe Metasploit::Framework::LoginScanner::POP3 do it_behaves_like 'Metasploit::Framework::LoginScanner::RexSocket' context "#attempt_login" do - + let(:pub_blank) do Metasploit::Framework::Credential.new( paired: true, @@ -41,10 +41,10 @@ describe Metasploit::Framework::LoginScanner::POP3 do expect(result.status).to eq(Metasploit::Model::Login::Status::UNABLE_TO_CONNECT) end end - + context "Open Connection" do let(:sock) {double('socket')} - + before(:each) do sock.stub(:shutdown) sock.stub(:close) @@ -53,30 +53,30 @@ describe Metasploit::Framework::LoginScanner::POP3 do scanner.stub(:sock).and_return(sock) scanner.should_receive(:select).with([sock],nil,nil,0.4) end - + it "Server returns +OK" do expect(sock).to receive(:get_once).exactly(3).times.and_return("+OK") expect(sock).to receive(:put).with("USER public\r\n").once.ordered expect(sock).to receive(:put).with("PASS \r\n").once.ordered - + result = scanner.attempt_login(pub_blank) expect(result).to be_kind_of(Metasploit::Framework::LoginScanner::Result) expect(result.status).to eq(Metasploit::Model::Login::Status::SUCCESSFUL) - + end - + it "Server Returns Something Else" do sock.stub(:get_once).and_return("+ERROR") - + result = scanner.attempt_login(pub_blank) expect(result).to be_kind_of(Metasploit::Framework::LoginScanner::Result) expect(result.status).to eq(Metasploit::Model::Login::Status::INCORRECT) expect(result.proof).to eq("+ERROR") - + end end - + end end diff --git a/spec/lib/metasploit/framework/login_scanner/postgres_spec.rb b/spec/lib/metasploit/framework/login_scanner/postgres_spec.rb index 029f07c642..074f098fe3 100644 --- a/spec/lib/metasploit/framework/login_scanner/postgres_spec.rb +++ b/spec/lib/metasploit/framework/login_scanner/postgres_spec.rb @@ -72,4 +72,4 @@ describe Metasploit::Framework::LoginScanner::Postgres do end end -end \ No newline at end of file +end diff --git a/spec/lib/metasploit/framework/login_scanner/result_spec.rb b/spec/lib/metasploit/framework/login_scanner/result_spec.rb index 6f67fc5a39..62103d47e4 100644 --- a/spec/lib/metasploit/framework/login_scanner/result_spec.rb +++ b/spec/lib/metasploit/framework/login_scanner/result_spec.rb @@ -42,4 +42,4 @@ describe Metasploit::Framework::LoginScanner::Result do end -end \ No newline at end of file +end diff --git a/spec/lib/metasploit/framework/login_scanner/snmp_spec.rb b/spec/lib/metasploit/framework/login_scanner/snmp_spec.rb index 95c4d85cd8..0dc0c8851c 100644 --- a/spec/lib/metasploit/framework/login_scanner/snmp_spec.rb +++ b/spec/lib/metasploit/framework/login_scanner/snmp_spec.rb @@ -53,4 +53,4 @@ describe Metasploit::Framework::LoginScanner::SNMP do end -end \ No newline at end of file +end diff --git a/spec/lib/metasploit/framework/login_scanner/telnet_spec.rb b/spec/lib/metasploit/framework/login_scanner/telnet_spec.rb index fcf80b69ca..70e8c2cf28 100644 --- a/spec/lib/metasploit/framework/login_scanner/telnet_spec.rb +++ b/spec/lib/metasploit/framework/login_scanner/telnet_spec.rb @@ -75,4 +75,4 @@ describe Metasploit::Framework::LoginScanner::Telnet do end end -end \ No newline at end of file +end diff --git a/spec/lib/metasploit/framework/login_scanner/vnc_spec.rb b/spec/lib/metasploit/framework/login_scanner/vnc_spec.rb index ce265dbddd..f2b6b62c22 100644 --- a/spec/lib/metasploit/framework/login_scanner/vnc_spec.rb +++ b/spec/lib/metasploit/framework/login_scanner/vnc_spec.rb @@ -81,4 +81,4 @@ describe Metasploit::Framework::LoginScanner::VNC do end -end \ No newline at end of file +end diff --git a/spec/lib/msf/base/simple/framework_spec.rb b/spec/lib/msf/base/simple/framework_spec.rb index 7600fd7dad..d2ca4b86f4 100644 --- a/spec/lib/msf/base/simple/framework_spec.rb +++ b/spec/lib/msf/base/simple/framework_spec.rb @@ -8,4 +8,4 @@ describe Msf::Simple::Framework do end it_should_behave_like 'Msf::Simple::Framework::ModulePaths' -end \ No newline at end of file +end diff --git a/spec/lib/msf/core/exploit/remote/browser_exploit_server_spec.rb b/spec/lib/msf/core/exploit/remote/browser_exploit_server_spec.rb index c9708dc5eb..aba2da467b 100644 --- a/spec/lib/msf/core/exploit/remote/browser_exploit_server_spec.rb +++ b/spec/lib/msf/core/exploit/remote/browser_exploit_server_spec.rb @@ -292,4 +292,4 @@ describe Msf::Exploit::Remote::BrowserExploitServer do end end -end \ No newline at end of file +end diff --git a/spec/lib/msf/core/handler/reverse_http/uri_checksum_spec.rb b/spec/lib/msf/core/handler/reverse_http/uri_checksum_spec.rb index a6d8414b78..51d83619a3 100644 --- a/spec/lib/msf/core/handler/reverse_http/uri_checksum_spec.rb +++ b/spec/lib/msf/core/handler/reverse_http/uri_checksum_spec.rb @@ -86,4 +86,4 @@ describe Msf::Handler::ReverseHttp::UriChecksum do end end -end \ No newline at end of file +end diff --git a/spec/lib/msf/core/options/opt_enum_spec.rb b/spec/lib/msf/core/options/opt_enum_spec.rb index 247b58d7ea..5c882c98b4 100644 --- a/spec/lib/msf/core/options/opt_enum_spec.rb +++ b/spec/lib/msf/core/options/opt_enum_spec.rb @@ -20,4 +20,4 @@ describe Msf::OptEnum do subject.valid?('Bar').should == true end end -end \ No newline at end of file +end diff --git a/spec/lib/msf/core/options/opt_raw_spec.rb b/spec/lib/msf/core/options/opt_raw_spec.rb index 68b2cceb8c..f2a6bb68e4 100644 --- a/spec/lib/msf/core/options/opt_raw_spec.rb +++ b/spec/lib/msf/core/options/opt_raw_spec.rb @@ -12,4 +12,4 @@ describe Msf::OptRaw do invalid_values = [] it_behaves_like "an option", valid_values, invalid_values, 'raw' -end \ No newline at end of file +end diff --git a/spec/lib/msf/core/options/opt_regexp_spec.rb b/spec/lib/msf/core/options/opt_regexp_spec.rb index 682f7c9330..0ff0e623cc 100644 --- a/spec/lib/msf/core/options/opt_regexp_spec.rb +++ b/spec/lib/msf/core/options/opt_regexp_spec.rb @@ -14,4 +14,4 @@ describe Msf::OptRegexp do ] it_behaves_like "an option", valid_values, invalid_values, 'regexp' -end \ No newline at end of file +end diff --git a/spec/lib/msf/core/payload_generator_spec.rb b/spec/lib/msf/core/payload_generator_spec.rb index 09ff3b5be4..ba53ff2cae 100644 --- a/spec/lib/msf/core/payload_generator_spec.rb +++ b/spec/lib/msf/core/payload_generator_spec.rb @@ -530,4 +530,4 @@ describe Msf::PayloadGenerator do end end -end \ No newline at end of file +end diff --git a/spec/lib/msf/db_manager/export_spec.rb b/spec/lib/msf/db_manager/export_spec.rb index d034343336..e28b76212b 100644 --- a/spec/lib/msf/db_manager/export_spec.rb +++ b/spec/lib/msf/db_manager/export_spec.rb @@ -105,4 +105,4 @@ describe Msf::DBManager::Export do end end end -end \ No newline at end of file +end diff --git a/spec/lib/msf/db_manager_spec.rb b/spec/lib/msf/db_manager_spec.rb index 5be889bd50..f97dd5d7d4 100644 --- a/spec/lib/msf/db_manager_spec.rb +++ b/spec/lib/msf/db_manager_spec.rb @@ -1775,7 +1775,7 @@ describe Msf::DBManager do # @todo determine how to load a single payload to test payload type outside of msfconsole - it_should_behave_like 'Msf::DBManager#update_module_details with module', + it_should_behave_like 'Msf::DBManager#update_module_details with module', :reference_name => 'windows/escalate/screen_unlock', :type => 'post' end diff --git a/spec/lib/rex/exploitation/js/detect_spec.rb b/spec/lib/rex/exploitation/js/detect_spec.rb index f473f73fbd..87c7c2a59f 100644 --- a/spec/lib/rex/exploitation/js/detect_spec.rb +++ b/spec/lib/rex/exploitation/js/detect_spec.rb @@ -27,4 +27,4 @@ describe Rex::Exploitation::Js::Detect do end -end \ No newline at end of file +end diff --git a/spec/lib/rex/exploitation/js/memory_spec.rb b/spec/lib/rex/exploitation/js/memory_spec.rb index 88dc94f501..b016bce066 100644 --- a/spec/lib/rex/exploitation/js/memory_spec.rb +++ b/spec/lib/rex/exploitation/js/memory_spec.rb @@ -27,4 +27,4 @@ describe Rex::Exploitation::Js::Memory do end -end \ No newline at end of file +end diff --git a/spec/lib/rex/exploitation/js/utils_spec.rb b/spec/lib/rex/exploitation/js/utils_spec.rb index f755d99ca2..3dcf60e7ac 100644 --- a/spec/lib/rex/exploitation/js/utils_spec.rb +++ b/spec/lib/rex/exploitation/js/utils_spec.rb @@ -13,4 +13,4 @@ describe Rex::Exploitation::Js::Utils do end -end \ No newline at end of file +end diff --git a/spec/lib/rex/exploitation/powershell/obfu_spec.rb b/spec/lib/rex/exploitation/powershell/obfu_spec.rb index 9c4680291d..9409f3579e 100644 --- a/spec/lib/rex/exploitation/powershell/obfu_spec.rb +++ b/spec/lib/rex/exploitation/powershell/obfu_spec.rb @@ -27,7 +27,7 @@ lots \t of whitespace # single_line_comment1 # single_line_comment2 # - # single_line_comment3 + # single_line_comment3 if (-not ($NewLogonAccountDomain -cmatch \"NT\\sAUTHORITY\" -or $NewLogonAccountDomain -cmatch \"Window\\sManager\")) { $Key = $AccountName + $AccountDomain + $NewLogonAccountName + $NewLogonAccountDomain + $LogonType + $WorkstationName + $SourceNetworkAddress + $SourcePort @@ -84,7 +84,7 @@ lots \t of whitespace # single_line_comment1 # single_line_comment2 # - # single_line_comment3 + # single_line_comment3 $some_literal = @\" using System; using System.Runtime.InteropServices; diff --git a/spec/lib/rex/exploitation/ropdb_spec.rb b/spec/lib/rex/exploitation/ropdb_spec.rb index 66f4afd97a..100652fa96 100644 --- a/spec/lib/rex/exploitation/ropdb_spec.rb +++ b/spec/lib/rex/exploitation/ropdb_spec.rb @@ -82,4 +82,4 @@ describe Rex::Exploitation::RopDb do end end -end \ No newline at end of file +end diff --git a/spec/lib/rex/parser/group_policy_preferences_spec.rb b/spec/lib/rex/parser/group_policy_preferences_spec.rb index 204cea379c..a2e61578a3 100644 --- a/spec/lib/rex/parser/group_policy_preferences_spec.rb +++ b/spec/lib/rex/parser/group_policy_preferences_spec.rb @@ -33,43 +33,43 @@ xml_serv = ' xml_ms = ' - - - - - - @@ -89,12 +89,12 @@ cpassword_bad = "blah" describe Rex::Parser::GPP do GPP = Rex::Parser::GPP - + ## # Decrypt ## it "Decrypt returns Local*P4ssword! for normal cpassword" do - result = GPP.decrypt(cpassword_normal) + result = GPP.decrypt(cpassword_normal) result.should eq("Local*P4ssword!") end @@ -102,7 +102,7 @@ describe Rex::Parser::GPP do result = GPP.decrypt(cpassword_bad) result.should eq("") end - + it "Decrypt returns blank for nil cpassword" do result = GPP.decrypt(nil) result.should eq("") diff --git a/spec/lib/rex/parser/unattend_spec.rb b/spec/lib/rex/parser/unattend_spec.rb index 980c469ef5..8e1de52e94 100644 --- a/spec/lib/rex/parser/unattend_spec.rb +++ b/spec/lib/rex/parser/unattend_spec.rb @@ -16,7 +16,7 @@ comb = REXML::Document.new(' active) end -end \ No newline at end of file +end diff --git a/spec/support/shared/examples/credential/core/to_credential.rb b/spec/support/shared/examples/credential/core/to_credential.rb index 17c56c7c6f..72cf69a76a 100644 --- a/spec/support/shared/examples/credential/core/to_credential.rb +++ b/spec/support/shared/examples/credential/core/to_credential.rb @@ -3,19 +3,19 @@ require 'metasploit/framework/credential' shared_examples_for 'Metasploit::Credential::Core::ToCredential' do context "methods" do context ".to_credential" do - + subject(:crednetial_core) do FactoryGirl.create(:metasploit_credential_core) end - + it { should respond_to :to_credential } - + it "should return a Metasploit::Framework::Credential" do expect( crednetial_core.to_credential ).to be_a Metasploit::Framework::Credential end - + it "should set the parent to the credential object" do expect( crednetial_core.to_credential.parent @@ -23,4 +23,4 @@ shared_examples_for 'Metasploit::Credential::Core::ToCredential' do end end end -end \ No newline at end of file +end diff --git a/spec/support/shared/examples/msf/db_manager/export/extract_module_detail_info_module_detail_child.rb b/spec/support/shared/examples/msf/db_manager/export/extract_module_detail_info_module_detail_child.rb index 05e3f09697..e207827c6d 100644 --- a/spec/support/shared/examples/msf/db_manager/export/extract_module_detail_info_module_detail_child.rb +++ b/spec/support/shared/examples/msf/db_manager/export/extract_module_detail_info_module_detail_child.rb @@ -20,4 +20,4 @@ shared_examples_for 'Msf::DBManager::Export#extract_module_detail_info module_de child_node.content.should == attribute.to_s end end -end \ No newline at end of file +end diff --git a/spec/support/shared/examples/msf/db_manager/migration.rb b/spec/support/shared/examples/msf/db_manager/migration.rb index bea5e24477..a9cf24bbca 100644 --- a/spec/support/shared/examples/msf/db_manager/migration.rb +++ b/spec/support/shared/examples/msf/db_manager/migration.rb @@ -134,4 +134,4 @@ shared_examples_for 'Msf::DBManager::Migration' do reset_column_information end end -end \ No newline at end of file +end diff --git a/spec/support/shared/examples/msf/db_manager/search_modules/mdm_module_platform_name_or_mdm_module_target_name_keyword.rb b/spec/support/shared/examples/msf/db_manager/search_modules/mdm_module_platform_name_or_mdm_module_target_name_keyword.rb index 4f81c62851..ee7aa479bb 100644 --- a/spec/support/shared/examples/msf/db_manager/search_modules/mdm_module_platform_name_or_mdm_module_target_name_keyword.rb +++ b/spec/support/shared/examples/msf/db_manager/search_modules/mdm_module_platform_name_or_mdm_module_target_name_keyword.rb @@ -31,7 +31,7 @@ shared_examples_for 'Msf::DBManager#search_modules Mdm::Module::Platform#name or context 'with Mdm::Module::Target#name' do let(:name) do - # use inspect to quote spaces in string + # use inspect to quote spaces in string module_target.name.inspect end @@ -46,4 +46,4 @@ shared_examples_for 'Msf::DBManager#search_modules Mdm::Module::Platform#name or end end end -end \ No newline at end of file +end diff --git a/spec/support/shared/examples/msf/db_manager/search_modules/mdm_module_ref_name_keyword.rb b/spec/support/shared/examples/msf/db_manager/search_modules/mdm_module_ref_name_keyword.rb index 26973af12b..30d7d943fd 100644 --- a/spec/support/shared/examples/msf/db_manager/search_modules/mdm_module_ref_name_keyword.rb +++ b/spec/support/shared/examples/msf/db_manager/search_modules/mdm_module_ref_name_keyword.rb @@ -41,4 +41,4 @@ shared_examples_for 'Msf::DBManager#search_modules Mdm::Module::Ref#name keyword end end end -end \ No newline at end of file +end diff --git a/spec/support/shared/examples/msf/db_manager/update_all_module_details_refresh.rb b/spec/support/shared/examples/msf/db_manager/update_all_module_details_refresh.rb index 8e682b0298..d44bef42a9 100644 --- a/spec/support/shared/examples/msf/db_manager/update_all_module_details_refresh.rb +++ b/spec/support/shared/examples/msf/db_manager/update_all_module_details_refresh.rb @@ -57,4 +57,4 @@ shared_examples_for 'Msf::DBManager#update_all_module_details refresh' do update_all_module_details end end -end \ No newline at end of file +end diff --git a/spec/support/shared/examples/msf/db_manager/update_module_details_with_module_type.rb b/spec/support/shared/examples/msf/db_manager/update_module_details_with_module_type.rb index adc5887f25..54a4f18885 100644 --- a/spec/support/shared/examples/msf/db_manager/update_module_details_with_module_type.rb +++ b/spec/support/shared/examples/msf/db_manager/update_module_details_with_module_type.rb @@ -23,4 +23,4 @@ shared_examples_for 'Msf::DBManager#update_module_details with module' do |optio }.to_not raise_error end end -end \ No newline at end of file +end diff --git a/spec/support/shared/examples/msf/module_manager/cache.rb b/spec/support/shared/examples/msf/module_manager/cache.rb index 985793a83b..fb2d1c4f38 100644 --- a/spec/support/shared/examples/msf/module_manager/cache.rb +++ b/spec/support/shared/examples/msf/module_manager/cache.rb @@ -456,4 +456,4 @@ shared_examples_for 'Msf::ModuleManager::Cache' do end end end -end \ No newline at end of file +end diff --git a/spec/support/shared/examples/msf/module_manager/loading.rb b/spec/support/shared/examples/msf/module_manager/loading.rb index 711d378ab3..4fd53c25d2 100644 --- a/spec/support/shared/examples/msf/module_manager/loading.rb +++ b/spec/support/shared/examples/msf/module_manager/loading.rb @@ -159,4 +159,4 @@ shared_examples_for 'Msf::ModuleManager::Loading' do on_module_load end end -end \ No newline at end of file +end diff --git a/spec/support/shared/examples/msf/module_manager/module_paths.rb b/spec/support/shared/examples/msf/module_manager/module_paths.rb index 992fc517c9..72dc8b93d4 100644 --- a/spec/support/shared/examples/msf/module_manager/module_paths.rb +++ b/spec/support/shared/examples/msf/module_manager/module_paths.rb @@ -74,4 +74,4 @@ shared_examples_for 'Msf::ModuleManager::ModulePaths' do end end end -end \ No newline at end of file +end diff --git a/spec/support/shared/examples/msf/simple/framework/module_paths.rb b/spec/support/shared/examples/msf/simple/framework/module_paths.rb index a202dfc99e..134e28ad8b 100644 --- a/spec/support/shared/examples/msf/simple/framework/module_paths.rb +++ b/spec/support/shared/examples/msf/simple/framework/module_paths.rb @@ -92,4 +92,4 @@ shared_examples_for 'Msf::Simple::Framework::ModulePaths' do end end end -end \ No newline at end of file +end diff --git a/spec/tools/cpassword_decrypt_spec.rb b/spec/tools/cpassword_decrypt_spec.rb index addf839222..ee47300ebb 100644 --- a/spec/tools/cpassword_decrypt_spec.rb +++ b/spec/tools/cpassword_decrypt_spec.rb @@ -28,4 +28,4 @@ describe CPassword do end end end -end \ No newline at end of file +end