From e974c655c474fe0663618cd3c8b95b4173f7c8bd Mon Sep 17 00:00:00 2001 From: promostarr Date: Sun, 16 Apr 2017 15:41:19 +0100 Subject: [PATCH] Added core to handle getting users --- .idea/Janitor.iml | 10 ++ .idea/inspectionProfiles/Project_Default.xml | 6 + .idea/misc.xml | 4 + .idea/modules.xml | 8 + .idea/vcs.xml | 6 + .idea/workspace.xml | 177 +++++++++++++++++++ core.rb | 6 +- 7 files changed, 216 insertions(+), 1 deletion(-) create mode 100644 .idea/Janitor.iml create mode 100644 .idea/inspectionProfiles/Project_Default.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 .idea/workspace.xml diff --git a/.idea/Janitor.iml b/.idea/Janitor.iml new file mode 100644 index 0000000..d723844 --- /dev/null +++ b/.idea/Janitor.iml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..b0db9b0 --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..9d57d9d --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..668908d --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 0000000..0928624 --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,177 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + DEFINITION_ORDER + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1492353576138 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/core.rb b/core.rb index 179fef6..6fa9405 100644 --- a/core.rb +++ b/core.rb @@ -22,5 +22,9 @@ OptionParser.new do |parser| end parser.on("--stop") do jan.gsay('!stop') - end + end + parser.on("--user_list") do + jan.get_clients() + end + end.parse!