···7788namespace :db do
99 task :load_config do
1010- require "./lib/bitwarden_ruby.rb"
1010+ require "./lib/rubywarden.rb"
1111 end
1212end
+1-1
tools/1password_import.rb
···2525# bitwarden-ruby installation after creating a new account.
2626#
27272828-require File.realpath(File.dirname(__FILE__) + "/../lib/bitwarden_ruby.rb")
2828+require File.realpath(File.dirname(__FILE__) + "/../lib/rubywarden.rb")
2929require "getoptlong"
3030require 'uri'
3131
+1-1
tools/activate_totp.rb
···2222# TOTP secret is saved on the user account.
2323#
24242525-require File.realpath(File.dirname(__FILE__) + "/../lib/bitwarden_ruby.rb")
2525+require File.realpath(File.dirname(__FILE__) + "/../lib/rubywarden.rb")
2626require "getoptlong"
2727require "rotp"
2828require "rqrcode"
+1-1
tools/bitwarden_import.rb
···2424# bitwarden-ruby installation after creating a new account.
2525#
26262727-require File.realpath(File.dirname(__FILE__) + '/../lib/bitwarden_ruby.rb')
2727+require File.realpath(File.dirname(__FILE__) + '/../lib/rubywarden.rb')
28282929require 'csv'
3030require 'getoptlong'
+1-1
tools/change_master_password.rb
···1515# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1616#
17171818-require File.realpath(File.dirname(__FILE__) + "/../lib/bitwarden_ruby.rb")
1818+require File.realpath(File.dirname(__FILE__) + "/../lib/rubywarden.rb")
1919require "getoptlong"
20202121def usage
+2-2
tools/keepass_import.rb
···2626# bitwarden-ruby installation after creating a new account.
2727#
28282929-require File.realpath(File.dirname(__FILE__) + "/../lib/bitwarden_ruby.rb")
2929+require File.realpath(File.dirname(__FILE__) + "/../lib/rubywarden.rb")
3030require "getoptlong"
3131require "rubeepass"
3232···141141 cdata['Notes'] = encrypt(entry[1].notes) if entry[1].notes.present?
142142143143 if entry[1].attachments.any?
144144- puts "This entry has an attachment - but it won't be converted as bitwarden_ruby does not support attachments yet."
144144+ puts "This entry has an attachment - but it won't be converted as rubywarden does not support attachments yet."
145145 end
146146147147 c.data = cdata.to_json
+1-1
tools/lastpass_import.rb
···2626# bitwarden-ruby installation after creating a new account.
2727#
28282929-require File.realpath(File.dirname(__FILE__) + "/../lib/bitwarden_ruby.rb")
2929+require File.realpath(File.dirname(__FILE__) + "/../lib/rubywarden.rb")
3030require "getoptlong"
3131require "csv"
3232