Skip to content

Commit

Permalink
erased test password from code :P
Browse files Browse the repository at this point in the history
  • Loading branch information
Eduardo Maçan committed Sep 28, 2012
1 parent 91a60f3 commit c463b37
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions csv2tasks
Expand Up @@ -2,6 +2,9 @@
require 'csv'
require 'rally_rest_api'

rally_user='your@ema.il'
rally_pass='y0urp4ss'

if ARGV[0]
csv_file = ARGV[0]
else
Expand All @@ -10,8 +13,8 @@ else
end


rally = RallyRestAPI.new(:username => "eduardo.macan@abril.com.br",
:password => "teste123")
rally = RallyRestAPI.new(:username => rally_user,
:password => rally_pass)

user_story=""
CSV.foreach(csv_file) do |row|
Expand Down

0 comments on commit c463b37

Please sign in to comment.