tmuxinator 0.3.4 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile CHANGED
@@ -1,8 +1,8 @@
1
1
  source "http://rubygems.org"
2
2
 
3
3
  group :development do
4
- gem "rspec", "~> 2.1.0"
5
- gem "bundler", "~> 1.0.0"
6
- gem "jeweler", "~> 1.5.1"
7
- gem "rcov", ">= 0"
4
+ gem "rspec", "~> 2.6.0"
5
+ gem "bundler", "~> 1.0.18"
6
+ gem "jeweler", "~> 1.6.4"
7
+ gem "rcov", "~> 0.9.10"
8
8
  end
@@ -1,28 +1,28 @@
1
1
  GEM
2
2
  remote: http://rubygems.org/
3
3
  specs:
4
- diff-lcs (1.1.2)
4
+ diff-lcs (1.1.3)
5
5
  git (1.2.5)
6
- jeweler (1.5.1)
7
- bundler (~> 1.0.0)
6
+ jeweler (1.6.4)
7
+ bundler (~> 1.0)
8
8
  git (>= 1.2.5)
9
9
  rake
10
- rake (0.8.7)
11
- rcov (0.9.9)
12
- rspec (2.1.0)
13
- rspec-core (~> 2.1.0)
14
- rspec-expectations (~> 2.1.0)
15
- rspec-mocks (~> 2.1.0)
16
- rspec-core (2.1.0)
17
- rspec-expectations (2.1.0)
10
+ rake (0.9.2)
11
+ rcov (0.9.10)
12
+ rspec (2.6.0)
13
+ rspec-core (~> 2.6.0)
14
+ rspec-expectations (~> 2.6.0)
15
+ rspec-mocks (~> 2.6.0)
16
+ rspec-core (2.6.4)
17
+ rspec-expectations (2.6.0)
18
18
  diff-lcs (~> 1.1.2)
19
- rspec-mocks (2.1.0)
19
+ rspec-mocks (2.6.0)
20
20
 
21
21
  PLATFORMS
22
22
  ruby
23
23
 
24
24
  DEPENDENCIES
25
- bundler (~> 1.0.0)
26
- jeweler (~> 1.5.1)
27
- rcov
28
- rspec (~> 2.1.0)
25
+ bundler (~> 1.0.18)
26
+ jeweler (~> 1.6.4)
27
+ rcov (~> 0.9.10)
28
+ rspec (~> 2.6.0)
data/README.md CHANGED
@@ -11,10 +11,6 @@ Create and manage tmux sessions easily. Inspired by Jon Druse's ([Screeninator](
11
11
 
12
12
  $ gem install tmuxinator
13
13
 
14
- Then follow the instructions. You just have to drop a line in your ~/.bashrc file, similar to RVM if you've used that before:
15
-
16
- [[ -s $HOME/.tmuxinator/scripts/tmuxinator ]] && source $HOME/.tmuxinator/scripts/tmuxinator
17
-
18
14
  ## Editor and Shell
19
15
 
20
16
  tmuxinator uses your shell's default editor for opening files. If you're not sure what that is type:
@@ -26,7 +22,11 @@ If you want to change your default editor simple put a line in ~/.bashrc that ch
26
22
 
27
23
  export EDITOR='mate -w'
28
24
 
29
- It also uses $SHELL variable. which is always set by your shell.
25
+ ## Environment Integration
26
+
27
+ Add this to your ~/.bashrc (or similar)
28
+
29
+ [[ -s $HOME/.tmuxinator/scripts/tmuxinator ]] && source $HOME/.tmuxinator/scripts/tmuxinator
30
30
 
31
31
  ## Usage
32
32
 
@@ -78,17 +78,15 @@ you can define your own panes inside a window likes this:
78
78
 
79
79
  ## Starting a project
80
80
 
81
- $ start_project_name
81
+ $ start_[project_name]
82
82
 
83
- This will fire up tmux with all the tabs you configured.
83
+ ## Shorthand
84
84
 
85
- ### Limitations ###
85
+ You can also use this shorthand alias for tmuxinator
86
86
 
87
- After you create a project, you will have to open a new shell window. This is because tmuxinator adds an
88
- alias to bash (or any other shell you use, like zsh) to open tmux with the project config. You can reload your shell rc file
89
- instead of openning a new window like this, for instance in bash you could do this:
87
+ $ mux [command/project_name]
90
88
 
91
- $ source ~/.bashrc
89
+ This will fire up tmux with all the tabs you configured.
92
90
 
93
91
  ## Other Commands
94
92
 
@@ -97,11 +95,6 @@ instead of openning a new window like this, for instance in bash you could do th
97
95
  Copy an existing project. aliased to `c`
98
96
 
99
97
 
100
- $ tmuxinator update_scripts
101
-
102
- Re-create the tmux scripts and aliases from the configs. Use this only if you edit your project configs outside of tmuxinator, i.e. not using "tmuxinator open xxx".
103
-
104
-
105
98
  $ tmuxinator list
106
99
 
107
100
  List all the projects you have configured. aliased to `l`
@@ -143,14 +136,22 @@ I would love to hear your feedback on this project! Send me a message!
143
136
  * [Thibault Duplessis](https://github.com/ornicar)
144
137
  * [Ian Yang](https://github.com/doitian)
145
138
  * [Bjørn Arild Mæland](https://github.com/bmaland)
139
+ * [Dane O'Connor](https://github.com/thedeeno)
140
+ * [Eric Marden](https://github.com/xentek)
146
141
 
147
142
 
148
143
  ## History
144
+ ###v. 0.4.0
145
+ * Does not crash if given an invalid yaml file format. report it and exit gracefully.
146
+ * Removed clunky scripts & shell aliases (Thanks to Dane O'Connor)
147
+ * Config files are now rendered JIT (Thanks to Dane O'Connor)
148
+ * Can now start sessions from cli (Thanks to Dane O'Connor)
149
+
149
150
  ###v. 0.3.0
150
- * added pre command (Thanks to Ian Yang)
151
- * added multiple pre command (Thanks to Bjørn Arild Mæland)
152
- * using tmux set default-path for project root
153
- * new aliases
151
+ * Added pre command (Thanks to Ian Yang)
152
+ * Added multiple pre command (Thanks to Bjørn Arild Mæland)
153
+ * Using tmux set default-path for project root
154
+ * New aliases
154
155
 
155
156
  ###v. 0.2.0
156
157
  * added pane support (Thanks to Aaron Spiegel)
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.4
1
+ 0.4.0
data/bin/mux ADDED
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ $:.unshift(File.dirname(__FILE__) + '/../lib') unless $:.include?(File.dirname(__FILE__) + '/../lib')
3
+
4
+ require 'tmuxinator'
5
+
6
+ Tmuxinator::Cli.run(*ARGV)
@@ -3,4 +3,4 @@ $:.unshift(File.dirname(__FILE__) + '/../lib') unless $:.include?(File.dirname(_
3
3
 
4
4
  require 'tmuxinator'
5
5
 
6
- Tmuxinator::Cli.start(*ARGV)
6
+ Tmuxinator::Cli.run(*ARGV)
@@ -6,7 +6,7 @@ module Tmuxinator
6
6
  class << self
7
7
  include Tmuxinator::Helper
8
8
 
9
- def start *args
9
+ def run *args
10
10
  if args.empty?
11
11
  self.usage
12
12
  else
@@ -17,17 +17,19 @@ module Tmuxinator
17
17
  # print the usage string, this is a fall through method.
18
18
  def usage
19
19
  puts %{
20
- Usage: tmuxinator ACTION [Arg]
20
+ Usage: tmuxinator ACTION [Arg]
21
+ or
22
+ tmuxinator [project_name]
21
23
 
22
24
  ACTIONS:
25
+ start [project_name]
26
+ start a tmux session using project's tmuxinator config
23
27
  open [project_name]
24
28
  create a new project file and open it in your editor
25
29
  copy [source_project] [new_project]
26
30
  copy source_project project file to a new project called new_project
27
31
  delete [project_name]
28
32
  deletes the project called project_name
29
- update_scripts
30
- re-create the tmux scripts and aliases from the configs
31
33
  implode
32
34
  deletes all existing projects!
33
35
  list [-v]
@@ -48,7 +50,6 @@ module Tmuxinator
48
50
  exit!("You must specify a name for the new project") unless args.size > 0
49
51
  puts "warning: passing multiple arguments to open will be ignored" if args.size > 1
50
52
  @name = args.shift
51
- FileUtils.mkdir_p(root_dir+"scripts")
52
53
  config_path = "#{root_dir}#{@name}.yml"
53
54
  unless File.exists?(config_path)
54
55
  template = File.exists?(user_config) ? user_config : "#{File.dirname(__FILE__)}/assets/sample.yml"
@@ -56,7 +57,6 @@ module Tmuxinator
56
57
  tmp = File.open(config_path, 'w') {|f| f.write(erb) }
57
58
  end
58
59
  system("$EDITOR #{config_path}")
59
- update_scripts
60
60
  end
61
61
  alias :o :open
62
62
  alias :new :open
@@ -125,33 +125,30 @@ module Tmuxinator
125
125
  end
126
126
  alias :v :version
127
127
 
128
- def update_scripts
129
- Dir["#{root_dir}*.tmux"].each {|p| FileUtils.rm(p) }
130
- aliases = []
131
- Dir["#{root_dir}*.yml"].each do |path|
132
- aliases << Tmuxinator::ConfigWriter.new(path).write!
133
- end
134
- Tmuxinator::ConfigWriter.write_aliases(aliases)
135
- end
136
-
137
128
  def doctor
138
- print " cheking if tmux is installed ==> "
129
+ print " checking if tmux is installed ==> "
139
130
  puts system("which tmux > /dev/null") ? "Yes" : "No"
140
- print " cheking if $EDITOR is set ==> "
131
+ print " checking if $EDITOR is set ==> "
141
132
  puts ENV['EDITOR'] ? "Yes" : "No"
142
- print " cheking if $SHELL is set ==> "
133
+ print " checking if $SHELL is set ==> "
143
134
  puts ENV['SHELL'] ? "Yes" : "No"
144
- puts %{
145
- make sure you have this line in your ~/.bashrc file:
146
-
147
- [[ -s $HOME/.tmuxinator/scripts/tmuxinator ]] && source $HOME/.tmuxinator/scripts/tmuxinator
148
-
135
+ end
149
136
 
150
- }
137
+ # build script and run it
138
+ def start *args
139
+ exit!("You must specify a name for the new project") unless args.size > 0
140
+ puts "warning: passing multiple arguments to open will be ignored" if args.size > 1
141
+ project_name = args.shift
142
+ config_path = "#{root_dir}#{project_name}.yml"
143
+ config = Tmuxinator::ConfigWriter.new(config_path).render
144
+ # replace current proccess by running compiled tmux config
145
+ exec(config)
151
146
  end
147
+ alias :s :start
152
148
 
153
149
  def method_missing method, *args, &block
154
- puts "There's no command called #{method} in tmuxinator"
150
+ start method if File.exists?("#{root_dir}#{method}.yml")
151
+ puts "There's no command or project '#{method}' in tmuxinator"
155
152
  usage
156
153
  end
157
154
 
@@ -5,10 +5,6 @@ module Tmuxinator
5
5
 
6
6
  include Tmuxinator::Helper
7
7
 
8
- def self.write_aliases aliases
9
- File.open("#{ENV["HOME"]}/.tmuxinator/scripts/tmuxinator", 'w') {|f| f.write(aliases.join("\n")) }
10
- end
11
-
12
8
  def initialize this_full_path=nil
13
9
  self.file_path = this_full_path if this_full_path
14
10
  end
@@ -21,10 +17,11 @@ module Tmuxinator
21
17
 
22
18
  def write!
23
19
  raise "Unable to write with out a file_name defined" unless self.file_name
24
- erb = ERB.new(IO.read(TMUX_TEMPLATE)).result(binding)
25
- tmp = File.open(config_path, 'w') {|f| f.write(erb) }
20
+ tmp = File.open(config_path, 'w') {|f| f.write(render) }
21
+ end
26
22
 
27
- "alias start_#{file_name}='$SHELL #{config_path}'"
23
+ def render
24
+ ERB.new(IO.read(TMUX_TEMPLATE)).result(binding)
28
25
  end
29
26
 
30
27
  def config_path
@@ -38,7 +35,11 @@ module Tmuxinator
38
35
  end
39
36
 
40
37
  def process_config!
41
- yaml = YAML.load(File.read(file_path))
38
+ begin
39
+ yaml = YAML.load(File.read(file_path))
40
+ rescue
41
+ exit!("Invalid YAML file format.")
42
+ end
42
43
 
43
44
  exit!("Your configuration file should include some tabs.") if yaml["tabs"].nil?
44
45
  exit!("Your configuration file didn't specify a 'project_root'") if yaml["project_root"].nil?
@@ -71,10 +72,6 @@ module Tmuxinator
71
72
  def parse_tabs tab_list
72
73
  end
73
74
 
74
- def write_alias stuff
75
- File.open("#{root_dir}scripts/#{@filename}", 'w') {|f| f.write(stuff) }
76
- end
77
-
78
75
  def shell_escape str
79
76
  "'#{str.to_s.gsub("'") { %('\'') }}'"
80
77
  end
@@ -28,7 +28,7 @@ describe Tmuxinator::ConfigWriter do
28
28
  its(:project_root){ should eql '~/code/rails_project' }
29
29
  its(:rvm){ should eql '1.9.2@rails_project' }
30
30
  its(:tabs){ should be_an Array }
31
- its(:pre){ should eql 'sudo /etc/rc.d/mysqld start' }
31
+ its(:pre){ should eql 'rvm use 1.9.2@rails_project && sudo /etc/rc.d/mysqld start' }
32
32
 
33
33
  let(:first_tab){ subject.tabs[0] }
34
34
 
@@ -4,16 +4,15 @@
4
4
  # -*- encoding: utf-8 -*-
5
5
 
6
6
  Gem::Specification.new do |s|
7
- s.name = %q{tmuxinator}
8
- s.version = "0.3.4"
7
+ s.name = "tmuxinator"
8
+ s.version = "0.4.0"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Allen Bargi"]
12
- s.date = %q{2011-06-20}
13
- s.default_executable = %q{tmuxinator}
14
- s.description = %q{Create and manage complex tmux sessions easily.}
15
- s.email = %q{allen.bargi@gmail.com}
16
- s.executables = ["tmuxinator"]
12
+ s.date = "2011-09-15"
13
+ s.description = "Create and manage complex tmux sessions easily."
14
+ s.email = "allen.bargi@gmail.com"
15
+ s.executables = ["mux", "tmuxinator"]
17
16
  s.extra_rdoc_files = [
18
17
  "LICENSE.txt",
19
18
  "README.md",
@@ -28,6 +27,7 @@ Gem::Specification.new do |s|
28
27
  "README.md",
29
28
  "Rakefile",
30
29
  "VERSION",
30
+ "bin/mux",
31
31
  "bin/tmuxinator",
32
32
  "lib/tmuxinator.rb",
33
33
  "lib/tmuxinator/assets/sample.yml",
@@ -39,56 +39,32 @@ Gem::Specification.new do |s|
39
39
  "spec/tmuxinator_spec.rb",
40
40
  "tmuxinator.gemspec"
41
41
  ]
42
- s.homepage = %q{http://github.com/aziz/tmuxinator}
42
+ s.homepage = "http://github.com/aziz/tmuxinator"
43
43
  s.licenses = ["MIT"]
44
- s.post_install_message = %q{
45
- __________________________________________________________
46
- ..........................................................
47
-
48
- Thank you for installing tmuxinator
49
- Please be sure to to drop a line in your ~/.bashrc file, similar
50
- to RVM if you've used that before:
51
-
52
- [[ -s $HOME/.tmuxinator/scripts/tmuxinator ]] && source $HOME/.tmuxinator/scripts/tmuxinator
53
-
54
- also ensure that you've set these variables in your ENV:
55
-
56
- $EDITOR, $SHELL
57
-
58
- you can run `tmuxinator doctor` to make sure everything is set.
59
- happy tmuxing with tmuxinator!
60
-
61
- ..........................................................
62
- __________________________________________________________
63
-
64
- }
44
+ s.post_install_message = "\n __________________________________________________________\n ..........................................................\n\n Thank you for installing tmuxinator\n Please be sure to to drop a line in your ~/.bashrc file, similar \n to RVM if you've used that before:\n\n [[ -s $HOME/.tmuxinator/scripts/tmuxinator ]] && source $HOME/.tmuxinator/scripts/tmuxinator\n \n also ensure that you've set these variables in your ENV:\n \n $EDITOR, $SHELL\n \n you can run `tmuxinator doctor` to make sure everything is set.\n happy tmuxing with tmuxinator!\n\n ..........................................................\n __________________________________________________________\n \n "
65
45
  s.require_paths = ["lib"]
66
- s.rubygems_version = %q{1.6.2}
67
- s.summary = %q{Create and manage complex tmux sessions easily.}
68
- s.test_files = [
69
- "spec/spec_helper.rb",
70
- "spec/tmuxinator_spec.rb"
71
- ]
46
+ s.rubygems_version = "1.8.10"
47
+ s.summary = "Create and manage complex tmux sessions easily."
72
48
 
73
49
  if s.respond_to? :specification_version then
74
50
  s.specification_version = 3
75
51
 
76
52
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
77
- s.add_development_dependency(%q<rspec>, ["~> 2.1.0"])
78
- s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
79
- s.add_development_dependency(%q<jeweler>, ["~> 1.5.1"])
80
- s.add_development_dependency(%q<rcov>, [">= 0"])
53
+ s.add_development_dependency(%q<rspec>, ["~> 2.6.0"])
54
+ s.add_development_dependency(%q<bundler>, ["~> 1.0.18"])
55
+ s.add_development_dependency(%q<jeweler>, ["~> 1.6.4"])
56
+ s.add_development_dependency(%q<rcov>, ["~> 0.9.10"])
81
57
  else
82
- s.add_dependency(%q<rspec>, ["~> 2.1.0"])
83
- s.add_dependency(%q<bundler>, ["~> 1.0.0"])
84
- s.add_dependency(%q<jeweler>, ["~> 1.5.1"])
85
- s.add_dependency(%q<rcov>, [">= 0"])
58
+ s.add_dependency(%q<rspec>, ["~> 2.6.0"])
59
+ s.add_dependency(%q<bundler>, ["~> 1.0.18"])
60
+ s.add_dependency(%q<jeweler>, ["~> 1.6.4"])
61
+ s.add_dependency(%q<rcov>, ["~> 0.9.10"])
86
62
  end
87
63
  else
88
- s.add_dependency(%q<rspec>, ["~> 2.1.0"])
89
- s.add_dependency(%q<bundler>, ["~> 1.0.0"])
90
- s.add_dependency(%q<jeweler>, ["~> 1.5.1"])
91
- s.add_dependency(%q<rcov>, [">= 0"])
64
+ s.add_dependency(%q<rspec>, ["~> 2.6.0"])
65
+ s.add_dependency(%q<bundler>, ["~> 1.0.18"])
66
+ s.add_dependency(%q<jeweler>, ["~> 1.6.4"])
67
+ s.add_dependency(%q<rcov>, ["~> 0.9.10"])
92
68
  end
93
69
  end
94
70
 
metadata CHANGED
@@ -1,73 +1,71 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: tmuxinator
3
- version: !ruby/object:Gem::Version
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.4.0
4
5
  prerelease:
5
- version: 0.3.4
6
6
  platform: ruby
7
- authors:
7
+ authors:
8
8
  - Allen Bargi
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
-
13
- date: 2011-06-20 00:00:00 +02:00
14
- default_executable: tmuxinator
15
- dependencies:
16
- - !ruby/object:Gem::Dependency
12
+ date: 2011-09-15 00:00:00.000000000Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
17
15
  name: rspec
18
- requirement: &id001 !ruby/object:Gem::Requirement
16
+ requirement: &70303485891940 !ruby/object:Gem::Requirement
19
17
  none: false
20
- requirements:
18
+ requirements:
21
19
  - - ~>
22
- - !ruby/object:Gem::Version
23
- version: 2.1.0
20
+ - !ruby/object:Gem::Version
21
+ version: 2.6.0
24
22
  type: :development
25
23
  prerelease: false
26
- version_requirements: *id001
27
- - !ruby/object:Gem::Dependency
24
+ version_requirements: *70303485891940
25
+ - !ruby/object:Gem::Dependency
28
26
  name: bundler
29
- requirement: &id002 !ruby/object:Gem::Requirement
27
+ requirement: &70303485890000 !ruby/object:Gem::Requirement
30
28
  none: false
31
- requirements:
29
+ requirements:
32
30
  - - ~>
33
- - !ruby/object:Gem::Version
34
- version: 1.0.0
31
+ - !ruby/object:Gem::Version
32
+ version: 1.0.18
35
33
  type: :development
36
34
  prerelease: false
37
- version_requirements: *id002
38
- - !ruby/object:Gem::Dependency
35
+ version_requirements: *70303485890000
36
+ - !ruby/object:Gem::Dependency
39
37
  name: jeweler
40
- requirement: &id003 !ruby/object:Gem::Requirement
38
+ requirement: &70303485888060 !ruby/object:Gem::Requirement
41
39
  none: false
42
- requirements:
40
+ requirements:
43
41
  - - ~>
44
- - !ruby/object:Gem::Version
45
- version: 1.5.1
42
+ - !ruby/object:Gem::Version
43
+ version: 1.6.4
46
44
  type: :development
47
45
  prerelease: false
48
- version_requirements: *id003
49
- - !ruby/object:Gem::Dependency
46
+ version_requirements: *70303485888060
47
+ - !ruby/object:Gem::Dependency
50
48
  name: rcov
51
- requirement: &id004 !ruby/object:Gem::Requirement
49
+ requirement: &70303485886260 !ruby/object:Gem::Requirement
52
50
  none: false
53
- requirements:
54
- - - ">="
55
- - !ruby/object:Gem::Version
56
- version: "0"
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: 0.9.10
57
55
  type: :development
58
56
  prerelease: false
59
- version_requirements: *id004
57
+ version_requirements: *70303485886260
60
58
  description: Create and manage complex tmux sessions easily.
61
59
  email: allen.bargi@gmail.com
62
- executables:
60
+ executables:
61
+ - mux
63
62
  - tmuxinator
64
63
  extensions: []
65
-
66
- extra_rdoc_files:
64
+ extra_rdoc_files:
67
65
  - LICENSE.txt
68
66
  - README.md
69
67
  - TODO
70
- files:
68
+ files:
71
69
  - .document
72
70
  - .rspec
73
71
  - Gemfile
@@ -76,6 +74,7 @@ files:
76
74
  - README.md
77
75
  - Rakefile
78
76
  - VERSION
77
+ - bin/mux
79
78
  - bin/tmuxinator
80
79
  - lib/tmuxinator.rb
81
80
  - lib/tmuxinator/assets/sample.yml
@@ -87,37 +86,39 @@ files:
87
86
  - spec/tmuxinator_spec.rb
88
87
  - tmuxinator.gemspec
89
88
  - TODO
90
- has_rdoc: true
91
89
  homepage: http://github.com/aziz/tmuxinator
92
- licenses:
90
+ licenses:
93
91
  - MIT
94
- post_install_message: "\n __________________________________________________________\n ..........................................................\n\n Thank you for installing tmuxinator\n Please be sure to to drop a line in your ~/.bashrc file, similar \n to RVM if you've used that before:\n\n [[ -s $HOME/.tmuxinator/scripts/tmuxinator ]] && source $HOME/.tmuxinator/scripts/tmuxinator\n \n also ensure that you've set these variables in your ENV:\n \n $EDITOR, $SHELL\n \n you can run `tmuxinator doctor` to make sure everything is set.\n happy tmuxing with tmuxinator!\n\n ..........................................................\n __________________________________________________________\n \n "
92
+ post_install_message: ! "\n __________________________________________________________\n
93
+ \ ..........................................................\n\n Thank you for
94
+ installing tmuxinator\n Please be sure to to drop a line in your ~/.bashrc file,
95
+ similar \n to RVM if you've used that before:\n\n [[ -s $HOME/.tmuxinator/scripts/tmuxinator
96
+ ]] && source $HOME/.tmuxinator/scripts/tmuxinator\n \n also ensure that you've
97
+ set these variables in your ENV:\n \n $EDITOR, $SHELL\n \n you can run `tmuxinator
98
+ doctor` to make sure everything is set.\n happy tmuxing with tmuxinator!\n\n ..........................................................\n
99
+ \ __________________________________________________________\n \n "
95
100
  rdoc_options: []
96
-
97
- require_paths:
101
+ require_paths:
98
102
  - lib
99
- required_ruby_version: !ruby/object:Gem::Requirement
103
+ required_ruby_version: !ruby/object:Gem::Requirement
100
104
  none: false
101
- requirements:
102
- - - ">="
103
- - !ruby/object:Gem::Version
104
- hash: -2643811095432789154
105
- segments:
105
+ requirements:
106
+ - - ! '>='
107
+ - !ruby/object:Gem::Version
108
+ version: '0'
109
+ segments:
106
110
  - 0
107
- version: "0"
108
- required_rubygems_version: !ruby/object:Gem::Requirement
111
+ hash: -3765836133335404318
112
+ required_rubygems_version: !ruby/object:Gem::Requirement
109
113
  none: false
110
- requirements:
111
- - - ">="
112
- - !ruby/object:Gem::Version
113
- version: "0"
114
+ requirements:
115
+ - - ! '>='
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
114
118
  requirements: []
115
-
116
119
  rubyforge_project:
117
- rubygems_version: 1.6.2
120
+ rubygems_version: 1.8.10
118
121
  signing_key:
119
122
  specification_version: 3
120
123
  summary: Create and manage complex tmux sessions easily.
121
- test_files:
122
- - spec/spec_helper.rb
123
- - spec/tmuxinator_spec.rb
124
+ test_files: []