screeninator 0.0.1 → 0.1.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.
- data/README.md +1 -1
- data/Rakefile +10 -0
- data/VERSION +1 -1
- data/screeninator.gemspec +69 -0
- metadata +57 -50
data/README.md
CHANGED
|
@@ -10,7 +10,7 @@ Installation
|
|
|
10
10
|
|
|
11
11
|
Then follow the instructions. You just have to drop a line in your ~/.bashrc file, similar to RVM if you've used that before:
|
|
12
12
|
|
|
13
|
-
if [[ -s
|
|
13
|
+
if [[ -s $HOME/.screeninator/scripts/screeninator ]] ; then source $HOME/.screeninator/scripts/screeninator ; fi
|
|
14
14
|
|
|
15
15
|
This will load the alias commands into bash.
|
|
16
16
|
|
data/Rakefile
CHANGED
|
@@ -11,6 +11,16 @@ begin
|
|
|
11
11
|
gem.homepage = "http://github.com/jondruse/screeninator"
|
|
12
12
|
gem.authors = ["Jon Druse"]
|
|
13
13
|
gem.add_development_dependency "thoughtbot-shoulda", ">= 0"
|
|
14
|
+
gem.post_install_message = <<-Message
|
|
15
|
+
|
|
16
|
+
Thanks for installing Screeninator!
|
|
17
|
+
|
|
18
|
+
Remember to add the following line to your .bashrc file
|
|
19
|
+
|
|
20
|
+
if [[ -s $HOME/.screeninator/scripts/screeninator ]] ; then source $HOME/.screeninator/scripts/screeninator ; fi
|
|
21
|
+
|
|
22
|
+
Message
|
|
23
|
+
|
|
14
24
|
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
|
15
25
|
end
|
|
16
26
|
Jeweler::GemcutterTasks.new
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0
|
|
1
|
+
0.1.0
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{screeninator}
|
|
8
|
+
s.version = "0.1.0"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Jon Druse"]
|
|
12
|
+
s.date = %q{2010-09-22}
|
|
13
|
+
s.default_executable = %q{screeninator}
|
|
14
|
+
s.description = %q{Create and manage complex screen sessions easily.}
|
|
15
|
+
s.email = %q{jon@jondruse.com}
|
|
16
|
+
s.executables = ["screeninator"]
|
|
17
|
+
s.extra_rdoc_files = [
|
|
18
|
+
"LICENSE",
|
|
19
|
+
"README.md"
|
|
20
|
+
]
|
|
21
|
+
s.files = [
|
|
22
|
+
".document",
|
|
23
|
+
".gitignore",
|
|
24
|
+
"LICENSE",
|
|
25
|
+
"README.md",
|
|
26
|
+
"Rakefile",
|
|
27
|
+
"VERSION",
|
|
28
|
+
"bin/screeninator",
|
|
29
|
+
"lib/screeninator.rb",
|
|
30
|
+
"lib/screeninator/assets/sample.yml",
|
|
31
|
+
"lib/screeninator/assets/screen_config.screen",
|
|
32
|
+
"lib/screeninator/cli.rb",
|
|
33
|
+
"lib/screeninator/config_writer.rb",
|
|
34
|
+
"screeninator.gemspec",
|
|
35
|
+
"test/helper.rb",
|
|
36
|
+
"test/test_screeninator.rb"
|
|
37
|
+
]
|
|
38
|
+
s.homepage = %q{http://github.com/jondruse/screeninator}
|
|
39
|
+
s.post_install_message = %q{
|
|
40
|
+
Thanks for installing Screeninator!
|
|
41
|
+
|
|
42
|
+
Remember to add the following line to your .bashrc file
|
|
43
|
+
|
|
44
|
+
if [[ -s $HOME/.screeninator/scripts/screeninator ]] ; then source $HOME/.screeninator/scripts/screeninator ; fi
|
|
45
|
+
|
|
46
|
+
}
|
|
47
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
48
|
+
s.require_paths = ["lib"]
|
|
49
|
+
s.rubygems_version = %q{1.3.7}
|
|
50
|
+
s.summary = %q{Create and manage complex screen sessions easily.}
|
|
51
|
+
s.test_files = [
|
|
52
|
+
"test/helper.rb",
|
|
53
|
+
"test/test_screeninator.rb"
|
|
54
|
+
]
|
|
55
|
+
|
|
56
|
+
if s.respond_to? :specification_version then
|
|
57
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
58
|
+
s.specification_version = 3
|
|
59
|
+
|
|
60
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
61
|
+
s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
|
62
|
+
else
|
|
63
|
+
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
|
64
|
+
end
|
|
65
|
+
else
|
|
66
|
+
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
|
67
|
+
end
|
|
68
|
+
end
|
|
69
|
+
|
metadata
CHANGED
|
@@ -3,13 +3,13 @@ name: screeninator
|
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease: false
|
|
5
5
|
segments:
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
version: 0.0
|
|
6
|
+
- 0
|
|
7
|
+
- 1
|
|
8
|
+
- 0
|
|
9
|
+
version: 0.1.0
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
|
-
|
|
12
|
+
- Jon Druse
|
|
13
13
|
autorequire:
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
@@ -17,72 +17,79 @@ cert_chain: []
|
|
|
17
17
|
date: 2010-09-22 00:00:00 -07:00
|
|
18
18
|
default_executable: screeninator
|
|
19
19
|
dependencies:
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
20
|
+
- !ruby/object:Gem::Dependency
|
|
21
|
+
name: thoughtbot-shoulda
|
|
22
|
+
prerelease: false
|
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
24
|
+
none: false
|
|
25
|
+
requirements:
|
|
26
|
+
- - ">="
|
|
27
|
+
- !ruby/object:Gem::Version
|
|
28
|
+
segments:
|
|
29
|
+
- 0
|
|
30
|
+
version: "0"
|
|
31
|
+
type: :development
|
|
32
|
+
version_requirements: *id001
|
|
32
33
|
description: Create and manage complex screen sessions easily.
|
|
33
34
|
email: jon@jondruse.com
|
|
34
35
|
executables:
|
|
35
|
-
|
|
36
|
+
- screeninator
|
|
36
37
|
extensions: []
|
|
37
38
|
|
|
38
39
|
extra_rdoc_files:
|
|
39
|
-
|
|
40
|
-
|
|
40
|
+
- LICENSE
|
|
41
|
+
- README.md
|
|
41
42
|
files:
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
43
|
+
- .document
|
|
44
|
+
- .gitignore
|
|
45
|
+
- LICENSE
|
|
46
|
+
- README.md
|
|
47
|
+
- Rakefile
|
|
48
|
+
- VERSION
|
|
49
|
+
- bin/screeninator
|
|
50
|
+
- lib/screeninator.rb
|
|
51
|
+
- lib/screeninator/assets/sample.yml
|
|
52
|
+
- lib/screeninator/assets/screen_config.screen
|
|
53
|
+
- lib/screeninator/cli.rb
|
|
54
|
+
- lib/screeninator/config_writer.rb
|
|
55
|
+
- screeninator.gemspec
|
|
56
|
+
- test/helper.rb
|
|
57
|
+
- test/test_screeninator.rb
|
|
56
58
|
has_rdoc: true
|
|
57
59
|
homepage: http://github.com/jondruse/screeninator
|
|
58
60
|
licenses: []
|
|
59
61
|
|
|
60
|
-
post_install_message:
|
|
62
|
+
post_install_message: "\n\
|
|
63
|
+
Thanks for installing Screeninator!\n\n\
|
|
64
|
+
Remember to add the following line to your .bashrc file\n\n\
|
|
65
|
+
if [[ -s $HOME/.screeninator/scripts/screeninator ]] ; then source $HOME/.screeninator/scripts/screeninator ; fi\n \n"
|
|
61
66
|
rdoc_options:
|
|
62
|
-
|
|
67
|
+
- --charset=UTF-8
|
|
63
68
|
require_paths:
|
|
64
|
-
|
|
69
|
+
- lib
|
|
65
70
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
71
|
+
none: false
|
|
66
72
|
requirements:
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
73
|
+
- - ">="
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
segments:
|
|
76
|
+
- 0
|
|
77
|
+
version: "0"
|
|
72
78
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
79
|
+
none: false
|
|
73
80
|
requirements:
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
81
|
+
- - ">="
|
|
82
|
+
- !ruby/object:Gem::Version
|
|
83
|
+
segments:
|
|
84
|
+
- 0
|
|
85
|
+
version: "0"
|
|
79
86
|
requirements: []
|
|
80
87
|
|
|
81
88
|
rubyforge_project:
|
|
82
|
-
rubygems_version: 1.3.
|
|
89
|
+
rubygems_version: 1.3.7
|
|
83
90
|
signing_key:
|
|
84
91
|
specification_version: 3
|
|
85
92
|
summary: Create and manage complex screen sessions easily.
|
|
86
93
|
test_files:
|
|
87
|
-
|
|
88
|
-
|
|
94
|
+
- test/helper.rb
|
|
95
|
+
- test/test_screeninator.rb
|