databasedotcom_console 0.0.5 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/bin/dbdc +2 -2
- data/lib/databasedotcom_console/version.rb +1 -1
- metadata +1 -1
data/bin/dbdc
CHANGED
|
@@ -33,8 +33,8 @@ else
|
|
|
33
33
|
|
|
34
34
|
puts "\n\nWelcome to the Databasedotcom Ruby Console. \nYou you can access your databasedotcom client via the variable @dbdc"
|
|
35
35
|
puts "\nExamples: \n"
|
|
36
|
-
puts "dbdc.list_sobjects"
|
|
37
|
-
puts "dbdc.materialze \'Account\'"
|
|
36
|
+
puts "@dbdc.list_sobjects"
|
|
37
|
+
puts "@dbdc.materialze \'Account\'"
|
|
38
38
|
puts "john = Account.find_by_LastName \'Yamaguchi\'"
|
|
39
39
|
puts "account_list = Account.query \'FirstName != null AND My_Custom_Field__C > 7 LIMIT 10\' \n"
|
|
40
40
|
puts "\n\n"
|