clickclient 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,9 @@
1
+ module Clickclient #:nodoc:
2
+ module VERSION #:nodoc:
3
+ MAJOR = 0
4
+ MINOR = 0
5
+ TINY = 1
6
+
7
+ STRING = [MAJOR, MINOR, TINY].join('.')
8
+ end
9
+ end
@@ -0,0 +1,4 @@
1
+ $:.unshift File.dirname(__FILE__)
2
+
3
+ require 'clickclient/common'
4
+ require 'clickclient/fx'
data/test/alltests.rb ADDED
@@ -0,0 +1,6 @@
1
+ require File.dirname(__FILE__) + '/test_helper.rb'
2
+
3
+ #以下のコマンドで実行します。
4
+ # ruby alltests.rb <CLICK証券のユーザー名> <CLICK証券のパスワード>
5
+ require "clicklient_basetest"
6
+ require "clicklient_fxtest"