uh-wm 0.0.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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 7fae76224987cc1f74c7a5f18c7b8d06eaee509b
4
+ data.tar.gz: 8f1aab69ba46466bc7e98200eaec588a9c14ca2f
5
+ SHA512:
6
+ metadata.gz: a018d975a3061f73d6412dd06d4d980b1259a9ddc02ba9c95a4a08e86fb8a89d07fdc21931b1eb213e28923964cc000e7de5853e7a501e8a5b4f805787763398
7
+ data.tar.gz: 344f2278196204a869cdd2943d88b389d257550c297e85bb451d3cf42008a762c114ce11953339b09a693b8d40ab324441fe9585424556dc94b9ad9235d3b5b6
data/.gitignore ADDED
File without changes
data/LICENSE ADDED
@@ -0,0 +1,30 @@
1
+ Copyright 2015 Thibault Jouan. All rights reserved.
2
+
3
+ Redistribution and use in source and binary forms, with or without
4
+ modification, are permitted provided that the following conditions are
5
+ met:
6
+
7
+ * Redistributions of source code must retain the above copyright
8
+ notice, this list of conditions and the following disclaimer.
9
+
10
+ * Redistributions in binary form must reproduce the above copyright
11
+ notice, this list of conditions and the following disclaimer in
12
+ the documentation and/or other materials provided with the
13
+ distribution.
14
+
15
+ * Neither the name of the software nor the names of its contributors
16
+ may be used to endorse or promote products derived from this
17
+ software without specific prior written permission.
18
+
19
+
20
+ THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS "AS IS" AND
21
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23
+ PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS
24
+ BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25
+ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
27
+ BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
28
+ WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
29
+ OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
30
+ IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,5 @@
1
+ module Uh
2
+ module WM
3
+ VERSION = '0.0.1'
4
+ end
5
+ end
data/uh-wm.gemspec ADDED
@@ -0,0 +1,16 @@
1
+ require File.expand_path('../lib/uh/wm/version', __FILE__)
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = 'uh-wm'
5
+ s.version = Uh::WM::VERSION.dup
6
+ s.summary = 'uh window manager'
7
+ s.description = s.name
8
+ s.homepage = 'https://rubygems.org/gems/uh-wm'
9
+
10
+ s.authors = 'Thibault Jouan'
11
+ s.email = 'tj@a13.fr'
12
+
13
+ s.files = `git ls-files`.split $/
14
+ s.test_files = s.files.grep /\A(spec|features)\//
15
+ s.executables = s.files.grep(/\Abin\//) { |f| File.basename(f) }
16
+ end
metadata ADDED
@@ -0,0 +1,46 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: uh-wm
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Thibault Jouan
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-04-06 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: uh-wm
14
+ email: tj@a13.fr
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - ".gitignore"
20
+ - LICENSE
21
+ - lib/uh/wm/version.rb
22
+ - uh-wm.gemspec
23
+ homepage: https://rubygems.org/gems/uh-wm
24
+ licenses: []
25
+ metadata: {}
26
+ post_install_message:
27
+ rdoc_options: []
28
+ require_paths:
29
+ - lib
30
+ required_ruby_version: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - ">="
33
+ - !ruby/object:Gem::Version
34
+ version: '0'
35
+ required_rubygems_version: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
40
+ requirements: []
41
+ rubyforge_project:
42
+ rubygems_version: 2.4.5
43
+ signing_key:
44
+ specification_version: 4
45
+ summary: uh window manager
46
+ test_files: []