sirius-client 1.1.36 → 1.2.54

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.
Files changed (4) hide show
  1. data/README.rdoc +42 -0
  2. data/Rakefile +6 -2
  3. data/lib/sirius.rb +1 -5
  4. metadata +4 -3
@@ -0,0 +1,42 @@
1
+ = Sirius Ruby Client Overview
2
+
3
+ This is the client library for Sirius test automation platform for Ruby programming language.
4
+
5
+ = Installation
6
+
7
+ Ruby client library is delivered as GEM package and can be installed using the following command:
8
+
9
+
10
+ gem install sirius-client
11
+
12
+
13
+ After that the library can be accessible and can be included using
14
+
15
+
16
+ reguire 'sirius.rb'
17
+
18
+
19
+ = Sample usage
20
+
21
+ Once you have an access to Sirius Client classes you can use them as an ordinary code.
22
+ Typically you just have to initialize the connection to Sirius Server. It's done while creating new
23
+ instance of any library object. For example:
24
+
25
+ @file_client = Sirius::Client::Core::System::FileOperations.new
26
+
27
+ If you need to connect to specific instance of Sirius Server you can specify which host and port it listens to:
28
+
29
+ @file_client = Sirius::Client::Core::System::FileOperations.new "my_host","8080"
30
+
31
+ That instruction will connect to the server instance listening the http://my_host:8080 host.
32
+
33
+ By default the connection is set up for the following URL: http://localhost:21212
34
+
35
+ = Authors
36
+
37
+ Myk Kolisnyk ({kolesnik.nickolay@gmail.com}[mailto://kolesnik.nickolay@gmail.com])
38
+
39
+ = Links
40
+
41
+ * {GitHub project}[https://github.com/mkolisnyk/Sirius]
42
+ * {Dedicated blog entries}[http://mkolisnyk.blogspot.co.uk/search/label/Sirius]
data/Rakefile CHANGED
@@ -9,9 +9,13 @@ spec = Gem::Specification.new do |s|
9
9
  s.name = "sirius-client"
10
10
  s.version = File.read('VERSION').chomp
11
11
  s.requirements = "none"
12
- s.files = FileList["lib/**/*.rb", "Rakefile"]
12
+ s.files = FileList["lib/**/*.rb", "Rakefile","README.rdoc"]
13
13
  s.homepage = "http://github.com/mkolisnyk/Sirius"
14
- s.description = "The client for Sirius system"
14
+
15
+ s.description = '''
16
+ The core ruby client part for Sirius system.
17
+ '''
18
+
15
19
  s.authors="Myk Kolisnyk"
16
20
  s.email="kolesnik.nickolay@gmail.com"
17
21
  s.add_dependency('sirius-client-core', '>= 0.0')
@@ -1,9 +1,5 @@
1
- #require 'sirius/core/system/dir.rb'
2
- #require 'sirius/core/system/file.rb'
3
- #require 'sirius/core/system/sys.rb'
4
-
5
1
  module Sirius
6
2
  module Client
7
3
 
8
4
  end
9
- end
5
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sirius-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.36
4
+ version: 1.2.54
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-01-18 00:00:00.000000000 Z
12
+ date: 2013-02-26 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: sirius-client-core
@@ -43,7 +43,7 @@ dependencies:
43
43
  - - ! '>='
44
44
  - !ruby/object:Gem::Version
45
45
  version: '0.0'
46
- description: The client for Sirius system
46
+ description: ! "\n The core ruby client part for Sirius system. \n "
47
47
  email: kolesnik.nickolay@gmail.com
48
48
  executables: []
49
49
  extensions: []
@@ -51,6 +51,7 @@ extra_rdoc_files: []
51
51
  files:
52
52
  - lib/sirius.rb
53
53
  - Rakefile
54
+ - README.rdoc
54
55
  homepage: http://github.com/mkolisnyk/Sirius
55
56
  licenses: []
56
57
  post_install_message: