rmonitor 1.0.0
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 +7 -0
- data/.rspec +1 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +24 -0
- data/LICENSE +20 -0
- data/README.md +205 -0
- data/bin/rmonitor +112 -0
- data/lib/rmonitor.rb +23 -0
- data/lib/rmonitor/devices.rb +29 -0
- data/lib/rmonitor/helpers/dsl_helpers.rb +38 -0
- data/lib/rmonitor/helpers/profile_helpers.rb +48 -0
- data/lib/rmonitor/helpers/xrandr_read_helpers.rb +75 -0
- data/lib/rmonitor/helpers/xrandr_write_helpers.rb +55 -0
- data/lib/rmonitor/profiles.rb +51 -0
- data/lib/rmonitor/version.rb +3 -0
- data/rmonitor.gemspec +43 -0
- data/spec/lib/helpers/dsl_helper_spec.rb +29 -0
- data/spec/lib/helpers/profile_helpers_spec.rb +138 -0
- data/spec/lib/helpers/xrandr_read_helpers_spec.rb +259 -0
- data/spec/lib/helpers/xrandr_write_helpers_spec.rb +158 -0
- data/spec/support/device_helper.rb +3 -0
- data/spec/support/profile_helper.rb +3 -0
- data/spec/support/string_helpers.rb +25 -0
- metadata +83 -0
metadata
ADDED
@@ -0,0 +1,83 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rmonitor
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Jonas Amundsen
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-08-14 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rspec
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
description: RMonitor is a tool for creating monitor profiles that are easily invoked.
|
28
|
+
This is useful when you often find yourself in situations with different monitor
|
29
|
+
configurations.
|
30
|
+
email:
|
31
|
+
- jonasba+gem@gmail.com
|
32
|
+
executables:
|
33
|
+
- rmonitor
|
34
|
+
extensions: []
|
35
|
+
extra_rdoc_files: []
|
36
|
+
files:
|
37
|
+
- ".rspec"
|
38
|
+
- Gemfile
|
39
|
+
- Gemfile.lock
|
40
|
+
- LICENSE
|
41
|
+
- README.md
|
42
|
+
- bin/rmonitor
|
43
|
+
- lib/rmonitor.rb
|
44
|
+
- lib/rmonitor/devices.rb
|
45
|
+
- lib/rmonitor/helpers/dsl_helpers.rb
|
46
|
+
- lib/rmonitor/helpers/profile_helpers.rb
|
47
|
+
- lib/rmonitor/helpers/xrandr_read_helpers.rb
|
48
|
+
- lib/rmonitor/helpers/xrandr_write_helpers.rb
|
49
|
+
- lib/rmonitor/profiles.rb
|
50
|
+
- lib/rmonitor/version.rb
|
51
|
+
- rmonitor.gemspec
|
52
|
+
- spec/lib/helpers/dsl_helper_spec.rb
|
53
|
+
- spec/lib/helpers/profile_helpers_spec.rb
|
54
|
+
- spec/lib/helpers/xrandr_read_helpers_spec.rb
|
55
|
+
- spec/lib/helpers/xrandr_write_helpers_spec.rb
|
56
|
+
- spec/support/device_helper.rb
|
57
|
+
- spec/support/profile_helper.rb
|
58
|
+
- spec/support/string_helpers.rb
|
59
|
+
homepage:
|
60
|
+
licenses:
|
61
|
+
- MIT
|
62
|
+
metadata: {}
|
63
|
+
post_install_message:
|
64
|
+
rdoc_options: []
|
65
|
+
require_paths:
|
66
|
+
- lib
|
67
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
68
|
+
requirements:
|
69
|
+
- - ">="
|
70
|
+
- !ruby/object:Gem::Version
|
71
|
+
version: '0'
|
72
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
73
|
+
requirements:
|
74
|
+
- - ">="
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: '0'
|
77
|
+
requirements: []
|
78
|
+
rubyforge_project:
|
79
|
+
rubygems_version: 2.2.2
|
80
|
+
signing_key:
|
81
|
+
specification_version: 4
|
82
|
+
summary: A tool for creating monitor profiles that are easily invoked.
|
83
|
+
test_files: []
|