sirius-client-win32 1.1.1

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.
@@ -0,0 +1,24 @@
1
+ require 'rubygems'
2
+ require 'rubygems/package_task'
3
+ require 'cucumber'
4
+ require 'cucumber/rake/task'
5
+
6
+ spec = Gem::Specification.new do |s|
7
+ s.platform = Gem::Platform::RUBY
8
+ s.summary = "Sirius Ruby client"
9
+ s.name = "sirius-client-win32"
10
+ s.version = File.read('VERSION').chomp
11
+ s.requirements = "none"
12
+ s.files = FileList["lib/**/*.rb", "Rakefile"]
13
+ s.homepage = "http://github.com/mkolisnyk/Sirius"
14
+ s.description = "The client for Sirius system"
15
+ s.authors="Myk Kolisnyk"
16
+ s.email="kolesnik.nickolay@gmail.com"
17
+ end
18
+
19
+ Gem::PackageTask.new(spec) do |pkg|
20
+ end
21
+
22
+ Cucumber::Rake::Task.new(:test) do |t|
23
+ t.cucumber_opts = "tests/features --format pretty --guess"
24
+ end
@@ -0,0 +1,8 @@
1
+ module Sirius
2
+ module Client
3
+ module Win32
4
+ class Win32
5
+ end
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,11 @@
1
+ module Sirius
2
+ module Client
3
+ module Win32
4
+ module Core
5
+ class Core
6
+
7
+ end
8
+ end
9
+ end
10
+ end
11
+ end
metadata ADDED
@@ -0,0 +1,48 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: sirius-client-win32
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.1.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Myk Kolisnyk
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-01-18 00:00:00.000000000 Z
13
+ dependencies: []
14
+ description: The client for Sirius system
15
+ email: kolesnik.nickolay@gmail.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - lib/sirius/win32/core.rb
21
+ - lib/sirius/win32.rb
22
+ - Rakefile
23
+ homepage: http://github.com/mkolisnyk/Sirius
24
+ licenses: []
25
+ post_install_message:
26
+ rdoc_options: []
27
+ require_paths:
28
+ - lib
29
+ required_ruby_version: !ruby/object:Gem::Requirement
30
+ none: false
31
+ requirements:
32
+ - - ! '>='
33
+ - !ruby/object:Gem::Version
34
+ version: '0'
35
+ required_rubygems_version: !ruby/object:Gem::Requirement
36
+ none: false
37
+ requirements:
38
+ - - ! '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ requirements:
42
+ - none
43
+ rubyforge_project:
44
+ rubygems_version: 1.8.24
45
+ signing_key:
46
+ specification_version: 3
47
+ summary: Sirius Ruby client
48
+ test_files: []