sesh 0.4.2 → 0.4.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 606d7765a67aab4f949da18b6892991d91c64340
4
- data.tar.gz: 6a3bdfce44d732a03276dbc76026795dc5611465
3
+ metadata.gz: a26d2bade837731c767bd0b1b52997b937e6fda2
4
+ data.tar.gz: 56a0e402cae6977b399fcffe86b4eb0aa3d4c89b
5
5
  SHA512:
6
- metadata.gz: d9b2a52b1404207b5888ec94183bc35161a630136590a99eb061b58b01c6012756e15a3279fd752dac83daab2f72d8d696e5e7dfe94ffa0c6e2504580a77b1bc
7
- data.tar.gz: 81fe0e9c936be0d1195d20a0c592f409e5d125d0a16f68d7116531d935644310514f3c17ae24940b707130f714ca9b01b5e5cdab39ea756ea2a495c1420c979c
6
+ metadata.gz: 6c0e9efa097587105ebc9baeabbf3890c85a4581ad54b34bb1e8acdf025a4e9271c094806ed023839249983c522563839c850f79a3263adf4b3283c5b7951b85
7
+ data.tar.gz: c9cdb8d06da2375948c557b25a5907e93721fee792d1824b4bfed349adb58ec3e3957a9677963b9c18d2065e698021936219f53adf28b9b601579570b5933b6a
data/.gitignore CHANGED
@@ -1,2 +1,4 @@
1
1
  **/*.swp
2
+ **/*.swo
2
3
  pkg
4
+ Session.vim
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- sesh (0.4.2)
4
+ sesh (0.4.3)
5
5
  awesome_print (~> 1.6)
6
6
  colorize (~> 0.7.7)
7
7
  deep_merge (~> 1.0)
@@ -217,7 +217,7 @@ module Sesh
217
217
  tc = TmuxControl.new rp
218
218
  tc_clients = tc.connected_client_devices
219
219
  if tc_clients.any?
220
- Logger.success "Connected Client Devices:", 2
220
+ Logger.success 'Connected Client Devices:', 2
221
221
  tc_clients.each_with_index do |c, i|
222
222
  Logger.info "#{i+1}: #{c}: #{tc.get_ip_from_device(c)}", 3
223
223
  end
@@ -246,9 +246,8 @@ module Sesh
246
246
  status = @tmux_control.do_shell_operation!(@options[:shell])
247
247
  exit status || 1
248
248
  when 'detach' then @tmux_control.disconnect_client! ARGV.join(' ')
249
- else
250
- Logger.fatal "Command not recognized!"
251
- end
249
+ when 'pids' then @tmux_control.list_running_processes
250
+ else Logger.fatal "Command not recognized!" end
252
251
  exit 0
253
252
  end
254
253
 
@@ -1,4 +1,5 @@
1
1
  require 'sesh'
2
+ require 'pty'
2
3
  require 'open4'
3
4
  # require 'tmuxinator'
4
5
  # require 'yaml'
@@ -50,26 +51,43 @@ module Sesh
50
51
  tmux_processes =
51
52
  `tmux list-panes -s -F "\#{pane_pid} \#{pane_current_command}" -t "#{@project}" 2> /dev/null | grep -v tmux | awk '{print $1}'`.strip.lines.map(&:strip) +
52
53
  `tmux -S "#{@socket_file}" list-panes -s -F "\#{pane_pid} \#{pane_current_command}" 2> /dev/null | grep -v tmux | awk '{print $1}'`.strip.lines.map(&:strip)
54
+ tmux_processes.delete_if {|pid| `ps aux | grep #{pid} | grep -v grep | grep -v "sesh begin #{@project}"`.strip.length == 0 }
55
+ puts; puts "Tmux Processes:"
56
+ tmux_processes.each{|pid| puts `ps aux | grep #{pid} | grep -v grep`.strip }
53
57
  return [] unless tmux_processes.any?
54
- spring_processes = other_processes = []
58
+ spring_processes = []; other_processes = []
55
59
  spring_app_pid = `ps -ef | grep "[s]pring app .*| #{@project} |" | grep -v grep | awk '{print $2}'`.strip
56
60
  spring_processes += `ps -ef | grep #{spring_app_pid} | grep -v grep | grep -v "[s]pring app" | awk '{print $2}'`.strip.lines.map(&:strip) if spring_app_pid.length > 0
57
61
  spring_processes += `ps -ef | grep "[s]pring.*| #{@project} |" | grep -v grep | awk '{print $2}'`.strip.lines.map(&:strip)
62
+ puts; puts 'Spring Processes:'
63
+ spring_processes.each{|pid| puts `ps aux | grep #{pid} | grep -v grep`.strip }
58
64
  tmux_processes.each{|pid|
59
65
  other_processes += obtain_child_pids_from_pid(pid) - tmux_processes }
60
- spring_processes + other_processes + tmux_processes
66
+ puts; puts 'Other Processes:'
67
+ other_processes.each{|pid| puts `ps aux | grep #{pid} | grep -v grep`.strip }
68
+ puts
69
+ ( spring_processes + other_processes + tmux_processes ).uniq
61
70
  end
62
71
  def obtain_child_pids_from_pid(pid)
63
- output = `ps -ef | grep #{pid} | grep -v grep | awk '{print $2}'`.strip.lines.map(&:strip)
72
+ output = `ps -ef | grep #{pid} | grep -v grep | grep -v "sesh begin #{@project}" | awk '{print $2}'`.strip.lines.map(&:strip)
64
73
  output -= [pid]
65
74
  output += output.map{|cpid| obtain_child_pids_from_pid(cpid) - [pid] }.flatten
66
75
  output.reverse
67
76
  end
68
77
 
78
+ def list_running_processes
79
+ obtain_pids_from_session.each{|pid|
80
+ puts `ps aux | grep #{pid} | grep -v grep`.strip }
81
+ end
69
82
  def kill_running_processes
70
83
  pane_count = `tmux list-panes -s -F "\#{pane_pid} \#{pane_current_command}" -t "#{@project}" 2>/dev/null`.strip.lines.count
84
+ return if pane_count == 0
71
85
  pane_count.times{|i| move_cursor_to_pane_and_interrupt! i; sleep 0.1 }
72
- obtain_pids_from_session.each{|pid| kill_process! pid }
86
+ sleep 1; puts 'Killing pids from session...'
87
+ obtain_pids_from_session.each{|pid|
88
+ puts `ps aux | grep #{pid} | grep -v grep`.strip
89
+ kill_process! pid }
90
+ puts 'All pids from session have been killed.'
73
91
  # if File.exists? @options[:pids_file]
74
92
  # File.readlines(@options[:pids_file]).each{|pid|
75
93
  # puts "Killing #{pid}"
@@ -202,22 +220,22 @@ module Sesh
202
220
  else do_shell_operation_here! options[:command] end
203
221
  end
204
222
  end
205
- def do_shell_operation_here!(cmd)
223
+ def do_shell_operation_here!(cmd, allow_zeus_retry=true)
206
224
  # system cmd
207
- # STDOUT.sync = true
208
- # stdin, stdout, stderr, wait_thr = Open3.popen3(*cmd.split(' '))
209
- # stdin.close
210
- # stdout.close
211
- output = ''
212
- status = Open4::popen4(cmd) do |pid, stdin, stdout, stderr|
213
- stdin.close
214
- puts o = stdout.read.strip; output << o
215
- puts o = stderr.read.strip; output << o
225
+ raw = ''
226
+ PTY.spawn(cmd) do |reader, writer|
227
+ reader.sync = true
228
+ writer.sync = true
229
+ Thread.new { loop { writer.print(STDIN.getc.chr) } }
230
+ while (c=reader.getc)
231
+ raw << c
232
+ print c
233
+ end
234
+ end
235
+ if allow_zeus_retry && raw =~ /Could not find command "rspec /
236
+ return do_shell_operation_here! cmd, false
216
237
  end
217
- puts "Full output: #{output}"
218
- puts "Status: #{status.inspect}"
219
- status.exitstatus
220
- # $?.exitstatus
238
+ $?.exitstatus
221
239
  end
222
240
 
223
241
  # Getter methods for passthru to SshControl class
@@ -1,3 +1,3 @@
1
1
  module Sesh
2
- VERSION = '0.4.2'
2
+ VERSION = '0.4.3'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sesh
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.2
4
+ version: 0.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - MacKinley Smith
@@ -138,7 +138,6 @@ files:
138
138
  - LICENSE
139
139
  - README.md
140
140
  - Rakefile
141
- - Session.vim
142
141
  - bin/console
143
142
  - bin/setup
144
143
  - exe/return_to_sesh
@@ -1,723 +0,0 @@
1
- let SessionLoad = 1
2
- let s:so_save = &so | let s:siso_save = &siso | set so=0 siso=0
3
- let v:this_session=expand("<sfile>:p")
4
- silent only
5
- cd ~/Sites/sesh
6
- if expand('%') == '' && !&modified && line('$') <= 1 && getline(1) == ''
7
- let s:wipebuf = bufnr('%')
8
- endif
9
- set shortmess=aoO
10
- badd +1 ~/Sites/teacher-impact/app/views/users/_search_result.html.haml
11
- badd +132 ~/Sites/the-riverboat/Gemfile
12
- badd +5 ~/Sites/teacher-impact/app/views/teachers/_profile.html.haml
13
- badd +87 ~/Sites/energy-innovation-award/config/database.yml
14
- badd +15 ~/Sites/teacher-impact/config/initializers/devise.rb
15
- badd +15 ~/Sites/teacher-impact/config/secrets.yml
16
- badd +9 ~/Sites/teacher-impact/app/views/admin/users/index.html.haml
17
- badd +10 ~/Sites/teacher-impact/app/views/admin/users/_table.html.haml
18
- badd +21 ~/Sites/teacher-impact/app/views/admin/users/_table_row.html.haml
19
- badd +1 ~/Sites/teacher-impact/app/views/admin/users/_details_cell.html.haml
20
- badd +1 ~/Sites/teacher-impact/app/views/admin/students/_details_cell.html.haml
21
- badd +21 ~/Sites/teacher-impact/app/models/user.rb
22
- badd +43 ~/Sites/teacher-impact/app/helpers/user_profiles_helper.rb
23
- badd +49 ~/Sites/the-riverboat/Guardfile
24
- badd +28 ~/Sites/the-riverboat/app/controllers/application_controller.rb
25
- badd +373 ~/Sites/the-riverboat/app/models/user.rb
26
- badd +1 ~/Sites/the-riverboat/app/views/admin/refund_requests/index.html.haml
27
- badd +13 ~/Sites/the-riverboat/app/views/admin/refund_requests/_table.html.haml
28
- badd +4 ~/Sites/the-riverboat/app/views/admin/refund_requests/_table_row.html.haml
29
- badd +3 ~/Sites/the-riverboat/app/views/admin/refund_requests/_details_cell.html.haml
30
- badd +23 ~/Sites/the-riverboat/app/controllers/admin/refund_requests_controller.rb
31
- badd +11 ~/Sites/the-riverboat/app/controllers/admin/payments_controller.rb
32
- badd +32 ~/Sites/the-riverboat/app/views/admin/affiliates/index.html.haml
33
- badd +1 ~/Sites/the-riverboat/app/views/events/index.html.haml
34
- badd +19 ~/Sites/the-riverboat/app/views/admin/events/index.html.haml
35
- badd +27 ~/Sites/the-riverboat/app/views/admin/events/_management_table.html.haml
36
- badd +26 ~/Sites/the-riverboat/app/views/admin/tickets/checkin.html.haml
37
- badd +8 ~/Sites/the-riverboat/app/views/admin/event_templates/index.html.haml
38
- badd +10 ~/Sites/the-riverboat/app/views/admin/event_templates/_table.html.haml
39
- badd +5 ~/Sites/the-riverboat/app/views/admin/event_templates/_table_row.html.haml
40
- badd +2 ~/Sites/the-riverboat/app/views/admin/event_templates/_details_cell.html.haml
41
- badd +1 ~/Sites/the-riverboat/app/controllers/event_templates_controller.rb
42
- badd +25 ~/Sites/the-riverboat/app/controllers/admin/event_templates_controller.rb
43
- badd +38 ~/Sites/the-riverboat/app/views/layouts/application.html.haml
44
- badd +62 ~/Sites/the-riverboat/app/views/shared/_main_nav.html.haml
45
- badd +9 ~/Sites/the-riverboat/app/views/admin/payments/index.html.haml
46
- badd +12 ~/Sites/the-riverboat/app/views/admin/payments/_table.html.haml
47
- badd +18 ~/Sites/the-riverboat/app/views/admin/payments/_table_row.html.haml
48
- badd +26 ~/Sites/the-riverboat/app/views/admin/payments/_details_cell.html.haml
49
- badd +126 ~/Sites/the-riverboat/app/models/payment.rb
50
- badd +323 ~/Sites/the-riverboat/db/schema.rb
51
- badd +127 ~/Sites/the-riverboat/app/controllers/admin/tickets_controller.rb
52
- badd +9 ~/Sites/the-riverboat/app/controllers/concerns/ticket_errors.rb
53
- badd +1 ~/Sites/the-riverboat/app/views/admin/payments/new.html.haml
54
- badd +1 ~/Sites/the-riverboat/app/views/admin/events/new.html.haml
55
- badd +1 ~/Sites/the-riverboat/app/views/admin/payments/edit.html.haml
56
- badd +8 ~/Sites/the-riverboat/app/views/admin/payments/_form.html.haml
57
- badd +1 ~/Sites/the-riverboat/app/views/tickets/_payment_errors.html.haml
58
- badd +5 ~/Sites/the-riverboat/app/views/payments/_new_card_fields.html.haml
59
- badd +1 ~/Sites/the-riverboat/app/views/ticket_codes/_cocoon_table.html.haml
60
- badd +1 ~/Sites/the-riverboat/app/views/tickets/_ticket_code_fields.html.haml
61
- badd +30 ~/Sites/the-riverboat/config/environments/development.rb
62
- badd +25 ~/Sites/the-riverboat/app/assets/javascripts/admin/users.js.coffee
63
- badd +70 ~/Sites/the-riverboat/app/assets/javascripts/admin/payments.js.coffee
64
- badd +226 ~/Sites/the-riverboat/app/models/ticket.rb
65
- badd +1 ~/Sites/the-riverboat/app/views/admin/timecards/reports.html.haml
66
- badd +146 ~/Sites/the-riverboat/app/helpers/application_helper.rb
67
- badd +1 ~/Sites/the-riverboat/app/views/shared/_main_footer.html.haml
68
- badd +2 ~/Sites/the-riverboat/config/initializers/stripe.rb
69
- badd +1 ~/Sites/the-riverboat/config/secrets.yml
70
- badd +7 ~/Sites/the-riverboat/db/migrate/20151023211612_add_purchasable_to_payments.rb
71
- badd +16 ~/Sites/the-riverboat/config/environments/test.rb
72
- badd +31 ~/Sites/the-riverboat/app/assets/javascripts/application.js
73
- badd +205 ~/Sites/the-riverboat/app/assets/javascripts/tickets.js.coffee
74
- badd +9 ~/Sites/the-riverboat/app/views/payments/_card_storage_fields.html.haml
75
- badd +1 ~/Sites/the-riverboat/app/views/shared/_presubmit_errors.html.haml
76
- badd +1 ~/Sites/the-riverboat/app/views/payments/_stripe_errors.html.haml
77
- badd +18 ~/Sites/the-riverboat/app/assets/javascripts/shared.js.coffee
78
- badd +263 ~/Sites/the-riverboat/app/assets/stylesheets/bootstrap-overrides.scss
79
- badd +79 ~/Sites/the-riverboat/config/initializers/simple_form_bootstrap.rb
80
- badd +8 ~/Sites/the-riverboat/app/views/admin/payments/show.html.haml
81
- badd +4 ~/Sites/the-riverboat/app/helpers/payments_helper.rb
82
- badd +1 ~/Sites/the-riverboat/app/models/concerns/soft_deletable.rb
83
- badd +54 ~/Sites/the-riverboat/config/routes.rb
84
- badd +15 ~/Sites/the-riverboat/app/views/admin/event_bookings/_form.html.haml
85
- badd +1 ~/Sites/the-riverboat/app/assets/javascripts/admin/event_bookings.js.coffee
86
- badd +23 ~/Sites/the-riverboat/app/assets/javascripts/event_bookings.js.coffee
87
- badd +13 ~/Sites/the-riverboat/spec/models/payment_spec.rb
88
- badd +4 ~/Sites/the-riverboat/spec/factories/payments.rb
89
- badd +5 ~/Sites/the-riverboat/spec/factories/event_booking_categories.rb
90
- badd +5 ~/Sites/the-riverboat/spec/factories/event_bookings.rb
91
- badd +12 ~/Sites/the-riverboat/spec/factories/events.rb
92
- badd +5 ~/Sites/the-riverboat/spec/factories/photos.rb
93
- badd +3 ~/Sites/the-riverboat/spec/factories/prices.rb
94
- badd +6 ~/Sites/the-riverboat/spec/factories/promo_codes.rb
95
- badd +64 ~/Sites/the-riverboat/spec/factories/tickets.rb
96
- badd +17 ~/Sites/the-riverboat/spec/factories/users.rb
97
- badd +22 ~/Sites/the-riverboat/app/models/concerns/acts_as_stripe_customer.rb
98
- badd +174 ~/Sites/the-riverboat/spec/models/users_spec.rb
99
- badd +79 ~/Sites/the-riverboat/spec/controllers/tickets_controller_spec.rb
100
- badd +9 ~/Sites/the-riverboat/spec/controllers/twilio_controller_spec.rb
101
- badd +37 ~/Sites/the-riverboat/spec/features/checkin_spec.rb
102
- badd +7 ~/Sites/the-riverboat/app/models/timecard.rb
103
- badd +10 ~/Sites/teacher-impact/app/views/admin/teachers/_table_row.html.haml
104
- badd +6 ~/Sites/teacher-impact/app/views/admin/teachers/_details_cell.html.haml
105
- badd +6 ~/Sites/teacher-impact/app/views/admin/student_parents/_details_cell.html.haml
106
- badd +151 ~/Sites/teacher-impact/app/assets/stylesheets/bootstrap-overrides.scss
107
- badd +6 ~/Sites/teacher-impact/app/models/concerns/user_profile.rb
108
- badd +16 ~/Sites/teacher-impact/app/models/profile_view.rb
109
- badd +14 ~/Sites/teacher-impact/app/helpers/application_helper.rb
110
- badd +50 ~/Sites/teacher-impact/app/models/ability.rb
111
- badd +1 ~/Sites/teacher-impact/app/views/admin/students/_table_row.html.haml
112
- badd +13 ~/Sites/teacher-impact/app/views/admin/student_parents/_table_row.html.haml
113
- badd +9 ~/Sites/teacher-impact/app/controllers/application_controller.rb
114
- badd +1 ~/Sites/polyblock/app/assets/javascripts/polyblock/polyblock.js.coffee
115
- badd +1 ~/Sites/teacher-impact/app/views/layouts/application.html.haml
116
- badd +74 ~/Sites/teacher-impact/app/views/main/home.html.haml
117
- badd +16 ~/Sites/teacher-impact/\[Vundle]\ Installer
118
- badd +828 /private/var/folders/2s/84cdz1jx6w181h6gyy_mb9dr0000gp/T/nvimg5wUrP/1
119
- badd +1 ~/Sites/teacher-impact/app/views/shared/_main_nav.html.haml
120
- badd +6 ~/Sites/teacher-impact/app/views/shared/_footer.html.haml
121
- badd +5 ~/Sites/teacher-impact/app/views/shared/_social_icons.html.haml
122
- badd +54 ~/Sites/teacher-impact/config/environments/development.rb
123
- badd +1 ~/Sites/teacher-impact/app/views/shared/_flash_messages.html.haml
124
- badd +26 ~/Sites/teacher-impact/spec/features/users_spec.rb
125
- badd +7 ~/Sites/teacher-impact/spec/features/students_spec.rb
126
- badd +12 ~/Sites/teacher-impact/app/views/devise/invitations/edit.html.haml
127
- badd +23 ~/Sites/teacher-impact/config/locales/en.yml
128
- badd +10 ~/Sites/teacher-impact/config/locales/devise.en.yml
129
- badd +5 ~/Sites/teacher-impact/config/locales/devise_invitable.en.yml
130
- badd +18 ~/Sites/teacher-impact/app/controllers/teacher_profiles_controller.rb
131
- badd +8 ~/Sites/teacher-impact/app/views/teacher_profiles/_form.html.haml
132
- badd +12 ~/Sites/teacher-impact/app/views/student_profiles/_form.html.haml
133
- badd +2 ~/Sites/teacher-impact/app/models/student_profile.rb
134
- badd +1 ~/Sites/teacher-impact/app/models/teacher_profile.rb
135
- badd +1 ~/Sites/teacher-impact/app/views/teacher_profiles/_teacher_employment_fields.html.haml
136
- badd +22 ~/Sites/teacher-impact/app/controllers/concerns/teacher_profile_fetching.rb
137
- badd +3 ~/Sites/teacher-impact/app/controllers/teachers_controller.rb
138
- badd +1 ~/Sites/teacher-impact/app/views/teachers/show.html.haml
139
- badd +4 ~/Sites/teacher-impact/app/controllers/main_controller.rb
140
- badd +1 ~/Sites/teacher-impact/app/models/teacher.rb
141
- badd +3 ~/Sites/teacher-impact/app/controllers/registrations_controller.rb
142
- badd +5 ~/Sites/zip_search/lib/zip_search/acts_as_location.rb
143
- badd +15 ~/.ssh/config
144
- badd +13 ~/Sites/zip_search/zip_search.gemspec
145
- badd +1 ~/Sites/zip_search/app/models/zip_search/zip_search.rb
146
- badd +1 ~/Sites/zip_search/app/models/zip_search/location.rb
147
- badd +8 ~/Sites/zip_search/lib/zip_search.rb
148
- badd +7 ~/Sites/zip_search/lib/zip_search/engine.rb
149
- badd +1 ~/Sites/zip_search/lib/zip_search/railtie.rb
150
- badd +4 ~/Sites/zip_search/lib/zip_search/model_helpers.rb
151
- badd +5 ~/Sites/zip_search/lib/zip_search/strong_params_helper.rb
152
- badd +4 ~/Sites/zip_search/test/dummy/config/routes.rb
153
- badd +1 ~/Sites/zip_search/test/dummy/app/views/main/home.html.erb
154
- badd +1 ~/Sites/zip_search/lib/zip_search/view_helpers.rb
155
- badd +1 \'/Users/smit1625/Sites/zip_search/app/views/zip_search/locations/_search_field.html.erb\'
156
- badd +9 ~/Sites/zip_search/app/views/zip_search/locations/_search_field.html.erb
157
- badd +8 ~/Sites/zip_search/Gemfile
158
- badd +8 ~/Sites/zip_search/app/assets/javascripts/zip_search/locations.coffee
159
- badd +3 ~/Sites/zip_search/config/routes.rb
160
- badd +1 ~/Sites/zip_search/test/dummy/app/assets/javascripts/application.js
161
- badd +1 ~/Sites/zip_search/app/views/layouts/zip_search/application.html.erb
162
- badd +1 ~/Sites/zip_search/test/dummy/app/views/layouts/application.html.erb
163
- badd +1 \'/Users/smit1625/Sites/zip_search/app/assets/javascripts/zip_search/init.js\'
164
- badd +3 ~/Sites/zip_search/app/controllers/zip_search/locations_controller.rb
165
- badd +1 ~/Sites/zip_search/test/dummy/config/database.yml
166
- badd +17 ~/Sites/zip_search/app/assets/stylesheets/zip_search/typeahead.scss
167
- badd +1 ~/Sites/zip_search/test/dummy/app/models/house.rb
168
- badd +14 ~/Sites/zip_search/test/dummy/app/controllers/houses_controller.rb
169
- badd +1 ~/Sites/zip_search/test/dummy/app/views/houses/new.html.erb
170
- badd +7 ~/Sites/zip_search/test/dummy/app/views/houses/_form.html.erb
171
- badd +5 ~/Sites/zip_search/lib/zip_search/has_locations.rb
172
- badd +1 ~/Sites/zip_search/test/dummy/config/environments/development.rb
173
- badd +1 \'/Users/smit1625/Sites/zip_search/config/spring.rb\'
174
- badd +1 ~/Sites/zip_search/config/spring.rb
175
- badd +1 ~/Sites/zip_search/test/dummy/config/spring.rb
176
- badd +1 ~/Sites/zip_search/config/application.rb
177
- badd +1 ~/Sites/zip_search/test/dummy/config/application.rb
178
- badd +1 ~/Sites/zip_search/test/dummy/Guardfile
179
- badd +82 ~/Sites/zip_search/Guardfile
180
- badd +1 \'/Users/smit1625/Sites/zip_search/zeus.json\'
181
- badd +1 ~/Sites/zip_search/zeus.json
182
- badd +1 \'/Users/smit1625/Sites/zip_search/engine_plan.rb\'
183
- badd +1 ~/Sites/zip_search/engine_plan.rb
184
- badd +10 ~/Sites/zip_search/lib/zip_search/controller_helpers.rb
185
- badd +14 ~/Sites/zip_search/test/dummy/app/views/houses/show.html.erb
186
- badd +1 ~/Sites/zip_search/app/assets/javascripts/zip_search/init.js
187
- badd +6 ~/Sites/zip_search/lib/zip_search/simple_form_helper.rb
188
- badd +1 \'/Users/smit1625/Sites/zip_search/app/views/zip_search/_simple_fields.html.erb\'
189
- badd +1 ~/Sites/zip_search/app/views/zip_search/_simple_fields.html.erb
190
- badd +1 lib/sesh/version.rb
191
- badd +1 ~/Sites/energy_innovation_award/index.html
192
- badd +1 ~/Sites/energy_innovation_award/css/custom.css
193
- badd +1 ~/Sites/energy_innovation_award/about.html
194
- badd +1 ~/Sites/energy_innovation_award/contact.html
195
- badd +1 ~/Sites/energy_innovation_award/form2.html
196
- badd +1 ~/Sites/energy_innovation_award/news.html
197
- badd +1 ~/Sites/energy_innovation_award/privacy-statement.html
198
- badd +1 ~/Sites/energy_innovation_award/register.html
199
- badd +1 ~/Sites/energy_innovation_award/site-accessibility.html
200
- badd +1 ~/Sites/vrat/spec/spec_helper.rb
201
- badd +1 ~/Sites/theriverboat_v2/db/schema.rb
202
- badd +1 ~/Sites/theriverboat_v2/app/models/ticket.rb
203
- badd +1 ~/Sites/theriverboat_v2/app/models/payment.rb
204
- badd +1 ~/Sites/theriverboat_v2/Gemfile
205
- badd +1 ~/Sites/theriverboat_v2/app/controllers/payments_controller.rb
206
- badd +1 ~/Sites/theriverboat_v2/app/views/tickets/new.html.haml
207
- badd +1 ~/Sites/theriverboat_v2/app/controllers/tickets_controller.rb
208
- badd +1 ~/Sites/theriverboat_v2/app/views/tickets/_payment_errors.html.haml
209
- badd +1 ~/Sites/theriverboat_v2/app/assets/javascripts/payments.js.coffee
210
- badd +1 ~/Sites/theriverboat_v2/app/assets/javascripts/tickets.js.coffee
211
- badd +1 ~/Sites/theriverboat_v2/app/assets/stylesheets/bootstrap-overrides.scss
212
- badd +1 ~/Sites/theriverboat_v2/app/assets/javascripts/shared.js.coffee
213
- badd +1 ~/Sites/theriverboat_v2/app/assets/javascripts/home.js.coffee
214
- badd +1 ~/Sites/theriverboat_v2/app/assets/javascripts/event_booking_categories.js.coffee
215
- badd +1 ~/Sites/theriverboat_v2/app/assets/javascripts/event_bookings.js.coffee
216
- badd +1 ~/Sites/theriverboat_v2/app/views/layouts/application.html.haml
217
- badd +1 ~/Sites/theriverboat_v2/app/assets/javascripts/admin/users.js.coffee
218
- badd +1 ~/Sites/theriverboat_v2/app/helpers/application_helper.rb
219
- badd +1 ~/Sites/theriverboat_v2/app/controllers/contact_messages_controller.rb
220
- badd +1 ~/Sites/theriverboat_v2/app/controllers/application_controller.rb
221
- badd +1 ~/Sites/theriverboat_v2/app/controllers/concerns/recaptcha_verification.rb
222
- badd +1 ~/Sites/theriverboat_v2/app/controllers/event_bookings_controller.rb
223
- badd +1 ~/Sites/theriverboat_v2/app/views/event_bookings/new.html.haml
224
- badd +1 ~/Sites/theriverboat_v2/app/views/event_bookings/_form.html.haml
225
- badd +1 ~/Sites/theriverboat_v2/spec/helpers/payments_helper_spec.rb
226
- badd +1 ~/Sites/theriverboat_v2/spec/features/events_spec.rb
227
- badd +1 ~/Sites/theriverboat_v2/spec/features/tickets_spec.rb
228
- badd +1 ~/Sites/theriverboat_v2/spec/models/ticket_spec.rb
229
- badd +1 ~/Sites/theriverboat_v2/spec/models/users_spec.rb
230
- badd +1 ~/Sites/theriverboat_v2/spec/factories/tickets.rb
231
- badd +1 ~/Sites/theriverboat_v2/spec/factories/payments.rb
232
- badd +1 ~/Sites/theriverboat_v2/app/models/user.rb
233
- badd +1 ~/Sites/theriverboat_v2/spec/controllers/tickets_controller_spec.rb
234
- badd +1 ~/Sites/theriverboat_v2/spec/controllers/admin/tickets_controller_spec.rb
235
- badd +1 ~/Sites/theriverboat_v2/spec/features/users_spec.rb
236
- badd +1 ~/Sites/theriverboat_v2/app/controllers/admin/tickets_controller.rb
237
- badd +1 ~/Sites/theriverboat_v2/spec/features/twilio_spec.rb
238
- badd +1 ~/Sites/theriverboat_v2/app/controllers/twilio_controller.rb
239
- badd +1 ~/Sites/theriverboat_v2/config/routes.rb
240
- badd +1 ~/Sites/theriverboat_v2/spec/features/event_bookings_spec.rb
241
- badd +1 ~/Sites/theriverboat_v2/spec/spec_helper.rb
242
- badd +1 ~/.rvm/gems/ruby-2.1.0/gems/devise-3.2.4/lib/devise/test_helpers.rb
243
- badd +1 ~/Sites/theriverboat_v2/spec/support/features/devise_helpers.rb
244
- badd +1 ~/Sites/theriverboat_v2/spec/models/payment_spec.rb
245
- badd +1 ~/Sites/theriverboat_v2/app/models/admin/activity.rb
246
- badd +1 ~/Sites/theriverboat_v2/spec/factories/users.rb
247
- badd +1 ~/Sites/theriverboat_v2/spec/factories/events.rb
248
- badd +1 ~/Sites/theriverboat_v2/config/secrets.yml
249
- badd +1 ~/Sites/theriverboat_v2/config/initializers/stripe.rb
250
- badd +1 ~/Sites/theriverboat_v2/app/views/admin/events/_form.html.haml
251
- badd +1 ~/Sites/theriverboat_v2/app/assets/javascripts/application.js
252
- badd +1 ~/Sites/theriverboat_v2/app/assets/javascripts/admin/events.js.coffee
253
- badd +1 ~/Sites/theriverboat_v2/app/views/ticket_codes/_cocoon_table.html.haml
254
- badd +1 ~/Sites/theriverboat_v2/app/views/tickets/_ticket_code_fields.html.haml
255
- badd +1 ~/Sites/theriverboat_v2/app/views/payments/_card_storage_fields.html.haml
256
- badd +1 ~/Sites/theriverboat_v2/app/helpers/tickets_helper.rb
257
- badd +1 ~/Sites/theriverboat_v2/app/helpers/events_helper.rb
258
- badd +1 ~/Sites/theriverboat_v2/app/helpers/admin/users_helper.rb
259
- badd +1 ~/Sites/theriverboat_v2/app/helpers/refund_requests_helper.rb
260
- badd +1 ~/Sites/theriverboat_v2/app/models/ticket_code.rb
261
- badd +1 ~/Sites/theriverboat_v2/app/views/admin/tickets/_table_row.html.haml
262
- badd +1 ~/Sites/theriverboat_v2/app/models/event.rb
263
- badd +1 ~/Sites/theriverboat_v2/app/views/devise/passwords/new.html.haml
264
- badd +1 ~/Sites/theriverboat_v2/app/views/devise/sessions/new.html.haml
265
- badd +1 ~/Sites/theriverboat_v2/app/views/devise/passwords/edit.html.haml
266
- badd +1 ~/Sites/theriverboat_v2/test/fixtures/users.yml
267
- badd +1 ~/Sites/theriverboat_v2/spec/controllers/twilio_controller_spec.rb
268
- badd +1 ~/Sites/theriverboat_v2/spec/factories/event_bookings.rb
269
- badd +1 ~/Sites/theriverboat_v2/spec/factories/promo_codes.rb
270
- badd +1 ~/Sites/theriverboat_v2/app/views/admin/tickets/checkin.html.haml
271
- badd +1 ~/Sites/theriverboat_v2/app/mailers/base_mailer.rb
272
- badd +1 ~/Sites/theriverboat_v2/config/schedule.rb
273
- badd +1 ~/Sites/theriverboat_v2/config/environments/development.rb
274
- badd +1 ~/Sites/theriverboat_v2/app/models/site_configuration.rb
275
- badd +1 ~/Sites/theriverboat_v2/db/migrate/20140618143026_add_google_credentials_to_site_configurations.rb
276
- badd +1 ~/Sites/theriverboat_v2/app/controllers/site_configurations_controller.rb
277
- badd +1 ~/Sites/theriverboat_v2/app/controllers/admin/site_configurations_controller.rb
278
- badd +1 ~/Sites/theriverboat_v2/app/views/admin/activities/index.html.haml
279
- badd +1 ~/Sites/theriverboat_v2/app/views/admin/events/index.html.haml
280
- badd +1 ~/Sites/theriverboat_v2/app/views/shared/_date_range_filter.html.haml
281
- badd +1 ~/Sites/theriverboat_v2/app/assets/javascripts/daterangepicker.js
282
- badd +1 ~/Sites/theriverboat_v2/app/assets/javascripts/moment-duration-format.js
283
- badd +1 ~/Sites/theriverboat_v2/app/assets/stylesheets/daterangepicker-bs3.css
284
- badd +1 ~/Sites/theriverboat_v2/app/assets/stylesheets/application.css
285
- badd +1 ~/Sites/theriverboat_v2/app/controllers/admin/activities_controller.rb
286
- badd +1 ~/Sites/theriverboat_v2/spec/factories/photos.rb
287
- badd +1 ~/Sites/theriverboat_v2/Gemfile.lock
288
- badd +1 ~/Sites/theriverboat_v2/config/initializers/simple_form_fileinput.rb
289
- badd +1 ~/Sites/InquireTi/app_src/controllers/index.coffee
290
- badd +1 ~/Sites/InquireTitanium/app_src/controllers/index.coffee
291
- badd +1 ~/Sites/InquireTitanium/app_src/views/index.haml
292
- badd +1 ~/Sites/InquireTitanium/app_src/controllers/login.coffee
293
- badd +1 ~/Sites/InquireTitanium/app_src/views/login.haml
294
- badd +1 ~/Sites/InquireTitanium/app/views/index.xml
295
- badd +1 ~/dotfiles/tmuxinator/InquireTitanium.yml
296
- badd +1 ~/Sites/InquireTitanium/\[Vundle]\ Installer
297
- badd +1 ~/Sites/InquireTitanium/app/views/login.xml
298
- badd +1 ~/Sites/InquireTitanium/app/styles/app.tss
299
- badd +1 ~/Sites/InquireTitanium/app_src/styles/login.tss.coffee
300
- badd +1 ~/Sites/InquireTitanium/app/styles/login.tss.js
301
- badd +1 ~/Sites/InquireTitanium/app/styles/login.tss
302
- badd +1 ~/Sites/InquireTitanium/app/controllers/login.js
303
- badd +1 ~/Sites/InquireTitanium/app/controllers/index.js
304
- badd +1 ~/Sites/InquireTitanium/app_src/controllers/app.coffee
305
- badd +1 ~/Sites/InquireTitanium/app/controllers/app.js
306
- badd +1 ~/Sites/InquireTitanium/app/alloy.js
307
- badd +1 \'/Users/smit1625/Sites/InquireTitanium/app_src/migrations/201507190000000_users.coffee\'
308
- badd +1 \'/Users/smit1625/Sites/InquireTitanium/app_src/models/users.coffee\'
309
- badd +1 ~/Sites/InquireTitanium/app_src/models/users.coffee
310
- badd +1 ~/Sites/InquireTitanium/app_src/migrations/20150719000000_api_keys.coffee
311
- badd +1 \'/Users/smit1625/Sites/InquireTitanium/app_src/models/api_keys.coffee\'
312
- badd +1 ~/Sites/InquireTitanium/app_src/models/api_keys.coffee
313
- badd +1 \'/Users/smit1625/Sites/InquireTitanium/app_src/migrations/20150719172900_users.coffee\'
314
- badd +1 ~/Sites/InquireTitanium/app_src/migrations/20150719172900_users.coffee
315
- badd +1 \'/Users/smit1625/Sites/InquireTitanium/app_src/migrations/20150719000000_api_keys.coffee\'
316
- badd +1 ~/Sites/InquireTitanium/app/styles/index.tss
317
- badd +1 ~/Sites/InquireTitanium/app_src/styles/index.tss.coffee
318
- badd +1 ~/Sites/InquireTitanium/app/config.json
319
- badd +1 ~/Sites/InquireTitanium/app/README
320
- badd +1 \'/Users/smit1625/Sites/InquireTitanium/app/lib/cryptojs-sha1.js\'
321
- badd +1 \'/Users/smit1625/Sites/InquireTitanium/app/assets/components/cryptojs-base64.js\'
322
- badd +1 ~/Sites/InquireTitanium/app/assets/components/crypto-sha1.js
323
- badd +1 ~/Sites/InquireTitanium/app_src/models/questions.coffee
324
- badd +1 ~/Sites/InquireTi/app/alloy.js
325
- badd +1 ~/Sites/InquireTi/app_src/controllers/app.coffee
326
- badd +1 ~/Sites/InquireTi/app/styles/login.tss
327
- badd +1 ~/Sites/InquireTi/app_src/styles/login.tss.coffee
328
- badd +1 ~/Sites/InquireTi/app_src/controllers/login.coffee
329
- badd +1 ~/Sites/InquireTi/app_src/models/users.coffee
330
- badd +1 ~/Sites/InquireTitanium/tiapp.xml
331
- badd +1 ~/Sites/InquireTitanium/Resources/app.js
332
- badd +1 ~/Sites/InquireTi/app_src/models/api_keys.coffee
333
- badd +1 ~/Sites/InquireTi/app_src/styles/index.tss.coffee
334
- badd +1 ~/Sites/InquireTi/app_src/styles/app.tss.coffee
335
- badd +1 ~/Sites/InquireTi/app_src/views/index.haml
336
- badd +1 \'/Users/smit1625/Sites/InquireTi/app_src/views/questions.haml\'
337
- badd +1 ~/Sites/InquireTi/app_src/views/questions.haml
338
- badd +1 ~/Sites/InquireTi/app_src/controllers/questions.coffee
339
- badd +1 ~/Sites/InquireTi/app/views/questions.xml
340
- badd +1 \'/Users/smit1625/Sites/InquireTi/app_src/styles/questions.tss.coffee\'
341
- badd +1 ~/Sites/InquireTi/app_src/styles/questions.tss.coffee
342
- badd +1 ~/Sites/InquireTi/tiapp.xml
343
- badd +1 ~/Sites/InquireTi/app/styles/questions.tss
344
- badd +1 ~/Sites/InquireTi/app_src/views/account.haml
345
- badd +1 ~/Sites/InquireTi/app/styles/app.tss
346
- badd +1 \'/Users/smit1625/Sites/InquireTi/app_src/controllers/account.rb\'
347
- badd +1 ~/Sites/InquireTi/app_src/controllers/account.coffee
348
- badd +1 ~/Sites/InquireTi/app_src/controllers/home.coffee
349
- badd +1 ~/Sites/InquireTi/app_src/views/home.haml
350
- badd +1 ~/Sites/InquireTi/app_src/styles/home.tss.coffee
351
- badd +1 ~/Sites/InquireTi/app_src/views/people.haml
352
- badd +1 ~/Sites/InquireTi/app_src/controllers/people.coffee
353
- badd +1 ~/Sites/InquireTi/app_src/styles/people.tss.coffee
354
- badd +1 ~/Sites/InquireTi/\'
355
- badd +1 ~/Sites/InquireTi/app_src/models/influencers.coffee
356
- badd +1 ~/Sites/InquireTi/app_src/views/influencer.haml
357
- badd +1 ~/Sites/InquireTi/app_src/controllers/influencer.coffee
358
- badd +1 ~/Sites/InquireTi/app_src/views/answers.haml
359
- badd +1 ~/Sites/InquireTi/app_src/controllers/answers.coffee
360
- badd +1 ~/Sites/InquireTi/app_src/styles/influencer.tss.coffee
361
- badd +1 ~/Sites/InquireTi/app_src/controllers/ask.coffee
362
- badd +1 ~/Sites/InquireTi/app_src/views/ask.haml
363
- badd +1 ~/Sites/InquireTi/app_src/styles/ask.tss.coffee
364
- badd +1 ~/Sites/InquireTi/app_src/views/question.haml
365
- badd +1 ~/Sites/InquireTi/app_src/views/login.haml
366
- badd +1 ~/Sites/InquireTi/compile_config.yml
367
- badd +1 ~/Sites/InquireTi/app_src/views/registration.haml
368
- badd +1 ~/Sites/InquireTi/app_src/controllers/registration.coffee
369
- badd +1 ~/Sites/InquireTi/app_src/styles/registration.tss.coffee
370
- badd +1 ~/Sites/InquireTi/app_src/views/start.haml
371
- badd +1 ~/Sites/InquireTi/app_src/controllers/start.coffee
372
- badd +1 ~/Sites/InquireTi/\[Vundle]\ Installer
373
- badd +1 ~/Sites/InquireTi/app_src/models/questions.coffee
374
- badd +1 drillbit/tests/foo.js
375
- badd +1 ~/Sites/InquireTi/app/controllers/influencer.js
376
- badd +1 ~/Sites/InquireTi/app/controllers/people.js
377
- badd +1 ~/Sites/InquireTi/app_src/models/influencer_categories.coffee
378
- badd +1 ~/Sites/InquireTi/app_src/views/interests.haml
379
- badd +1 ~/Sites/InquireTi/app_src/controllers/interests.coffee
380
- badd +1 ~/Sites/InquireTi/app_src/controllers/explore.coffee
381
- badd +1 ~/Sites/InquireTi/app_src/styles/interests.tss.coffee
382
- badd +1 ~/Sites/InquireTi/app_src/views/explore.haml
383
- badd +1 ~/Sites/InquireTi/app_src/controllers/popular.coffee
384
- badd +1 ~/Sites/InquireTi/app/controllers/interests.js
385
- badd +1 ~/Sites/InquireTi/app/controllers/explore.js
386
- badd +1 ~/Sites/InquireTi/app_src/styles/explore.tss.coffee
387
- badd +1 \'/Users/smit1625/Sites/InquireTi/app_src/views/popular.haml\'
388
- badd +1 ~/Sites/InquireTi/app/controllers/app.js
389
- badd +1 ~/Sites/InquireTi/app_src/views/popular.haml
390
- badd +1 ~/Sites/InquireTi/app_src/views/interest.haml
391
- badd +1 ~/Sites/InquireTi/app_src/styles/interest.tss.coffee
392
- badd +1 ~/Sites/InquireTi/app_src/controllers/interest.coffee
393
- badd +1 ~/Sites/InquireTi/app/README
394
- badd +1 \'/Users/smit1625/Sites/InquireTi/app_src/lib/ui_components/content_switcher.coffee\'
395
- badd +1 ~/Sites/InquireTi/app_src/lib/ui_components/content_switcher.coffee
396
- badd +1 ~/Sites/InquireTi/app_src/lib/ui_components/control_bar.coffee
397
- badd +1 ~/Sites/InquireTi/app_src/lib/ui_components/interests_grid.coffee
398
- badd +1 ~/Sites/InquireTi/app_src/lib/view_helpers.coffee
399
- badd +1 ~/Sites/InquireTi/app_src/lib/api_helpers.coffee
400
- badd +1 ~/Sites/InquireTi/app_src/lib/user_auth.coffee
401
- badd +1 ~/Sites/InquireTi/app_src/lib/ui_components/photo_header.coffee
402
- badd +1 ~/Sites/InquireTi/app/lib/api_helpers.js
403
- badd +1 ~/Sites/InquireTi/app_src/lib/ui_components/question_row.coffee
404
- badd +1 ~/Sites/InquireTi/app_src/lib/ui_components/platinum_ui_component.coffee
405
- badd +1 ~/Sites/InquireTi/app/lib/ui_components/platinum_ui_component.js
406
- badd +1 ~/Sites/InquireTi/app_src/lib/ui_components/answerable_question_row.coffee
407
- badd +281 ~/Sites/polygallery/test/dummy/spec/features/events_spec.rb
408
- badd +6 ~/Sites/polygallery/app/controllers/concerns/polygallery/strong_params.rb
409
- badd +33 ~/Sites/polygallery/test/dummy/app/controllers/events_controller.rb
410
- badd +1 ~/Sites/polygallery/test/dummy/app/views/events/_form.html.haml
411
- badd +1 ~/Sites/polygallery/test/dummy/app/views/events/_simple_form.html.haml
412
- badd +1 ~/Sites/polygallery/lib/polygallery/view_helpers.rb
413
- badd +1 ~/Sites/polygallery/app/views/polygallery/galleries/_simple_fields_for.html.haml
414
- badd +1 ~/Sites/polygallery/app/views/polygallery/photos/_simple_fields_for.html.haml
415
- badd +1 ~/Sites/polygallery/test/dummy/app/assets/javascripts/home.js
416
- badd +1 ~/Sites/polygallery/test/dummy/app/assets/javascripts/events.js
417
- badd +1 ~/Sites/polygallery/test/dummy/app/assets/javascripts/bootstrap.min.js
418
- badd +1 ~/Sites/polygallery/test/dummy/app/assets/javascripts/application.js
419
- badd +37 ~/Sites/polygallery/app/models/concerns/polygallery/acts_as_polyphoto.rb
420
- badd +63 ~/Sites/polygallery/lib/polygallery/has_polygallery.rb
421
- badd +1 ~/Sites/polygallery/spec/lib/has_polygallery_spec.rb
422
- badd +34 ~/Sites/polygallery/test/dummy/spec/models/events_spec.rb
423
- badd +27 ~/Sites/polygallery/test/dummy/spec/spec_helper.rb
424
- badd +1 ~/Sites/polygallery/test/dummy/spec/factories/polygallery/photos.rb
425
- badd +6 ~/Sites/polygallery/lib/polygallery/factories/polygallery/photos.rb
426
- badd +34 ~/Sites/polygallery/test/dummy/spec/factories/events.rb
427
- badd +1 ~/Sites/polygallery/spec/spec_helper.rb
428
- badd +1 ~/Sites/polygallery/lib/polygallery/factories.rb
429
- badd +2 ~/Sites/polygallery/lib/polygallery/factories/polygallery/galleries.rb
430
- badd +57 ~/Sites/polygallery/lib/polygallery/capybara_helpers.rb
431
- badd +1 ~/Sites/polygallery/app/models/polygallery/gallery.rb
432
- badd +5 ~/Sites/polygallery/lib/polygallery/has_polyphotos.rb
433
- badd +8 ~/Sites/polygallery/test/dummy/spec/models/polygallery/galleries_spec.rb
434
- badd +1 ~/Sites/polygallery/test/dummy/spec/models/polygallery/photos_spec.rb
435
- badd +1 ~/Sites/polygallery/test/dummy/app/models/event.rb
436
- badd +3 ~/Sites/polygallery/lib/polygallery/version.rb
437
- badd +19 ~/Sites/polygallery/Gemfile
438
- badd +1 \'/Users/smit1625/Sites/polygallery/config/spring.rb\'
439
- badd +1 ~/Sites/polygallery/config/spring.rb
440
- badd +37 ~/Sites/polygallery/polygallery.gemspec
441
- badd +4 ~/Sites/polygallery/config/routes.rb
442
- badd +1 ~/Sites/polygallery/config/initializers/polygallery.rb
443
- badd +8 ~/Sites/polygallery/lib/polygallery/railtie.rb
444
- badd +5 ~/Sites/polygallery/lib/polygallery/glue.rb
445
- badd +9 ~/Sites/polygallery/lib/polygallery/engine.rb
446
- badd +6 ~/Sites/polygallery/db/migrate/20150701180557_create_polygalleries_if_necessary.rb
447
- badd +7 ~/Sites/polygallery/lib/polygallery.rb
448
- badd +12 ~/Sites/polygallery/lib/polygallery/paperclip_integration.rb
449
- badd +172 lib/sesh/cli.rb
450
- badd +18 lib/sesh/inferences.rb
451
- badd +13 lib/sesh/assets/sample.yml
452
- badd +47 lib/sesh/tmux_control.rb
453
- badd +15 lib/sesh/ssh_control.rb
454
- badd +1 lib/sesh.rb
455
- badd +32 sesh.gemspec
456
- badd +18 exe/return_to_sesh.applescript
457
- badd +1 \'/Users/smit1625/Sites/sesh/exe/return_to_sesh.applescript\'
458
- badd +1 exe/return_to_sesh
459
- badd +3 exe/sesh
460
- badd +4 Gemfile
461
- badd +1 ~/Sites/teacher-impact/app/assets/stylesheets/bootstrap-variables.scss
462
- badd +1 ~/Sites/teacher-impact/app/models/teacher_employment.rb
463
- badd +1 ~/Sites/teacher-impact/app/models/school_attendance.rb
464
- badd +1 \'/Users/mackinleysmith/Sites/teacher-impact/app/views/teacher_profiles/_awards_and_recognitions.html.haml\'
465
- badd +1 ~/Sites/teacher-impact/app/views/teacher_profiles/_awards_and_recognitions.html.haml
466
- badd +1 ~/Sites/teacher-impact/app/views/teacher_profiles/_comments.html.haml
467
- badd +1 ~/Sites/teacher-impact/app/views/teacher_profiles/_employment_history_form.html.haml
468
- badd +6 ~/Sites/teacher-impact/config/routes.rb
469
- badd +1 ~/Sites/teacher-impact/app/views/teacher_profiles/employment_history.html.haml
470
- badd +1 ~/Sites/teacher-impact/config/initializers/simple_form_bootstrap.rb
471
- badd +1 ~/Sites/teacher-impact/app/views/schools/_nested_fields.html.haml
472
- badd +85 ~/Sites/teacher-impact/Gemfile
473
- badd +1 ~/Sites/teacher-impact/app/models/school.rb
474
- badd +1 ~/Sites/teacher-impact/app/controllers/schools_controller.rb
475
- badd +1 ~/Sites/teacher-impact/app/assets/javascripts/schools.coffee
476
- badd +1 ~/Sites/teacher-impact/app/views/student_profiles/_school_attendance_fields.html.haml
477
- badd +1 ~/Sites/teacher-impact/db/schema.rb
478
- badd +4 ~/Sites/teacher-impact/app/views/teacher_profiles/_currently_teaching.html.haml
479
- badd +1 ~/Sites/teacher-impact/app/views/teacher_profiles/_employment_history.html.haml
480
- badd +1 ~/Sites/teacher-impact/app/views/teacher_profiles/_career_background.html.haml
481
- badd +1 ~/Sites/teacher-impact/app/views/teacher_profiles/_instructional_skills.html.haml
482
- badd +1 ~/Sites/teacher-impact/app/views/teacher_profiles/_teaching_philosophy.html.haml
483
- badd +21 ~/Sites/teacher-impact/app/views/schools/show.html.haml
484
- badd +1 ~/Sites/teacher-impact/app/views/students/_profile.html.haml
485
- badd +1 ~/Sites/teacher-impact/app/views/students/show.html.haml
486
- badd +1 ~/Sites/teacher-impact/app/views/student_profiles/_schools_attended.html.haml
487
- badd +1 ~/Sites/teacher-impact/app/views/student_profiles/_currently_attending.html.haml
488
- badd +1 ~/Sites/teacher-impact/app/controllers/student_parents_controller.rb
489
- badd +1 ~/Sites/teacher-impact/app/views/student_parents/show.html.haml
490
- badd +1 ~/Sites/teacher-impact/app/controllers/student_parent_profiles_controller.rb
491
- badd +1 ~/Sites/teacher-impact/app/controllers/concerns/student_parent_profile_fetching.rb
492
- badd +12 ~/Sites/teacher-impact/app/views/student_parents/_profile.html.haml
493
- badd +2 ~/Sites/teacher-impact/app/views/main/search.html.haml
494
- badd +1 ~/Sites/teacher-impact/db/migrate/20151005205719_create_instructional_skills.rb
495
- badd +1 ~/Sites/teacher-impact/app/controllers/concerns/student_profile_fetching.rb
496
- badd +1 ~/Sites/teacher-impact/db/migrate/20151005211627_create_teacher_skills.rb
497
- badd +1 ~/Sites/teacher-impact/app/models/teacher_skill.rb
498
- badd +1 ~/Sites/teacher-impact/app/models/instructional_skill.rb
499
- badd +1 ~/Sites/teacher-impact/db/migrate/20151005212541_create_endorsements.rb
500
- badd +7 ~/Sites/teacher-impact/app/views/student_parent_profiles/_form.html.haml
501
- badd +1 ~/Sites/teacher-impact/app/views/schools/_search_result.html.haml
502
- badd +1 ~/Sites/teacher-impact/app/views/users/_role_indicator.html.haml
503
- badd +1 ~/Sites/teacher-impact/app/views/users/_avatar.html.haml
504
- badd +1 ~/Sites/teacher-impact/app/views/schools/_avatar.html.haml
505
- badd +1 ~/Sites/teacher-impact/app/views/schools/_role_indicator.html.haml
506
- badd +1 ~/Sites/teacher-impact/app/views/admin/schools/_table_row.html.haml
507
- badd +1 ~/Sites/teacher-impact/app/views/admin/schools/_details_cell.html.haml
508
- badd +1 ~/Sites/teacher-impact/app/assets/javascripts/bootstrap-tagsinput.js
509
- badd +1 ~/Sites/teacher-impact/app/assets/javascripts/application.js
510
- badd +1 ~/Sites/teacher-impact/app/assets/javascripts/teacher_profiles.coffee
511
- badd +15 ~/Sites/teacher-impact/app/models/endorsement.rb
512
- badd +1 ~/Sites/teacher-impact/app/controllers/admin/users_controller.rb
513
- badd +1 ~/Sites/teacher-impact/app/controllers/user_profiles_controller.rb
514
- badd +17 ~/Sites/teacher-impact/spec/models/user_spec.rb
515
- badd +1 ~/Sites/teacher-impact/app/views/devise/registrations/new.html.haml
516
- badd +1 ~/Sites/teacher-impact/app/views/devise/registrations/edit.html.haml
517
- badd +19 ~/Sites/teacher-impact/app/views/admin/base/analytics.html.haml
518
- badd +28 ~/Sites/teacher-impact/app/controllers/admin/charts_controller.rb
519
- badd +27 \[Vundle]\ Installer
520
- badd +23 /private/var/folders/2s/84cdz1jx6w181h6gyy_mb9dr0000gp/T/nvim9QEUgO/1
521
- badd +23 /var/folders/2s/84cdz1jx6w181h6gyy_mb9dr0000gp/T/nvim9QEUgO/1
522
- argglobal
523
- silent! argdel *
524
- edit lib/sesh/version.rb
525
- set splitbelow splitright
526
- wincmd _ | wincmd |
527
- split
528
- 1wincmd k
529
- wincmd _ | wincmd |
530
- vsplit
531
- 1wincmd h
532
- wincmd _ | wincmd |
533
- split
534
- 1wincmd k
535
- wincmd w
536
- wincmd w
537
- wincmd _ | wincmd |
538
- split
539
- 1wincmd k
540
- wincmd w
541
- wincmd w
542
- wincmd _ | wincmd |
543
- vsplit
544
- wincmd _ | wincmd |
545
- vsplit
546
- 2wincmd h
547
- wincmd w
548
- wincmd w
549
- set nosplitbelow
550
- set nosplitright
551
- wincmd t
552
- set winheight=1 winwidth=1
553
- exe '1resize ' . ((&lines * 20 + 31) / 62)
554
- exe 'vert 1resize ' . ((&columns * 136 + 136) / 272)
555
- exe '2resize ' . ((&lines * 18 + 31) / 62)
556
- exe 'vert 2resize ' . ((&columns * 136 + 136) / 272)
557
- exe '3resize ' . ((&lines * 20 + 31) / 62)
558
- exe 'vert 3resize ' . ((&columns * 135 + 136) / 272)
559
- exe '4resize ' . ((&lines * 18 + 31) / 62)
560
- exe 'vert 4resize ' . ((&columns * 135 + 136) / 272)
561
- exe '5resize ' . ((&lines * 20 + 31) / 62)
562
- exe 'vert 5resize ' . ((&columns * 137 + 136) / 272)
563
- exe '6resize ' . ((&lines * 20 + 31) / 62)
564
- exe 'vert 6resize ' . ((&columns * 53 + 136) / 272)
565
- exe '7resize ' . ((&lines * 20 + 31) / 62)
566
- exe 'vert 7resize ' . ((&columns * 80 + 136) / 272)
567
- argglobal
568
- setlocal fdm=manual
569
- setlocal fde=0
570
- setlocal fmr={{{,}}}
571
- setlocal fdi=#
572
- setlocal fdl=0
573
- setlocal fml=1
574
- setlocal fdn=20
575
- setlocal fen
576
- silent! normal! zE
577
- let s:l = 2 - ((1 * winheight(0) + 10) / 20)
578
- if s:l < 1 | let s:l = 1 | endif
579
- exe s:l
580
- normal! zt
581
- 2
582
- normal! 016|
583
- wincmd w
584
- argglobal
585
- edit lib/sesh/tmux_control.rb
586
- setlocal fdm=manual
587
- setlocal fde=0
588
- setlocal fmr={{{,}}}
589
- setlocal fdi=#
590
- setlocal fdl=0
591
- setlocal fml=1
592
- setlocal fdn=20
593
- setlocal fen
594
- silent! normal! zE
595
- let s:l = 42 - ((14 * winheight(0) + 9) / 18)
596
- if s:l < 1 | let s:l = 1 | endif
597
- exe s:l
598
- normal! zt
599
- 42
600
- normal! 049|
601
- wincmd w
602
- argglobal
603
- edit lib/sesh/ssh_control.rb
604
- setlocal fdm=manual
605
- setlocal fde=0
606
- setlocal fmr={{{,}}}
607
- setlocal fdi=#
608
- setlocal fdl=0
609
- setlocal fml=1
610
- setlocal fdn=20
611
- setlocal fen
612
- silent! normal! zE
613
- let s:l = 38 - ((0 * winheight(0) + 10) / 20)
614
- if s:l < 1 | let s:l = 1 | endif
615
- exe s:l
616
- normal! zt
617
- 38
618
- normal! 036|
619
- wincmd w
620
- argglobal
621
- edit lib/sesh/inferences.rb
622
- setlocal fdm=manual
623
- setlocal fde=0
624
- setlocal fmr={{{,}}}
625
- setlocal fdi=#
626
- setlocal fdl=0
627
- setlocal fml=1
628
- setlocal fdn=20
629
- setlocal fen
630
- silent! normal! zE
631
- let s:l = 36 - ((34 * winheight(0) + 9) / 18)
632
- if s:l < 1 | let s:l = 1 | endif
633
- exe s:l
634
- normal! zt
635
- 36
636
- normal! 025|
637
- wincmd w
638
- argglobal
639
- edit lib/sesh.rb
640
- setlocal fdm=manual
641
- setlocal fde=0
642
- setlocal fmr={{{,}}}
643
- setlocal fdi=#
644
- setlocal fdl=0
645
- setlocal fml=1
646
- setlocal fdn=20
647
- setlocal fen
648
- silent! normal! zE
649
- let s:l = 39 - ((7 * winheight(0) + 10) / 20)
650
- if s:l < 1 | let s:l = 1 | endif
651
- exe s:l
652
- normal! zt
653
- 39
654
- normal! 023|
655
- wincmd w
656
- argglobal
657
- edit sesh.gemspec
658
- setlocal fdm=manual
659
- setlocal fde=0
660
- setlocal fmr={{{,}}}
661
- setlocal fdi=#
662
- setlocal fdl=0
663
- setlocal fml=1
664
- setlocal fdn=20
665
- setlocal fen
666
- silent! normal! zE
667
- let s:l = 23 - ((3 * winheight(0) + 10) / 20)
668
- if s:l < 1 | let s:l = 1 | endif
669
- exe s:l
670
- normal! zt
671
- 23
672
- normal! 0
673
- wincmd w
674
- argglobal
675
- edit lib/sesh/cli.rb
676
- setlocal fdm=manual
677
- setlocal fde=0
678
- setlocal fmr={{{,}}}
679
- setlocal fdi=#
680
- setlocal fdl=0
681
- setlocal fml=1
682
- setlocal fdn=20
683
- setlocal fen
684
- silent! normal! zE
685
- let s:l = 246 - ((0 * winheight(0) + 10) / 20)
686
- if s:l < 1 | let s:l = 1 | endif
687
- exe s:l
688
- normal! zt
689
- 246
690
- normal! 019|
691
- wincmd w
692
- 2wincmd w
693
- exe '1resize ' . ((&lines * 20 + 31) / 62)
694
- exe 'vert 1resize ' . ((&columns * 136 + 136) / 272)
695
- exe '2resize ' . ((&lines * 18 + 31) / 62)
696
- exe 'vert 2resize ' . ((&columns * 136 + 136) / 272)
697
- exe '3resize ' . ((&lines * 20 + 31) / 62)
698
- exe 'vert 3resize ' . ((&columns * 135 + 136) / 272)
699
- exe '4resize ' . ((&lines * 18 + 31) / 62)
700
- exe 'vert 4resize ' . ((&columns * 135 + 136) / 272)
701
- exe '5resize ' . ((&lines * 20 + 31) / 62)
702
- exe 'vert 5resize ' . ((&columns * 137 + 136) / 272)
703
- exe '6resize ' . ((&lines * 20 + 31) / 62)
704
- exe 'vert 6resize ' . ((&columns * 53 + 136) / 272)
705
- exe '7resize ' . ((&lines * 20 + 31) / 62)
706
- exe 'vert 7resize ' . ((&columns * 80 + 136) / 272)
707
- tabnext 1
708
- if exists('s:wipebuf') && getbufvar(s:wipebuf, '&buftype') isnot# 'terminal'
709
- silent exe 'bwipe ' . s:wipebuf
710
- endif
711
- unlet! s:wipebuf
712
- set winheight=1 winwidth=20 shortmess=filnxtToOc
713
- let s:sx = expand("<sfile>:p:r")."x.vim"
714
- if file_readable(s:sx)
715
- exe "source " . fnameescape(s:sx)
716
- endif
717
- let &so = s:so_save | let &siso = s:siso_save
718
- let g:this_session = v:this_session
719
- let g:this_obsession = v:this_session
720
- let g:this_obsession_status = 2
721
- doautoall SessionLoadPost
722
- unlet SessionLoad
723
- " vim: set ft=vim :