Saturday, March 19, 2022

Cloud Providers - There is a Difference

When you need tech support...

You definitely want a provider that responds to your technical questions.

Digital Ocean Support





This work is licensed under the Creative Commons Attribution 3.0 Unported License.

Saturday, February 19, 2022

Print Everything But Comments and Empty Lines

Here's a simple way to display every line except for comments and blank lines from a file like /etc/ssh/sshd_config:

Code


grep -v '^#' /etc/ssh/sshd_config | grep -v '^$'
    



This work is licensed under the Creative Commons Attribution 3.0 Unported License.

Wednesday, August 25, 2021

Fatal: Not possible to fast-forward, aborting


Ever tried to push your file changes to a git repository and get the failed to push some refs error?


Did you pull from the branch already to get the latest changes?

As in: Did something change on the remote or did you rewrite git history locally?

You might think, "Since I'm the only one making changes to the branch, why would I need to do a git pull?"

Maybe you’ve accepted some suggestions from code review? Those count as commits as well.

Or you clicked the button that pulls in master.

If so, your branch is no longer directly based off of the branch you're trying to merge it into.

You can rebase your branch on top of the destination branch (git rebase ) to rework the commits such that they will fast forward into it, or you can do a regular merge.

git push


Here's an example of a time when I tried to push my local index to a github repository:




When I say "git index" I'm talking about the files I changed, added and committed to my local git repository.

The changed files are in git's local staging area, also known as "the git index".

Same Error

I followed the instructions and did a git pull and then a git push again.

Same error.



The fix


Did you change your history locally?

As in: If you did a rebase or git commit --amend or similar locally your repo can get into a state like that. In this case, you need to force push.

Ends up I modified a file on github.com and when I saved it, it got "auto-merged"




git pull origin show-recent-tagged-pkg-versions --rebase might do the trick





This work is licensed under the Creative Commons Attribution 3.0 Unported License.

Tuesday, June 22, 2021

Create a Text File in Go

Here's a simple way to create a text file and write a line to it in Golang:

Example


	tempDir := t.TempDir()
	p := filepath.Join(tempDir, "Dockerfile")
	f, err := os.Create(p)
	if err != nil {
		t.Fatal(err)
	}
	defer f.Close()
	f.WriteString("FROM alpine:latest")
    


In this case, we created a Dockerfile in a temporary directory.

Notice how in Go we immediately handle error conditions and defer the closing of the file, which is handled automatically by Go.


This work is licensed under the Creative Commons Attribution 3.0 Unported License.

Monday, April 6, 2020

Why Ruby on Rails Apps are Complicated

Ruby syntax is easy. Just don't write "clever code" and it's simple.

The complexity comes about due to the fact that Ruby is a dynamic language.

This has implications not only in your application code, but also in the Ruby on Rails framework.

We'll consider a single framework issue in this blog post

Segmentation fault

I tried to run a single rspec test script in debug mode in RubyMine and got a segmentation fault.

The clue as to what the problem was was there, but hard to see at first.

Testing started at 8:42 AM ...
/bin/bash -c "env RBENV_VERSION=1.9.3-p551 /home/lex/.rbenv/libexec/rbenv exec ruby -Ilib -Ispec -rrspec/autorun /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/ruby-debug-ide-0.7.0/bin/rdebug-ide --key-value --disable-int-handler --evaluation-timeout 10 --evaluation-control --time-limit 100 --memory-limit 0 --rubymine-protocol-extensions --port 38933 --host 0.0.0.0 --dispatcher-port 44265 -- /home/lex/.rbenv/versions/1.9.3-p551/bin/rspec /home/lex/Clients/B/dev/b/spec/controllers/api/internal/v1/users_controller_spec.rb --require teamcity/spec/runner/formatter/teamcity/formatter --format 'Spec::Runner::Formatter::TeamcityFormatter' -c -fd"
Evaluation memory limit is ineffective in JRuby and MRI < 2.0
Fast Debugger (ruby-debug-ide 0.7.0, ruby-debug-base19x 0.11.32, file filtering is not supported) listens on 0.0.0.0:38933
boot.rb - Rails 3.2
/home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:251:in `block in require': iconv will be deprecated in the future, use String#encode instead.
/home/lex/.rvm/gems/ruby-2.3.3/gems/json-1.8.6/lib/json/ext/generator.so: [BUG] Segmentation fault
ruby 1.9.3p551 (2014-11-13 revision 48407) [x86_64-linux]

-- Control frame information -----------------------------------------------
c:0098 p:-11750312516778 s:0331 b:0331 l:000330 d:000330 TOP   
c:0097 p:---- s:0329 b:0329 l:000328 d:000328 CFUNC  :require
c:0096 p:0010 s:0325 b:0325 l:000317 d:000324 BLOCK  /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:251
c:0095 p:0071 s:0323 b:0323 l:000322 d:000322 METHOD /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:236
c:0094 p:0019 s:0318 b:0318 l:000317 d:000317 METHOD /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:251
c:0093 p:0025 s:0313 b:0313 l:000312 d:000312 CLASS  /home/lex/.rvm/gems/ruby-2.3.3/gems/json_pure-1.4.6/lib/json/ext.rb:8
c:0092 p:0011 s:0311 b:0311 l:000310 d:000310 CLASS  /home/lex/.rvm/gems/ruby-2.3.3/gems/json_pure-1.4.6/lib/json/ext.rb:6
c:0091 p:0021 s:0309 b:0309 l:000308 d:000308 TOP    /home/lex/.rvm/gems/ruby-2.3.3/gems/json_pure-1.4.6/lib/json/ext.rb:3
c:0090 p:---- s:0307 b:0307 l:000306 d:000306 FINISH
c:0089 p:---- s:0305 b:0305 l:000304 d:000304 CFUNC  :require
c:0088 p:0010 s:0301 b:0301 l:000293 d:000300 BLOCK  /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:251
c:0087 p:0071 s:0299 b:0299 l:000298 d:000298 METHOD /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:236
c:0086 p:0019 s:0294 b:0294 l:000293 d:000293 METHOD /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:251
c:0085 p:0027 s:0289 b:0289 l:000288 d:000288 CLASS  /home/lex/.rvm/gems/ruby-2.3.3/gems/json_pure-1.4.6/lib/json.rb:6
c:0084 p:0021 s:0287 b:0287 l:000286 d:000286 TOP    /home/lex/.rvm/gems/ruby-2.3.3/gems/json_pure-1.4.6/lib/json.rb:2
c:0083 p:---- s:0285 b:0285 l:000284 d:000284 FINISH
c:0082 p:---- s:0283 b:0283 l:000282 d:000282 CFUNC  :require
c:0081 p:0010 s:0279 b:0279 l:000271 d:000278 BLOCK  /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:251
c:0080 p:0071 s:0277 b:0277 l:000276 d:000276 METHOD /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:236
c:0079 p:0019 s:0272 b:0272 l:000271 d:000271 METHOD /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:251
c:0078 p:0013 s:0267 b:0267 l:000266 d:000266 TOP    /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/object/to_json.rb:3
c:0077 p:---- s:0265 b:0265 l:000264 d:000264 FINISH
c:0076 p:---- s:0263 b:0263 l:000262 d:000262 CFUNC  :require
c:0075 p:0010 s:0259 b:0259 l:000251 d:000258 BLOCK  /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:251
c:0074 p:0071 s:0257 b:0257 l:000256 d:000256 METHOD /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:236
c:0073 p:0019 s:0252 b:0252 l:000251 d:000251 METHOD /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:251
c:0072 p:0011 s:0247 b:0247 l:000246 d:000246 TOP    /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/json/encoding.rb:1
c:0071 p:---- s:0245 b:0245 l:000244 d:000244 FINISH
c:0070 p:---- s:0243 b:0243 l:000242 d:000242 CFUNC  :require
c:0069 p:0010 s:0239 b:0239 l:000231 d:000238 BLOCK  /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:251
c:0068 p:0071 s:0237 b:0237 l:000236 d:000236 METHOD /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:236
c:0067 p:0019 s:0232 b:0232 l:000231 d:000231 METHOD /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:251
c:0066 p:0023 s:0227 b:0227 l:000226 d:000226 TOP    /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/json.rb:2
c:0065 p:---- s:0225 b:0225 l:000224 d:000224 FINISH
c:0064 p:---- s:0223 b:0223 l:000222 d:000222 CFUNC  :require
c:0063 p:0010 s:0219 b:0219 l:000211 d:000218 BLOCK  /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:251
c:0062 p:0071 s:0217 b:0217 l:000216 d:000216 METHOD /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:236
c:0061 p:0019 s:0212 b:0212 l:000211 d:000211 METHOD /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:251
c:0060 p:0011 s:0207 b:0207 l:000206 d:000206 TOP    /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/metal/responder.rb:1
c:0059 p:---- s:0205 b:0205 l:000204 d:000204 FINISH
c:0058 p:0024 s:0203 b:0202 l:0010a8 d:000201 BLOCK  /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/metal/mime_responds.rb:13
c:0057 p:---- s:0200 b:0200 l:000199 d:000199 FINISH
c:0056 p:---- s:0198 b:0198 l:000197 d:000197 CFUNC  :class_eval
c:0055 p:0204 s:0195 b:0195 l:000194 d:000194 METHOD /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/concern.rb:121
c:0054 p:---- s:0191 b:0191 l:000190 d:000190 FINISH
c:0053 p:---- s:0189 b:0189 l:000188 d:000188 CFUNC  :include
c:0052 p:0012 s:0185 b:0185 l:000d68 d:0011b0 BLOCK  /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/base.rb:227
c:0051 p:---- s:0182 b:0182 l:000181 d:000181 FINISH
c:0050 p:---- s:0180 b:0180 l:000179 d:000179 CFUNC  :each
c:0049 p:0269 s:0177 b:0177 l:000d68 d:000d68 CLASS  /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/base.rb:226
c:0048 p:0017 s:0175 b:0175 l:000174 d:000174 CLASS  /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/base.rb:171
c:0047 p:0021 s:0173 b:0173 l:000172 d:000172 TOP    /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/base.rb:3
c:0046 p:---- s:0171 b:0171 l:000170 d:000170 FINISH
c:0045 p:0062 s:0169 b:0169 l:000168 d:000168 TOP    /home/lex/.rvm/gems/ruby-2.3.3/gems/recaptcha-0.4.0/lib/recaptcha/rails.rb:5
c:0044 p:---- s:0167 b:0167 l:000166 d:000166 FINISH
c:0043 p:---- s:0165 b:0165 l:000164 d:000164 CFUNC  :require
c:0042 p:0051 s:0161 b:0161 l:002450 d:000758 BLOCK  /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/runtime.rb:81
c:0041 p:---- s:0157 b:0157 l:000156 d:000156 FINISH
c:0040 p:---- s:0155 b:0155 l:000154 d:000154 CFUNC  :each
c:0039 p:0091 s:0152 b:0152 l:002450 d:000078 BLOCK  /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/runtime.rb:76
c:0038 p:---- s:0146 b:0146 l:000145 d:000145 FINISH
c:0037 p:---- s:0144 b:0144 l:000143 d:000143 CFUNC  :each
c:0036 p:0048 s:0141 b:0141 l:002450 d:002450 METHOD /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/runtime.rb:65
c:0035 p:0021 s:0137 b:0137 l:000136 d:000136 METHOD /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler.rb:114
c:0034 p:0089 s:0133 b:0133 l:000132 d:000132 TOP    /home/lex/Clients/B/dev/b/config/application.rb:7
c:0033 p:---- s:0131 b:0131 l:000130 d:000130 FINISH
c:0032 p:---- s:0129 b:0129 l:000128 d:000128 CFUNC  :require
c:0031 p:0036 s:0125 b:0125 l:000124 d:000124 METHOD /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/rubygems/custom_require.rb:36
c:0030 p:0026 s:0118 b:0118 l:000117 d:000117 TOP    /home/lex/Clients/B/dev/b/config/environment.rb:1
c:0029 p:---- s:0116 b:0116 l:000115 d:000115 FINISH
c:0028 p:---- s:0114 b:0114 l:000113 d:000113 CFUNC  :require
c:0027 p:0036 s:0110 b:0110 l:000109 d:000109 METHOD /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/rubygems/custom_require.rb:36
c:0026 p:0058 s:0103 b:0103 l:000102 d:000102 TOP    /home/lex/Clients/B/dev/b/spec/rails_helper.rb:3
c:0025 p:---- s:0101 b:0101 l:000100 d:000100 FINISH
c:0024 p:---- s:0099 b:0099 l:000098 d:000098 CFUNC  :require
c:0023 p:0036 s:0095 b:0095 l:000094 d:000094 METHOD /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/rubygems/custom_require.rb:36
c:0022 p:0023 s:0088 b:0088 l:000087 d:000087 TOP    /home/lex/Clients/B/dev/b/spec/controllers/api/internal/v1/users_controller_spec.rb:2
c:0021 p:---- s:0086 b:0086 l:000085 d:000085 FINISH
c:0020 p:---- s:0084 b:0084 l:000083 d:000083 CFUNC  :load
c:0019 p:0015 s:0080 b:0080 l:000079 d:000079 METHOD /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/configuration.rb:2076
c:0018 p:0035 s:0072 b:0072 l:001ec8 d:0014f8 BLOCK  /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/configuration.rb:1583
c:0017 p:---- s:0068 b:0068 l:000067 d:000067 FINISH
c:0016 p:---- s:0066 b:0066 l:000065 d:000065 CFUNC  :each
c:0015 p:0045 s:0063 b:0063 l:001ec8 d:001ec8 METHOD /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/configuration.rb:1581
c:0014 p:0068 s:0060 b:0060 l:000059 d:000059 METHOD /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/runner.rb:102
c:0013 p:0015 s:0055 b:0055 l:000054 d:000054 METHOD /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/runner.rb:86
c:0012 p:0104 s:0050 b:0050 l:000049 d:000049 METHOD /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/runner.rb:71
c:0011 p:0032 s:0043 b:0043 l:000042 d:000042 METHOD /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/runner.rb:45
c:0010 p:0031 s:0039 b:0039 l:000038 d:000038 TOP    /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/exe/rspec:4
c:0009 p:---- s:0037 b:0037 l:000036 d:000036 FINISH
c:0008 p:---- s:0035 b:0035 l:000034 d:000034 CFUNC  :load
c:0007 p:0158 s:0031 b:0031 l:000030 d:000030 TOP    /home/lex/.rbenv/versions/1.9.3-p551/bin/rspec:23
c:0006 p:---- s:0027 b:0027 l:000026 d:000026 FINISH
c:0005 p:---- s:0025 b:0025 l:000024 d:000024 CFUNC  :debug_load
c:0004 p:0067 s:0019 b:0019 l:000018 d:000018 METHOD /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/ruby-debug-ide-0.7.0/lib/ruby-debug-ide.rb:100
c:0003 p:1271 s:0013 b:0013 l:002358 d:001530 EVAL   /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/ruby-debug-ide-0.7.0/bin/rdebug-ide:187
c:0002 p:---- s:0004 b:0004 l:000003 d:000003 FINISH
c:0001 p:0000 s:0002 b:0002 l:002358 d:002358 TOP   

-- Ruby level backtrace information ----------------------------------------
/home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/ruby-debug-ide-0.7.0/bin/rdebug-ide:187:in `
' /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/ruby-debug-ide-0.7.0/lib/ruby-debug-ide.rb:100:in `debug_program' /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/ruby-debug-ide-0.7.0/lib/ruby-debug-ide.rb:100:in `debug_load' /home/lex/.rbenv/versions/1.9.3-p551/bin/rspec:23:in `' /home/lex/.rbenv/versions/1.9.3-p551/bin/rspec:23:in `load' /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/exe/rspec:4:in `' /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/runner.rb:45:in `invoke' /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/runner.rb:71:in `run' /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/runner.rb:86:in `run' /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/runner.rb:102:in `setup' /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/configuration.rb:1581:in `load_spec_files' /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/configuration.rb:1581:in `each' /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/configuration.rb:1583:in `block in load_spec_files' /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/configuration.rb:2076:in `load_file_handling_errors' /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/configuration.rb:2076:in `load' /home/lex/Clients/B/dev/b/spec/controllers/api/internal/v1/users_controller_spec.rb:2:in `' /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/rubygems/custom_require.rb:36:in `require' /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/rubygems/custom_require.rb:36:in `require' /home/lex/Clients/B/dev/b/spec/rails_helper.rb:3:in `' /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/rubygems/custom_require.rb:36:in `require' /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/rubygems/custom_require.rb:36:in `require' /home/lex/Clients/B/dev/b/config/environment.rb:1:in `' /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/rubygems/custom_require.rb:36:in `require' /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/rubygems/custom_require.rb:36:in `require' /home/lex/Clients/B/dev/b/config/application.rb:7:in `' /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler.rb:114:in `require' /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/runtime.rb:65:in `require' /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/runtime.rb:65:in `each' /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/runtime.rb:76:in `block in require' /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/runtime.rb:76:in `each' /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/runtime.rb:81:in `block (2 levels) in require' /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/runtime.rb:81:in `require' /home/lex/.rvm/gems/ruby-2.3.3/gems/recaptcha-0.4.0/lib/recaptcha/rails.rb:5:in `' /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/base.rb:3:in `' /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/base.rb:171:in `' /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/base.rb:226:in `' /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/base.rb:226:in `each' /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/base.rb:227:in `block in ' /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/base.rb:227:in `include' /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/concern.rb:121:in `append_features' /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/concern.rb:121:in `class_eval' /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/metal/mime_responds.rb:13:in `block in ' /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/metal/responder.rb:1:in `' /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:251:in `require' /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:236:in `load_dependency' /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:251:in `block in require' /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:251:in `require' /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/json.rb:2:in `' /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:251:in `require' /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:236:in `load_dependency' /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:251:in `block in require' /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:251:in `require' /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/json/encoding.rb:1:in `' /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:251:in `require' /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:236:in `load_dependency' /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:251:in `block in require' /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:251:in `require' /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/object/to_json.rb:3:in `' /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:251:in `require' /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:236:in `load_dependency' /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:251:in `block in require' /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:251:in `require' /home/lex/.rvm/gems/ruby-2.3.3/gems/json_pure-1.4.6/lib/json.rb:2:in `' /home/lex/.rvm/gems/ruby-2.3.3/gems/json_pure-1.4.6/lib/json.rb:6:in `' /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:251:in `require' /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:236:in `load_dependency' /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:251:in `block in require' /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:251:in `require' /home/lex/.rvm/gems/ruby-2.3.3/gems/json_pure-1.4.6/lib/json/ext.rb:3:in `' /home/lex/.rvm/gems/ruby-2.3.3/gems/json_pure-1.4.6/lib/json/ext.rb:6:in `' /home/lex/.rvm/gems/ruby-2.3.3/gems/json_pure-1.4.6/lib/json/ext.rb:8:in `' /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:251:in `require' /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:236:in `load_dependency' /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:251:in `block in require' /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb:251:in `require' -- C level backtrace information ------------------------------------------- ruby(+0x1500bb) [0x557ea7a730bb] ruby(+0x1aa883) [0x557ea7acd883] ruby(rb_bug+0xbd) [0x557ea7acf0cd] ruby(+0xd7990) [0x557ea79fa990] /lib/x86_64-linux-gnu/libpthread.so.0(+0x12890) [0x7fa607593890] /home/lex/.rvm/rubies/ruby-2.3.3/lib/libruby.so.2.3(rb_wb_protected_newobj_of+0xa) [0x7fa5fe49f49a] ../sysdeps/x86_64/strcmp.S:473 /home/lex/.rvm/rubies/ruby-2.3.3/lib/libruby.so.2.3(rb_str_new_static+0x2f) [0x7fa5fe56916f] ../sysdeps/x86_64/multiarch/memcpy-ssse3-back.S:2337 /home/lex/.rvm/gems/ruby-2.3.3/gems/json-1.8.6/lib/json/ext/generator.so(Init_generator+0x924) [0x7fa5fd769254] generator.c:1486 ruby(dln_load+0xd6) [0x557ea7aedb96] ruby(+0x14e71e) [0x557ea7a7171e] ruby(rb_require_safe+0x3de) [0x557ea7ad520e] ruby(+0x14b0d0) [0x557ea7a6e0d0] ruby(+0x1426db) [0x557ea7a656db] ruby(+0x1457a2) [0x557ea7a687a2] ruby(rb_iseq_eval+0x212) [0x557ea7a70f62] ruby(+0x1b0db2) [0x557ea7ad3db2] ruby(rb_require_safe+0x51a) [0x557ea7ad534a] ruby(+0x14b0d0) [0x557ea7a6e0d0] ruby(+0x1426db) [0x557ea7a656db] ruby(+0x1457a2) [0x557ea7a687a2] ruby(rb_iseq_eval+0x212) [0x557ea7a70f62] ruby(+0x1b0db2) [0x557ea7ad3db2] ruby(rb_require_safe+0x51a) [0x557ea7ad534a] ruby(+0x14b0d0) [0x557ea7a6e0d0] ruby(+0x1426db) [0x557ea7a656db] ruby(+0x1457a2) [0x557ea7a687a2] ruby(rb_iseq_eval+0x212) [0x557ea7a70f62] ruby(+0x1b0db2) [0x557ea7ad3db2] ruby(rb_require_safe+0x51a) [0x557ea7ad534a] ruby(+0x14b0d0) [0x557ea7a6e0d0] ruby(+0x1426db) [0x557ea7a656db] ruby(+0x1457a2) [0x557ea7a687a2] ruby(rb_iseq_eval+0x212) [0x557ea7a70f62] ruby(+0x1b0db2) [0x557ea7ad3db2] ruby(rb_require_safe+0x51a) [0x557ea7ad534a] ruby(+0x14b0d0) [0x557ea7a6e0d0] ruby(+0x1426db) [0x557ea7a656db] ruby(+0x1457a2) [0x557ea7a687a2] ruby(rb_iseq_eval+0x212) [0x557ea7a70f62] ruby(+0x1b0db2) [0x557ea7ad3db2] ruby(rb_require_safe+0x51a) [0x557ea7ad534a] ruby(+0x14b0d0) [0x557ea7a6e0d0] ruby(+0x1426db) [0x557ea7a656db] ruby(+0x1457a2) [0x557ea7a687a2] ruby(rb_iseq_eval+0x212) [0x557ea7a70f62] ruby(+0x1b0db2) [0x557ea7ad3db2] ruby(rb_require_safe+0x51a) [0x557ea7ad534a] ruby(rb_autoload_load+0x15e) [0x557ea7a446ae] ruby(+0x1220e9) [0x557ea7a450e9] ruby(+0x1418c7) [0x557ea7a648c7] ruby(+0x1457a2) [0x557ea7a687a2] ruby(+0x145d48) [0x557ea7a68d48] ruby(+0x14d09e) [0x557ea7a7009e] ruby(rb_mod_module_eval+0x45) [0x557ea7a70475] ruby(+0x14b0d0) [0x557ea7a6e0d0] ruby(+0x140d67) [0x557ea7a63d67] ruby(+0x1457a2) [0x557ea7a687a2] ruby(+0x146ab1) [0x557ea7a69ab1] ruby(rb_funcall+0xc1) [0x557ea7a6a501] ruby(+0x1e502) [0x557ea7941502] ruby(+0x14b0d0) [0x557ea7a6e0d0] ruby(+0x140d67) [0x557ea7a63d67] ruby(+0x1457a2) [0x557ea7a687a2] ruby(+0x145d48) [0x557ea7a68d48] ruby(rb_yield+0x47) [0x557ea7a707c7] ruby(rb_ary_each+0x52) [0x557ea7a8ffb2] ruby(+0x14b0d0) [0x557ea7a6e0d0] ruby(+0x140d67) [0x557ea7a63d67] ruby(+0x1457a2) [0x557ea7a687a2] ruby(rb_iseq_eval+0x212) [0x557ea7a70f62] ruby(+0x1b0db2) [0x557ea7ad3db2] ruby(rb_require_safe+0x51a) [0x557ea7ad534a] ruby(rb_autoload_load+0x15e) [0x557ea7a446ae] ruby(+0x1220e9) [0x557ea7a450e9] ruby(+0x1418c7) [0x557ea7a648c7] ruby(+0x1457a2) [0x557ea7a687a2] ruby(rb_iseq_eval+0x212) [0x557ea7a70f62] ruby(+0x1b0db2) [0x557ea7ad3db2] ruby(rb_require_safe+0x51a) [0x557ea7ad534a] ruby(+0x14b0d0) [0x557ea7a6e0d0] ruby(+0x140d67) [0x557ea7a63d67] ruby(+0x1457a2) [0x557ea7a687a2] ruby(+0x145d48) [0x557ea7a68d48] ruby(rb_yield+0x47) [0x557ea7a707c7] ruby(rb_ary_each+0x52) [0x557ea7a8ffb2] ruby(+0x14b0d0) [0x557ea7a6e0d0] ruby(+0x140d67) [0x557ea7a63d67] ruby(+0x1457a2) [0x557ea7a687a2] ruby(+0x145d48) [0x557ea7a68d48] ruby(rb_yield+0x47) [0x557ea7a707c7] ruby(rb_ary_each+0x52) [0x557ea7a8ffb2] ruby(+0x14b0d0) [0x557ea7a6e0d0] ruby(+0x140d67) [0x557ea7a63d67] ruby(+0x1457a2) [0x557ea7a687a2] ruby(rb_iseq_eval+0x212) [0x557ea7a70f62] ruby(+0x1b0db2) [0x557ea7ad3db2] ruby(rb_require_safe+0x51a) [0x557ea7ad534a] ruby(+0x14b0d0) [0x557ea7a6e0d0] ruby(+0x140d67) [0x557ea7a63d67] ruby(+0x1457a2) [0x557ea7a687a2] ruby(rb_iseq_eval+0x212) [0x557ea7a70f62] ruby(+0x1b0db2) [0x557ea7ad3db2] ruby(rb_require_safe+0x51a) [0x557ea7ad534a] ruby(+0x14b0d0) [0x557ea7a6e0d0] ruby(+0x140d67) [0x557ea7a63d67] ruby(+0x1457a2) [0x557ea7a687a2] ruby(rb_iseq_eval+0x212) [0x557ea7a70f62] ruby(+0x1b0db2) [0x557ea7ad3db2] ruby(rb_require_safe+0x51a) [0x557ea7ad534a] ruby(+0x14b0d0) [0x557ea7a6e0d0] ruby(+0x140d67) [0x557ea7a63d67] ruby(+0x1457a2) [0x557ea7a687a2] ruby(rb_iseq_eval+0x212) [0x557ea7a70f62] ruby(+0x1b0db2) [0x557ea7ad3db2] ruby(+0x1b105d) [0x557ea7ad405d] ruby(+0x14b0d0) [0x557ea7a6e0d0] ruby(+0x140d67) [0x557ea7a63d67] ruby(+0x1457a2) [0x557ea7a687a2] ruby(+0x145d48) [0x557ea7a68d48] ruby(rb_yield+0x47) [0x557ea7a707c7] ruby(rb_ary_each+0x52) [0x557ea7a8ffb2] ruby(+0x14b0d0) [0x557ea7a6e0d0] ruby(+0x140d67) [0x557ea7a63d67] ruby(+0x1457a2) [0x557ea7a687a2] ruby(rb_iseq_eval+0x212) [0x557ea7a70f62] ruby(+0x1b0db2) [0x557ea7ad3db2] ruby(+0x1b105d) [0x557ea7ad405d] ruby(+0x14b0d0) [0x557ea7a6e0d0] ruby(+0x140d67) [0x557ea7a63d67] ruby(+0x1457a2) [0x557ea7a687a2] ruby(rb_iseq_eval+0x212) [0x557ea7a70f62] ruby(+0x1b0db2) [0x557ea7ad3db2] ruby(rb_load_protect+0xdb) [0x557ea7ad4e1b] /home/lex/.rvm/gems/ruby-2.3.3/gems/ruby-debug-base19x-0.11.32/lib/ruby_debug.so(+0x5cb3) [0x7fa60519ccb3] ../fbuffer/fbuffer.h:106 ruby(+0x14b0d0) [0x557ea7a6e0d0] ruby(+0x140d67) [0x557ea7a63d67] ruby(+0x1457a2) [0x557ea7a687a2] ruby(rb_iseq_eval_main+0x2b8) [0x557ea7a71288] ruby(+0x1df3a) [0x557ea7940f3a] ruby(ruby_run_node+0x3b) [0x557ea794392b] ruby(+0x1da8b) [0x557ea7940a8b] /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xe7) [0x7fa6067cfb97] ../csu/libc-start.c:310 ruby(_start+0x2a) [0x557ea7940ada] -- Other runtime information ----------------------------------------------- * Loaded script: /home/lex/.rbenv/versions/1.9.3-p551/bin/rspec * Loaded features: 0 enumerator.so 1 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/enc/encdb.so 2 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/enc/trans/transdb.so 3 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/rubygems/defaults.rb 4 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/rbconfig.rb 5 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/rubygems/deprecate.rb 6 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/rubygems/exceptions.rb 7 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/rubygems/custom_require.rb 8 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/rubygems.rb 9 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/rubygems/version.rb 10 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/rubygems/requirement.rb 11 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/rubygems/platform.rb 12 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/rubygems/specification.rb 13 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/rubygems/path_support.rb 14 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/rubygems/dependency.rb 15 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-support-3.9.2/lib/rspec/support/version.rb 16 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-support-3.9.2/lib/rspec/support/comparable_version.rb 17 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-support-3.9.2/lib/rspec/support/ruby_features.rb 18 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-support-3.9.2/lib/rspec/support.rb 19 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-support-3.9.2/lib/rspec/support/caller_filter.rb 20 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/version.rb 21 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-support-3.9.2/lib/rspec/support/warnings.rb 22 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/warnings.rb 23 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/set.rb 24 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/flat_map.rb 25 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/filter_manager.rb 26 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/dsl.rb 27 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/formatters/console_codes.rb 28 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/formatters/snippet_extractor.rb 29 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/formatters/syntax_highlighter.rb 30 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-support-3.9.2/lib/rspec/support/encoded_string.rb 31 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/formatters/exception_presenter.rb 32 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/shellwords.rb 33 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/shell_escape.rb 34 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/formatters/helpers.rb 35 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/notifications.rb 36 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/reporter.rb 37 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/hooks.rb 38 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-support-3.9.2/lib/rspec/support/reentrant_mutex.rb 39 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/memoized_helpers.rb 40 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/metadata.rb 41 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/metadata_filter.rb 42 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/pending.rb 43 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-support-3.9.2/lib/rspec/support/directory_maker.rb 44 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/formatters.rb 45 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/ordering.rb 46 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/world.rb 47 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/backtrace_formatter.rb 48 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/ruby_project.rb 49 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/formatters/deprecation_formatter.rb 50 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/output_wrapper.rb 51 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/configuration.rb 52 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/optparse.rb 53 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/option_parser.rb 54 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/strscan.so 55 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/erb.rb 56 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/configuration_options.rb 57 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/runner.rb 58 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/invocations.rb 59 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/example.rb 60 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/shared_example_group.rb 61 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-support-3.9.2/lib/rspec/support/recursive_const_methods.rb 62 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/example_group.rb 63 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core.rb 64 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/autorun.rb 65 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/ostruct.rb 66 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/prettyprint.rb 67 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/pp.rb 68 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/stringio.so 69 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/socket.so 70 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/socket.rb 71 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/thread.rb 72 /home/lex/.rvm/gems/ruby-2.3.3/gems/ruby-debug-base19x-0.11.32/lib/ruby_debug.so 73 /home/lex/.rvm/gems/ruby-2.3.3/gems/ruby-debug-base19x-0.11.32/lib/ruby-debug-base.rb 74 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/ruby-debug-ide-0.7.0/lib/ruby-debug-ide/version.rb 75 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/ruby-debug-ide-0.7.0/lib/ruby-debug-ide/interface.rb 76 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/ruby-debug-ide-0.7.0/lib/ruby-debug-ide/thread_alias.rb 77 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/ruby-debug-ide-0.7.0/lib/ruby-debug-ide/helper.rb 78 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/delegate.rb 79 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/ruby-debug-ide-0.7.0/lib/ruby-debug-ide/commands/file_filtering.rb 80 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/ruby-debug-ide-0.7.0/lib/ruby-debug-ide/commands/condition.rb 81 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/ruby-debug-ide-0.7.0/lib/ruby-debug-ide/commands/breakpoints.rb 82 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/ruby-debug-ide-0.7.0/lib/ruby-debug-ide/commands/variables.rb 83 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/ruby-debug-ide-0.7.0/lib/ruby-debug-ide/commands/stepping.rb 84 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/ruby-debug-ide-0.7.0/lib/ruby-debug-ide/commands/inspect.rb 85 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/ruby-debug-ide-0.7.0/lib/ruby-debug-ide/commands/threads.rb 86 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/ruby-debug-ide-0.7.0/lib/ruby-debug-ide/commands/enable.rb 87 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/ruby-debug-ide-0.7.0/lib/ruby-debug-ide/commands/load.rb 88 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/ruby-debug-ide-0.7.0/lib/ruby-debug-ide/commands/jump.rb 89 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/ruby-debug-ide-0.7.0/lib/ruby-debug-ide/commands/catchpoint.rb 90 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/ruby-debug-ide-0.7.0/lib/ruby-debug-ide/commands/eval.rb 91 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/e2mmap.rb 92 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/irb/output-method.rb 93 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/irb/notifier.rb 94 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/irb/slex.rb 95 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/irb/ruby-token.rb 96 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/irb/ruby-lex.rb 97 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/ruby-debug-ide-0.7.0/lib/ruby-debug-ide/commands/expression_info.rb 98 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/ruby-debug-ide-0.7.0/lib/ruby-debug-ide/commands/set_type.rb 99 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/ruby-debug-ide-0.7.0/lib/ruby-debug-ide/commands/control.rb 100 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/ruby-debug-ide-0.7.0/lib/ruby-debug-ide/commands/pause.rb 101 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/ruby-debug-ide-0.7.0/lib/ruby-debug-ide/commands/frame.rb 102 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/ruby-debug-ide-0.7.0/lib/ruby-debug-ide/command.rb 103 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/ruby-debug-ide-0.7.0/lib/ruby-debug-ide/ide_processor.rb 104 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/ruby-debug-ide-0.7.0/lib/ruby-debug-ide/greeter.rb 105 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/cgi/core.rb 106 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/cgi/cookie.rb 107 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/cgi/util.rb 108 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/cgi.rb 109 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/monitor.rb 110 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/ruby-debug-ide-0.7.0/lib/ruby-debug-ide/xml_printer.rb 111 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/ruby-debug-ide-0.7.0/lib/ruby-debug-ide/event_processor.rb 112 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/ruby-debug-ide-0.7.0/lib/ruby-debug-ide.rb 113 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/ruby-debug-ide-0.7.0/lib/ruby-debug-ide/multiprocess/pre_child.rb 114 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/ruby-debug-ide-0.7.0/lib/ruby-debug-ide/multiprocess.rb 115 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/formatters/base_formatter.rb 116 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-instafail-1.0.0/lib/rspec/instafail/rspec_3.rb 117 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-instafail-1.0.0/lib/rspec/instafail.rb 118 /home/lex/opt/RubyMine-2019.3.1/plugins/ruby/rb/testing/patch/bdd/teamcity/spec/runner/formatter/teamcity/formatter_initializer.rb 119 /home/lex/opt/RubyMine-2019.3.1/plugins/ruby/rb/testing/patch/common/teamcity/rakerunner_consts.rb 120 /home/lex/opt/RubyMine-2019.3.1/plugins/ruby/rb/testing/patch/common/teamcity/utils/logger_util.rb 121 /home/lex/opt/RubyMine-2019.3.1/plugins/ruby/rb/testing/patch/common/teamcity/rake_exceptions.rb 122 /home/lex/opt/RubyMine-2019.3.1/plugins/ruby/rb/testing/patch/common/teamcity/runner_common.rb 123 /home/lex/opt/RubyMine-2019.3.1/plugins/ruby/rb/testing/patch/common/teamcity/utils/service_message_factory.rb 124 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/etc.so 125 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/fileutils.rb 126 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/tmpdir.rb 127 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/tempfile.rb 128 /home/lex/opt/RubyMine-2019.3.1/plugins/ruby/rb/testing/patch/common/teamcity/utils/std_capture_helper.rb 129 /home/lex/opt/RubyMine-2019.3.1/plugins/ruby/rb/testing/patch/common/teamcity/utils/runner_utils.rb 130 /home/lex/opt/RubyMine-2019.3.1/plugins/ruby/rb/testing/patch/common/teamcity/utils/url_formatter.rb 131 /home/lex/opt/RubyMine-2019.3.1/plugins/ruby/rb/testing/patch/bdd/teamcity/spec/runner/formatter/teamcity/rspec3_formatter.rb 132 /home/lex/opt/RubyMine-2019.3.1/plugins/ruby/rb/testing/patch/bdd/teamcity/spec/runner/formatter/teamcity/formatter.rb 133 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/formatters/base_text_formatter.rb 134 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/formatters/documentation_formatter.rb 135 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-support-3.9.2/lib/rspec/support/matcher_definition.rb 136 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-support-3.9.2/lib/rspec/support/object_formatter.rb 137 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-expectations-3.9.1/lib/rspec/matchers/english_phrasing.rb 138 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-support-3.9.2/lib/rspec/support/fuzzy_matcher.rb 139 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-expectations-3.9.1/lib/rspec/matchers/composable.rb 140 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-expectations-3.9.1/lib/rspec/matchers/built_in/base_matcher.rb 141 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-expectations-3.9.1/lib/rspec/matchers/built_in.rb 142 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-expectations-3.9.1/lib/rspec/matchers/generated_descriptions.rb 143 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-expectations-3.9.1/lib/rspec/matchers/dsl.rb 144 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-expectations-3.9.1/lib/rspec/matchers/matcher_delegator.rb 145 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-expectations-3.9.1/lib/rspec/matchers/aliased_matcher.rb 146 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-expectations-3.9.1/lib/rspec/matchers/expecteds_for_multiple_diffs.rb 147 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-expectations-3.9.1/lib/rspec/matchers.rb 148 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-expectations-3.9.1/lib/rspec/expectations/expectation_target.rb 149 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-expectations-3.9.1/lib/rspec/expectations/syntax.rb 150 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-expectations-3.9.1/lib/rspec/expectations/configuration.rb 151 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-expectations-3.9.1/lib/rspec/expectations/fail_with.rb 152 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-expectations-3.9.1/lib/rspec/expectations/handler.rb 153 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-expectations-3.9.1/lib/rspec/expectations/version.rb 154 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-expectations-3.9.1/lib/rspec/expectations.rb 155 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-mocks-3.9.1/lib/rspec/mocks/instance_method_stasher.rb 156 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-mocks-3.9.1/lib/rspec/mocks/method_double.rb 157 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-mocks-3.9.1/lib/rspec/mocks/argument_matchers.rb 158 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-mocks-3.9.1/lib/rspec/mocks/object_reference.rb 159 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-mocks-3.9.1/lib/rspec/mocks/example_methods.rb 160 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-mocks-3.9.1/lib/rspec/mocks/proxy.rb 161 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-mocks-3.9.1/lib/rspec/mocks/test_double.rb 162 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-mocks-3.9.1/lib/rspec/mocks/argument_list_matcher.rb 163 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-support-3.9.2/lib/rspec/support/mutex.rb 164 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-mocks-3.9.1/lib/rspec/mocks/message_expectation.rb 165 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-mocks-3.9.1/lib/rspec/mocks/order_group.rb 166 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-mocks-3.9.1/lib/rspec/mocks/error_generator.rb 167 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-mocks-3.9.1/lib/rspec/mocks/space.rb 168 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-mocks-3.9.1/lib/rspec/mocks/mutate_const.rb 169 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-mocks-3.9.1/lib/rspec/mocks/targets.rb 170 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-mocks-3.9.1/lib/rspec/mocks/syntax.rb 171 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-mocks-3.9.1/lib/rspec/mocks/configuration.rb 172 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-support-3.9.2/lib/rspec/support/method_signature_verifier.rb 173 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-mocks-3.9.1/lib/rspec/mocks/verifying_message_expectation.rb 174 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-mocks-3.9.1/lib/rspec/mocks/method_reference.rb 175 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-mocks-3.9.1/lib/rspec/mocks/verifying_proxy.rb 176 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-mocks-3.9.1/lib/rspec/mocks/verifying_double.rb 177 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-mocks-3.9.1/lib/rspec/mocks/version.rb 178 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-mocks-3.9.1/lib/rspec/mocks.rb 179 /home/lex/.rvm/gems/ruby-2.3.3/gems/rspec-core-3.9.1/lib/rspec/core/mocking_adapters/rspec.rb 180 /home/lex/Clients/B/dev/b/spec/spec_helper.rb 181 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/version.rb 182 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/compatibility_guard.rb 183 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/pathname.so 184 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/pathname.rb 185 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/constants.rb 186 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/rubygems/config_file.rb 187 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/rubygems_integration.rb 188 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/current_ruby.rb 189 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/shared_helpers.rb 190 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/vendored_fileutils.rb 191 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/errors.rb 192 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/environment_preserver.rb 193 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/plugin/api.rb 194 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/plugin.rb 195 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/gem_helpers.rb 196 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/match_platform.rb 197 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/rubygems_ext.rb 198 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/build_metadata.rb 199 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler.rb 200 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/uri/common.rb 201 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/uri/generic.rb 202 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/uri/ftp.rb 203 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/uri/http.rb 204 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/uri/https.rb 205 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/uri/ldap.rb 206 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/uri/ldaps.rb 207 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/uri/mailto.rb 208 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/uri.rb 209 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/settings.rb 210 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/feature_flag.rb 211 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/source.rb 212 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/source/path.rb 213 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/source/git.rb 214 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/rubygems/user_interaction.rb 215 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/source/rubygems.rb 216 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/lockfile_parser.rb 217 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/set.rb 218 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/definition.rb 219 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/dependency.rb 220 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/ruby_dsl.rb 221 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/dsl.rb 222 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/source_list.rb 223 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/source/metadata.rb 224 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/uri_credentials_filter.rb 225 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/lazy_specification.rb 226 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/index.rb 227 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/tsort.rb 228 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/forwardable.rb 229 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/spec_set.rb 230 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/source/git/git_proxy.rb 231 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/digest.so 232 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/digest.rb 233 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/digest/sha1.so 234 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/vendor/molinillo/lib/molinillo/compatibility.rb 235 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/vendor/molinillo/lib/molinillo/gem_metadata.rb 236 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/vendor/molinillo/lib/molinillo/delegates/specification_provider.rb 237 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/vendor/molinillo/lib/molinillo/errors.rb 238 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/action.rb 239 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb 240 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_vertex.rb 241 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/delete_edge.rb 242 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb 243 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/set_payload.rb 244 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/tag.rb 245 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/log.rb 246 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb 247 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph.rb 248 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/vendor/molinillo/lib/molinillo/state.rb 249 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/vendor/molinillo/lib/molinillo/modules/specification_provider.rb 250 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/vendor/molinillo/lib/molinillo/delegates/resolution_state.rb 251 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/vendor/molinillo/lib/molinillo/resolution.rb 252 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/vendor/molinillo/lib/molinillo/resolver.rb 253 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/vendor/molinillo/lib/molinillo/modules/ui.rb 254 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/vendor/molinillo/lib/molinillo.rb 255 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/vendored_molinillo.rb 256 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/resolver/spec_group.rb 257 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/resolver.rb 258 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/source/gemspec.rb 259 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/runtime.rb 260 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/dep_proxy.rb 261 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/ui.rb 262 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/ui/silent.rb 263 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/ui/rg_proxy.rb 264 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/remote_specification.rb 265 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/endpoint_specification.rb 266 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/ruby_version.rb 267 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/rubygems/source_index.rb 268 /home/lex/.rvm/gems/ruby-2.3.3/gems/bundler-1.17.3/lib/bundler/setup.rb 269 /home/lex/Clients/B/dev/b/config/boot.rb 270 /home/lex/.rvm/gems/ruby-2.3.3/gems/railties-3.2.22.13/lib/rails/ruby_version_check.rb 271 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/openssl.so 272 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/openssl/bn.rb 273 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/openssl/cipher.rb 274 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/openssl/config.rb 275 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/openssl/digest.rb 276 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/openssl/buffering.rb 277 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/fcntl.so 278 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/openssl/ssl-internal.rb 279 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/openssl/x509-internal.rb 280 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/openssl.rb 281 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/securerandom.rb 282 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/inflector/inflections.rb 283 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/inflections.rb 284 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/inflector/methods.rb 285 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/lazy_load_hooks.rb 286 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies/autoload.rb 287 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/version.rb 288 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support.rb 289 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/kernel/reporting.rb 290 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/array/extract_options.rb 291 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/class/attribute_accessors.rb 292 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/notifications/fanout.rb 293 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/notifications.rb 294 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/array/wrap.rb 295 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/deprecation/behaviors.rb 296 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/deprecation/reporting.rb 297 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/module/deprecation.rb 298 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/module/aliasing.rb 299 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/deprecation/method_wrappers.rb 300 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/deprecation/proxy_wrappers.rb 301 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/deprecation.rb 302 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/logger.rb 303 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/logger.rb 304 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/hash/reverse_merge.rb 305 /home/lex/.rvm/gems/ruby-2.3.3/gems/railties-3.2.22.13/lib/rails/initializable.rb 306 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/psych/syntax_error.rb 307 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/psych.so 308 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/psych/nodes/node.rb 309 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/psych/nodes/stream.rb 310 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/psych/nodes/document.rb 311 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/psych/nodes/sequence.rb 312 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/psych/nodes/scalar.rb 313 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/psych/nodes/mapping.rb 314 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/psych/nodes/alias.rb 315 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/psych/nodes.rb 316 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/psych/streaming.rb 317 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/psych/visitors/visitor.rb 318 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/psych/scalar_scanner.rb 319 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/psych/visitors/to_ruby.rb 320 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/psych/visitors/emitter.rb 321 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/psych/visitors/yaml_tree.rb 322 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/psych/json/ruby_events.rb 323 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/psych/visitors/json_tree.rb 324 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/psych/visitors/depth_first.rb 325 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/psych/visitors.rb 326 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/psych/handler.rb 327 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/psych/tree_builder.rb 328 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/psych/parser.rb 329 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/psych/omap.rb 330 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/psych/set.rb 331 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/psych/coder.rb 332 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/psych/core_ext.rb 333 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/date_core.so 334 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/date/format.rb 335 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/date.rb 336 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/psych/deprecated.rb 337 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/psych/stream.rb 338 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/psych/json/yaml_events.rb 339 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/psych/json/tree_builder.rb 340 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/psych/json/stream.rb 341 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/psych/handlers/document_stream.rb 342 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/psych.rb 343 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/yaml.rb 344 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/ordered_hash.rb 345 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/ordered_options.rb 346 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/hash/deep_dup.rb 347 /home/lex/.rvm/gems/ruby-2.3.3/gems/railties-3.2.22.13/lib/rails/paths.rb 348 /home/lex/.rvm/gems/ruby-2.3.3/gems/railties-3.2.22.13/lib/rails/rack.rb 349 /home/lex/.rvm/gems/ruby-2.3.3/gems/railties-3.2.22.13/lib/rails/configuration.rb 350 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/module/attribute_accessors.rb 351 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/multibyte/utils.rb 352 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/multibyte.rb 353 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/string/multibyte.rb 354 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/hash/deep_merge.rb 355 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/hash/except.rb 356 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/hash/slice.rb 357 /home/lex/.rvm/gems/ruby-2.3.3/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/constants.rb 358 /home/lex/.rvm/gems/ruby-2.3.3/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/utility/engine.rb 359 /home/lex/.rvm/gems/ruby-2.3.3/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/synchronization/abstract_object.rb 360 /home/lex/.rvm/gems/ruby-2.3.3/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/utility/native_extension_loader.rb 361 /home/lex/.rvm/gems/ruby-2.3.3/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/synchronization/mri_object.rb 362 /home/lex/.rvm/gems/ruby-2.3.3/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/synchronization/jruby_object.rb 363 /home/lex/.rvm/gems/ruby-2.3.3/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/synchronization/rbx_object.rb 364 /home/lex/.rvm/gems/ruby-2.3.3/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/synchronization/truffleruby_object.rb 365 /home/lex/.rvm/gems/ruby-2.3.3/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/synchronization/object.rb 366 /home/lex/.rvm/gems/ruby-2.3.3/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/synchronization/volatile.rb 367 /home/lex/.rvm/gems/ruby-2.3.3/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/synchronization/abstract_lockable_object.rb 368 /home/lex/.rvm/gems/ruby-2.3.3/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/synchronization/mutex_lockable_object.rb 369 /home/lex/.rvm/gems/ruby-2.3.3/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/synchronization/jruby_lockable_object.rb 370 /home/lex/.rvm/gems/ruby-2.3.3/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/synchronization/rbx_lockable_object.rb 371 /home/lex/.rvm/gems/ruby-2.3.3/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/synchronization/lockable_object.rb 372 /home/lex/.rvm/gems/ruby-2.3.3/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/synchronization/condition.rb 373 /home/lex/.rvm/gems/ruby-2.3.3/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/synchronization/lock.rb 374 /home/lex/.rvm/gems/ruby-2.3.3/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/synchronization.rb 375 /home/lex/.rvm/gems/ruby-2.3.3/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/collection/map/non_concurrent_map_backend.rb 376 /home/lex/.rvm/gems/ruby-2.3.3/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/collection/map/mri_map_backend.rb 377 /home/lex/.rvm/gems/ruby-2.3.3/gems/concurrent-ruby-1.1.6/lib/concurrent-ruby/concurrent/map.rb 378 /home/lex/.rvm/gems/ruby-2.3.3/gems/i18n-0.9.5/lib/i18n/version.rb 379 /home/lex/.rvm/gems/ruby-2.3.3/gems/i18n-0.9.5/lib/i18n/exceptions.rb 380 /home/lex/.rvm/gems/ruby-2.3.3/gems/i18n-0.9.5/lib/i18n/interpolate/ruby.rb 381 /home/lex/.rvm/gems/ruby-2.3.3/gems/i18n-0.9.5/lib/i18n.rb 382 /home/lex/.rvm/gems/ruby-2.3.3/gems/i18n-0.9.5/lib/i18n/config.rb 383 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/i18n.rb 384 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/inflector/transliterate.rb 385 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/string/inflections.rb 386 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/inflector.rb 387 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/module/introspection.rb 388 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/module/delegation.rb 389 /home/lex/.rvm/gems/ruby-2.3.3/gems/railties-3.2.22.13/lib/rails/railtie.rb 390 /home/lex/.rvm/gems/ruby-2.3.3/gems/railties-3.2.22.13/lib/rails/engine/railties.rb 391 /home/lex/.rvm/gems/ruby-2.3.3/gems/railties-3.2.22.13/lib/rails/engine.rb 392 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/time.rb 393 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/base64.rb 394 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/base64.rb 395 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/string/encoding.rb 396 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/object/blank.rb 397 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/xml_mini/rexml.rb 398 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/xml_mini.rb 399 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/hash/keys.rb 400 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/array/conversions.rb 401 /home/lex/.rvm/gems/ruby-2.3.3/gems/railties-3.2.22.13/lib/rails/plugin.rb 402 /home/lex/.rvm/gems/ruby-2.3.3/gems/railties-3.2.22.13/lib/rails/application.rb 403 /home/lex/.rvm/gems/ruby-2.3.3/gems/railties-3.2.22.13/lib/rails/version.rb 404 /home/lex/.rvm/gems/ruby-2.3.3/gems/railties-3.2.22.13/lib/railslts.rb 405 /home/lex/.rvm/gems/ruby-2.3.3/gems/railslts-version-3.2.22.13/lib/railslts-version.rb 406 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/file_update_checker.rb 407 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/concern.rb 408 /home/lex/.rvm/gems/ruby-2.3.3/gems/railties-3.2.22.13/lib/rails/railtie/configurable.rb 409 /home/lex/.rvm/gems/ruby-2.3.3/gems/railties-3.2.22.13/lib/rails/railtie/configuration.rb 410 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/i18n_railtie.rb 411 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/railtie.rb 412 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_pack/version.rb 413 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_pack.rb 414 /home/lex/.rvm/gems/ruby-2.3.3/gems/activemodel-3.2.22.13/lib/active_model/version.rb 415 /home/lex/.rvm/gems/ruby-2.3.3/gems/activemodel-3.2.22.13/lib/active_model.rb 416 /home/lex/.rvm/gems/ruby-2.3.3/gems/rack-1.4.7/lib/rack.rb 417 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_dispatch.rb 418 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_dispatch/railtie.rb 419 /home/lex/.rvm/gems/ruby-2.3.3/gems/railties-3.2.22.13/lib/rails.rb 420 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/crud.rb 421 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/factory_methods.rb 422 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/expressions.rb 423 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/predications.rb 424 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/window_predications.rb 425 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/math.rb 426 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/alias_predication.rb 427 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/order_predications.rb 428 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/table.rb 429 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/attributes/attribute.rb 430 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/attributes.rb 431 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/compatibility/wheres.rb 432 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/relation.rb 433 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/expression.rb 434 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/visitors/visitor.rb 435 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/visitors/depth_first.rb 436 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/bigdecimal.so 437 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/visitors/to_sql.rb 438 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/visitors/sqlite.rb 439 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/visitors/postgresql.rb 440 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/visitors/mysql.rb 441 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/visitors/mssql.rb 442 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/visitors/oracle.rb 443 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/visitors/join_sql.rb 444 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/visitors/where_sql.rb 445 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/visitors/order_clauses.rb 446 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/visitors/dot.rb 447 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/visitors/ibm_db.rb 448 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/visitors/informix.rb 449 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/visitors.rb 450 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/tree_manager.rb 451 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/insert_manager.rb 452 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/select_manager.rb 453 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/update_manager.rb 454 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/delete_manager.rb 455 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/nodes/node.rb 456 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/nodes/select_statement.rb 457 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/nodes/select_core.rb 458 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/nodes/insert_statement.rb 459 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/nodes/update_statement.rb 460 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/nodes/terminal.rb 461 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/nodes/true.rb 462 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/nodes/false.rb 463 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/nodes/unary.rb 464 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/nodes/ascending.rb 465 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/nodes/descending.rb 466 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/nodes/unqualified_column.rb 467 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/nodes/with.rb 468 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/nodes/binary.rb 469 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/nodes/equality.rb 470 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/nodes/in.rb 471 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/nodes/join_source.rb 472 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/nodes/delete_statement.rb 473 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/nodes/table_alias.rb 474 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/nodes/infix_operation.rb 475 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/nodes/over.rb 476 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/nodes/and.rb 477 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/nodes/function.rb 478 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/nodes/count.rb 479 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/nodes/extract.rb 480 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/nodes/values.rb 481 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/nodes/named_function.rb 482 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/nodes/window.rb 483 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/nodes/inner_join.rb 484 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/nodes/outer_join.rb 485 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/nodes/string_join.rb 486 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/nodes/sql_literal.rb 487 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/nodes.rb 488 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/deprecated.rb 489 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/sql/engine.rb 490 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel/sql_literal.rb 491 /home/lex/.rvm/gems/ruby-2.3.3/gems/arel-3.0.3/lib/arel.rb 492 /home/lex/.rvm/gems/ruby-2.3.3/gems/activerecord-3.2.22.13/lib/active_record/arel_fixes.rb 493 /home/lex/.rvm/gems/ruby-2.3.3/gems/activerecord-3.2.22.13/lib/active_record/version.rb 494 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/enumerable.rb 495 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/kernel/singleton_class.rb 496 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/module/remove_method.rb 497 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/class/attribute.rb 498 /home/lex/.rvm/gems/ruby-2.3.3/gems/activemodel-3.2.22.13/lib/active_model/attribute_methods.rb 499 /home/lex/.rvm/gems/ruby-2.3.3/gems/activerecord-3.2.22.13/lib/active_record/attribute_methods.rb 500 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/bigdecimal/util.rb 501 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/benchmark.rb 502 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/benchmark.rb 503 /home/lex/.rvm/gems/ruby-2.3.3/gems/activerecord-3.2.22.13/lib/active_record/connection_adapters/schema_cache.rb 504 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/big_decimal/conversions.rb 505 /home/lex/.rvm/gems/ruby-2.3.3/gems/activerecord-3.2.22.13/lib/active_record/connection_adapters/abstract/quoting.rb 506 /home/lex/.rvm/gems/ruby-2.3.3/gems/activerecord-3.2.22.13/lib/active_record/connection_adapters/abstract/database_statements.rb 507 /home/lex/.rvm/gems/ruby-2.3.3/gems/activerecord-3.2.22.13/lib/active_record/connection_adapters/abstract/schema_statements.rb 508 /home/lex/.rvm/gems/ruby-2.3.3/gems/activerecord-3.2.22.13/lib/active_record/connection_adapters/abstract/database_limits.rb 509 /home/lex/.rvm/gems/ruby-2.3.3/gems/activerecord-3.2.22.13/lib/active_record/connection_adapters/abstract/query_cache.rb 510 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/descendants_tracker.rb 511 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/object/inclusion.rb 512 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/callbacks.rb 513 /home/lex/.rvm/gems/ruby-2.3.3/gems/activerecord-3.2.22.13/lib/active_record/connection_adapters/abstract_adapter.rb 514 /home/lex/.rvm/gems/ruby-2.3.3/gems/activerecord-3.2.22.13/lib/active_record/scoping.rb 515 /home/lex/.rvm/gems/ruby-2.3.3/gems/activerecord-3.2.22.13/lib/active_record.rb 516 /home/lex/.rvm/gems/ruby-2.3.3/gems/activemodel-3.2.22.13/lib/active_model/railtie.rb 517 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/basic_object.rb 518 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/object/acts_like.rb 519 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/duration.rb 520 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/object/try.rb 521 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/values/time_zone.rb 522 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/time_with_zone.rb 523 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/time/zones.rb 524 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/date/zones.rb 525 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/date/calculations.rb 526 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/time/publicize_conversion_methods.rb 527 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/time/conversions.rb 528 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/date_time/calculations.rb 529 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/date_time/conversions.rb 530 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/process/daemon.rb 531 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/time/calculations.rb 532 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/string/conversions.rb 533 /home/lex/.rvm/gems/ruby-2.3.3/gems/i18n-0.9.5/lib/i18n/core_ext/string/interpolate.rb 534 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/string/interpolation.rb 535 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/rexml/rexml.rb 536 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/rexml.rb 537 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/file/path.rb 538 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/module/method_names.rb 539 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/ruby/shim.rb 540 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/module/attr_internal.rb 541 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/module/anonymous.rb 542 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/abstract_controller.rb 543 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/string/output_safety.rb 544 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_view.rb 545 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/vendor/html-scanner.rb 546 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/load_error.rb 547 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/name_error.rb 548 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/uri.rb 549 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller.rb 550 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_view/railtie.rb 551 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/abstract_controller/railties/routes_helpers.rb 552 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/railties/paths.rb 553 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/railtie.rb 554 /home/lex/.rvm/gems/ruby-2.3.3/gems/activerecord-3.2.22.13/lib/active_record/railtie.rb 555 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionmailer-3.2.22.13/lib/action_mailer/version.rb 556 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/class/delegating_attributes.rb 557 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/module/reachable.rb 558 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/class/subclasses.rb 559 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/class.rb 560 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/array/uniq_by.rb 561 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionmailer-3.2.22.13/lib/action_mailer.rb 562 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionmailer-3.2.22.13/lib/action_mailer/railtie.rb 563 /home/lex/.rvm/gems/ruby-2.3.3/gems/activeresource-3.2.22.13/lib/active_resource/exceptions.rb 564 /home/lex/.rvm/gems/ruby-2.3.3/gems/activeresource-3.2.22.13/lib/active_resource/version.rb 565 /home/lex/.rvm/gems/ruby-2.3.3/gems/activeresource-3.2.22.13/lib/active_resource.rb 566 /home/lex/.rvm/gems/ruby-2.3.3/gems/activeresource-3.2.22.13/lib/active_resource/railtie.rb 567 /home/lex/.rvm/gems/ruby-2.3.3/gems/railties-3.2.22.13/lib/rails/test_unit/railtie.rb 568 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/sprockets/railtie.rb 569 /home/lex/.rvm/gems/ruby-2.3.3/gems/railties-3.2.22.13/lib/rails/all.rb 570 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/string_inquirer.rb 571 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/timeout.rb 572 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/net/protocol.rb 573 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/zlib.so 574 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/net/http.rb 575 /home/lex/.rvm/gems/ruby-2.3.3/gems/recaptcha-0.4.0/lib/recaptcha/configuration.rb 576 /home/lex/.rvm/gems/ruby-2.3.3/gems/recaptcha-0.4.0/lib/recaptcha/client_helper.rb 577 /home/lex/.rvm/gems/ruby-2.3.3/gems/recaptcha-0.4.0/lib/recaptcha/verify.rb 578 /home/lex/.rvm/gems/ruby-2.3.3/gems/recaptcha-0.4.0/lib/recaptcha.rb 579 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/log_subscriber.rb 580 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_view/log_subscriber.rb 581 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/benchmarkable.rb 582 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_view/helpers/active_model_helper.rb 583 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/file/atomic.rb 584 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/file.rb 585 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_view/helpers/capture_helper.rb 586 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_view/helpers/output_safety_helper.rb 587 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_view/helpers/tag_helper.rb 588 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_view/helpers/asset_tag_helpers/asset_include_tag.rb 589 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_view/helpers/asset_tag_helpers/javascript_tag_helpers.rb 590 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_view/helpers/asset_tag_helpers/stylesheet_tag_helpers.rb 591 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/metal/exceptions.rb 592 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_view/asset_paths.rb 593 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_view/helpers/asset_tag_helpers/asset_paths.rb 594 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_view/helpers/asset_tag_helper.rb 595 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_view/helpers/atom_feed_helper.rb 596 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_view/helpers/cache_helper.rb 597 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_view/helpers/controller_helper.rb 598 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/string/strip.rb 599 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_view/helpers/csrf_helper.rb 600 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/date/conversions.rb 601 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/option_merger.rb 602 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/object/with_options.rb 603 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_view/helpers/date_helper.rb 604 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_view/helpers/debug_helper.rb 605 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_view/helpers/javascript_helper.rb 606 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/array/access.rb 607 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/object/to_param.rb 608 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/regexp.rb 609 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_dispatch/routing/polymorphic_routes.rb 610 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_dispatch/routing.rb 611 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_dispatch/routing/url_for.rb 612 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_view/helpers/url_helper.rb 613 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/string/filters.rb 614 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_view/helpers/sanitize_helper.rb 615 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_view/helpers/text_helper.rb 616 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_view/helpers/form_tag_helper.rb 617 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_view/helpers/form_helper.rb 618 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_view/helpers/form_options_helper.rb 619 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/float/rounding.rb 620 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_view/helpers/number_helper.rb 621 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/module/synchronization.rb 622 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/module/qualified_const.rb 623 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/module.rb 624 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/record_identifier.rb 625 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_view/helpers/record_tag_helper.rb 626 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/hash_with_indifferent_access.rb 627 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/hash/indifferent_access.rb 628 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_view/helpers/rendering_helper.rb 629 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_view/helpers/translation_helper.rb 630 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_view/helpers.rb 631 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_view/context.rb 632 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_view/base.rb 633 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/log_subscriber.rb 634 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/string/starts_ends_with.rb 635 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/dependencies.rb 636 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_dispatch/middleware/stack.rb 637 /home/lex/.rvm/gems/ruby-2.3.3/gems/erubis-2.7.0/lib/erubis/util.rb 638 /home/lex/.rvm/gems/ruby-2.3.3/gems/erubis-2.7.0/lib/erubis/generator.rb 639 /home/lex/.rvm/gems/ruby-2.3.3/gems/erubis-2.7.0/lib/erubis/converter.rb 640 /home/lex/.rvm/gems/ruby-2.3.3/gems/erubis-2.7.0/lib/erubis/error.rb 641 /home/lex/.rvm/gems/ruby-2.3.3/gems/erubis-2.7.0/lib/erubis/context.rb 642 /home/lex/.rvm/gems/ruby-2.3.3/gems/erubis-2.7.0/lib/erubis/evaluator.rb 643 /home/lex/.rvm/gems/ruby-2.3.3/gems/erubis-2.7.0/lib/erubis/engine.rb 644 /home/lex/.rvm/gems/ruby-2.3.3/gems/erubis-2.7.0/lib/erubis/helper.rb 645 /home/lex/.rvm/gems/ruby-2.3.3/gems/erubis-2.7.0/lib/erubis/enhancer.rb 646 /home/lex/.rvm/gems/ruby-2.3.3/gems/erubis-2.7.0/lib/erubis/engine/eruby.rb 647 /home/lex/.rvm/gems/ruby-2.3.3/gems/erubis-2.7.0/lib/erubis/local-setting.rb 648 /home/lex/.rvm/gems/ruby-2.3.3/gems/erubis-2.7.0/lib/erubis.rb 649 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/configurable.rb 650 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/abstract_controller/base.rb 651 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/metal.rb 652 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/object/instance_variables.rb 653 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/abstract_controller/view_paths.rb 654 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/abstract_controller/rendering.rb 655 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/abstract_controller/layouts.rb 656 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/abstract_controller/translation.rb 657 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/abstract_controller/asset_paths.rb 658 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/abstract_controller/helpers.rb 659 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/metal/helpers.rb 660 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/metal/hide_actions.rb 661 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/abstract_controller/url_for.rb 662 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/metal/url_for.rb 663 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/abstract_controller/logger.rb 664 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/string/access.rb 665 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_dispatch/http/headers.rb 666 /home/lex/.rvm/gems/ruby-2.3.3/gems/rack-1.4.7/lib/rack/multipart.rb 667 /home/lex/.rvm/gems/ruby-2.3.3/gems/rack-1.4.7/lib/rack/utils.rb 668 /home/lex/.rvm/gems/ruby-2.3.3/gems/rack-1.4.7/lib/rack/request.rb 669 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_dispatch/http/cache.rb 670 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_dispatch/http/mime_negotiation.rb 671 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_dispatch/http/parameters.rb 672 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/object/duplicable.rb 673 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_dispatch/http/filter_parameters.rb 674 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_dispatch/http/upload.rb 675 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_dispatch/http/url.rb 676 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_dispatch/http/request.rb 677 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/digest/md5.so 678 /home/lex/.rvm/gems/ruby-2.3.3/gems/rack-1.4.7/lib/rack/response.rb 679 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_dispatch/http/response.rb 680 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/metal/rack_delegation.rb 681 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/metal/redirecting.rb 682 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/metal/rendering.rb 683 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/metal/renderers.rb 684 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/metal/head.rb 685 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/metal/conditional_get.rb 686 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/abstract_controller/callbacks.rb 687 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/caching/pages.rb 688 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/caching/actions.rb 689 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/caching/fragments.rb 690 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/singleton.rb 691 /home/lex/.rvm/gems/ruby-2.3.3/gems/activemodel-3.2.22.13/lib/active_model/observer_array.rb 692 /home/lex/.rvm/gems/ruby-2.3.3/gems/activemodel-3.2.22.13/lib/active_model/observing.rb 693 /home/lex/.rvm/gems/ruby-2.3.3/gems/activerecord-3.2.22.13/lib/active_record/observer.rb 694 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/caching/sweeping.rb 695 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/caching.rb 696 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_dispatch/http/mime_types.rb 697 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_dispatch/http/mime_type.rb 698 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/abstract_controller/collector.rb 699 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/metal/implicit_render.rb 700 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/metal/mime_responds.rb 701 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/metal/cookies.rb 702 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/metal/flash.rb 703 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/metal/request_forgery_protection.rb 704 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/metal/force_ssl.rb 705 /home/lex/.rvm/gems/ruby-2.3.3/gems/rack-1.4.7/lib/rack/chunked.rb 706 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/metal/streaming.rb 707 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/metal/data_streaming.rb 708 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/security_utils.rb 709 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/metal/http_authentication.rb 710 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/core_ext/proc.rb 711 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/rescuable.rb 712 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/metal/rescue.rb 713 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/metal/instrumentation.rb 714 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_controller/metal/params_wrapper.rb 715 /home/lex/.rvm/gems/ruby-2.3.3/gems/actionpack-3.2.22.13/lib/action_view/path_set.rb 716 /home/lex/.rvm/gems/ruby-2.3.3/gems/multi_json-1.14.1/lib/multi_json/options.rb 717 /home/lex/.rvm/gems/ruby-2.3.3/gems/multi_json-1.14.1/lib/multi_json/version.rb 718 /home/lex/.rvm/gems/ruby-2.3.3/gems/multi_json-1.14.1/lib/multi_json/adapter_error.rb 719 /home/lex/.rvm/gems/ruby-2.3.3/gems/multi_json-1.14.1/lib/multi_json/parse_error.rb 720 /home/lex/.rvm/gems/ruby-2.3.3/gems/multi_json-1.14.1/lib/multi_json/options_cache.rb 721 /home/lex/.rvm/gems/ruby-2.3.3/gems/multi_json-1.14.1/lib/multi_json.rb 722 /home/lex/.rvm/gems/ruby-2.3.3/gems/activesupport-3.2.22.13/lib/active_support/json/decoding.rb 723 /home/lex/.rvm/gems/ruby-2.3.3/gems/json_pure-1.4.6/lib/json/version.rb 724 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/iconv.so 725 /home/lex/.rvm/gems/ruby-2.3.3/gems/json_pure-1.4.6/lib/json/common.rb 726 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/enc/utf_16be.so 727 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/enc/utf_16le.so 728 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/enc/utf_32be.so 729 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/enc/utf_32le.so 730 /home/lex/.rvm/gems/ruby-2.3.3/gems/json-1.8.6/lib/json/ext/parser.so * Process memory map: 557ea7923000-557ea7b84000 r-xp 00000000 103:02 19792209 /home/lex/.rbenv/versions/1.9.3-p551/bin/ruby 557ea7d84000-557ea7d88000 r--p 00261000 103:02 19792209 /home/lex/.rbenv/versions/1.9.3-p551/bin/ruby 557ea7d88000-557ea7d89000 rw-p 00265000 103:02 19792209 /home/lex/.rbenv/versions/1.9.3-p551/bin/ruby 557ea7d89000-557ea7da5000 rw-p 00000000 00:00 0 557ea808c000-557eaad01000 rw-p 00000000 00:00 0 [heap] 7fa5fd549000-7fa5fd560000 r-xp 00000000 103:02 149173 /lib/x86_64-linux-gnu/libgcc_s.so.1 7fa5fd560000-7fa5fd75f000 ---p 00017000 103:02 149173 /lib/x86_64-linux-gnu/libgcc_s.so.1 7fa5fd75f000-7fa5fd760000 r--p 00016000 103:02 149173 /lib/x86_64-linux-gnu/libgcc_s.so.1 7fa5fd760000-7fa5fd761000 rw-p 00017000 103:02 149173 /lib/x86_64-linux-gnu/libgcc_s.so.1 7fa5fd761000-7fa5fd76b000 r-xp 00000000 103:02 35527652 /home/lex/.rvm/gems/ruby-2.3.3/gems/json-1.8.6/lib/json/ext/generator.so 7fa5fd76b000-7fa5fd96a000 ---p 0000a000 103:02 35527652 /home/lex/.rvm/gems/ruby-2.3.3/gems/json-1.8.6/lib/json/ext/generator.so 7fa5fd96a000-7fa5fd96b000 r--p 00009000 103:02 35527652 /home/lex/.rvm/gems/ruby-2.3.3/gems/json-1.8.6/lib/json/ext/generator.so 7fa5fd96b000-7fa5fd96c000 rw-p 0000a000 103:02 35527652 /home/lex/.rvm/gems/ruby-2.3.3/gems/json-1.8.6/lib/json/ext/generator.so 7fa5fd96c000-7fa5fd96d000 r-xp 00000000 103:02 19792280 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/enc/utf_32le.so 7fa5fd96d000-7fa5fdb6c000 ---p 00001000 103:02 19792280 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/enc/utf_32le.so 7fa5fdb6c000-7fa5fdb6d000 r--p 00000000 103:02 19792280 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/enc/utf_32le.so 7fa5fdb6d000-7fa5fdb6e000 rw-p 00001000 103:02 19792280 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/enc/utf_32le.so 7fa5fdb6e000-7fa5fdb6f000 r-xp 00000000 103:02 19792289 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/enc/utf_32be.so 7fa5fdb6f000-7fa5fdd6e000 ---p 00001000 103:02 19792289 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/enc/utf_32be.so 7fa5fdd6e000-7fa5fdd6f000 r--p 00000000 103:02 19792289 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/enc/utf_32be.so 7fa5fdd6f000-7fa5fdd70000 rw-p 00001000 103:02 19792289 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/enc/utf_32be.so 7fa5fdd70000-7fa5fdd71000 r-xp 00000000 103:02 19792286 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/enc/utf_16le.so 7fa5fdd71000-7fa5fdf70000 ---p 00001000 103:02 19792286 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/enc/utf_16le.so 7fa5fdf70000-7fa5fdf71000 r--p 00000000 103:02 19792286 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/enc/utf_16le.so 7fa5fdf71000-7fa5fdf72000 rw-p 00001000 103:02 19792286 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/enc/utf_16le.so 7fa5fdf72000-7fa5fdf73000 r-xp 00000000 103:02 19792283 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/enc/utf_16be.so 7fa5fdf73000-7fa5fe172000 ---p 00001000 103:02 19792283 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/enc/utf_16be.so 7fa5fe172000-7fa5fe173000 r--p 00000000 103:02 19792283 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/enc/utf_16be.so 7fa5fe173000-7fa5fe174000 rw-p 00001000 103:02 19792283 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/enc/utf_16be.so 7fa5fe174000-7fa5fe1f3000 r-xp 00000000 103:02 6034270 /usr/lib/x86_64-linux-gnu/libgmp.so.10.3.2 7fa5fe1f3000-7fa5fe3f3000 ---p 0007f000 103:02 6034270 /usr/lib/x86_64-linux-gnu/libgmp.so.10.3.2 7fa5fe3f3000-7fa5fe3f4000 r--p 0007f000 103:02 6034270 /usr/lib/x86_64-linux-gnu/libgmp.so.10.3.2 7fa5fe3f4000-7fa5fe3f5000 rw-p 00080000 103:02 6034270 /usr/lib/x86_64-linux-gnu/libgmp.so.10.3.2 7fa5fe3f5000-7fa5fe6ce000 r-xp 00000000 103:02 35397880 /home/lex/.rvm/rubies/ruby-2.3.3/lib/libruby.so.2.3.0 7fa5fe6ce000-7fa5fe8cd000 ---p 002d9000 103:02 35397880 /home/lex/.rvm/rubies/ruby-2.3.3/lib/libruby.so.2.3.0 7fa5fe8cd000-7fa5fe8d3000 r--p 002d8000 103:02 35397880 /home/lex/.rvm/rubies/ruby-2.3.3/lib/libruby.so.2.3.0 7fa5fe8d3000-7fa5fe8d6000 rw-p 002de000 103:02 35397880 /home/lex/.rvm/rubies/ruby-2.3.3/lib/libruby.so.2.3.0 7fa5fe8d6000-7fa5fe8e7000 rw-p 00000000 00:00 0 7fa5fe8e7000-7fa5fe8ed000 r-xp 00000000 103:02 35527661 /home/lex/.rvm/gems/ruby-2.3.3/gems/json-1.8.6/lib/json/ext/parser.so 7fa5fe8ed000-7fa5feaec000 ---p 00006000 103:02 35527661 /home/lex/.rvm/gems/ruby-2.3.3/gems/json-1.8.6/lib/json/ext/parser.so 7fa5feaec000-7fa5feaed000 r--p 00005000 103:02 35527661 /home/lex/.rvm/gems/ruby-2.3.3/gems/json-1.8.6/lib/json/ext/parser.so 7fa5feaed000-7fa5feaee000 rw-p 00006000 103:02 35527661 /home/lex/.rvm/gems/ruby-2.3.3/gems/json-1.8.6/lib/json/ext/parser.so 7fa5feaee000-7fa5feaf4000 r-xp 00000000 103:02 19792252 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/iconv.so 7fa5feaf4000-7fa5fecf3000 ---p 00006000 103:02 19792252 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/iconv.so 7fa5fecf3000-7fa5fecf4000 r--p 00005000 103:02 19792252 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/iconv.so 7fa5fecf4000-7fa5fecf5000 rw-p 00006000 103:02 19792252 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/iconv.so 7fa5fecf5000-7fa5fecf6000 r-xp 00000000 103:02 19792228 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/digest/md5.so 7fa5fecf6000-7fa5feef5000 ---p 00001000 103:02 19792228 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/digest/md5.so 7fa5feef5000-7fa5feef6000 r--p 00000000 103:02 19792228 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/digest/md5.so 7fa5feef6000-7fa5feef7000 rw-p 00001000 103:02 19792228 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/digest/md5.so 7fa5feef7000-7fa5fef13000 r-xp 00000000 103:02 223289 /lib/x86_64-linux-gnu/libz.so.1.2.11 7fa5fef13000-7fa5ff112000 ---p 0001c000 103:02 223289 /lib/x86_64-linux-gnu/libz.so.1.2.11 7fa5ff112000-7fa5ff113000 r--p 0001b000 103:02 223289 /lib/x86_64-linux-gnu/libz.so.1.2.11 7fa5ff113000-7fa5ff114000 rw-p 0001c000 103:02 223289 /lib/x86_64-linux-gnu/libz.so.1.2.11 7fa5ff114000-7fa5ff124000 r-xp 00000000 103:02 19792310 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/zlib.so 7fa5ff124000-7fa5ff323000 ---p 00010000 103:02 19792310 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/zlib.so 7fa5ff323000-7fa5ff324000 r--p 0000f000 103:02 19792310 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/zlib.so 7fa5ff324000-7fa5ff325000 rw-p 00010000 103:02 19792310 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/zlib.so 7fa5ff325000-7fa5ff339000 r-xp 00000000 103:02 19792237 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/bigdecimal.so 7fa5ff339000-7fa5ff539000 ---p 00014000 103:02 19792237 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/bigdecimal.so 7fa5ff539000-7fa5ff53a000 r--p 00014000 103:02 19792237 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/bigdecimal.so 7fa5ff53a000-7fa5ff53b000 rw-p 00015000 103:02 19792237 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/bigdecimal.so 7fa5ff53b000-7fa5ff56e000 r-xp 00000000 103:02 19792251 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/date_core.so 7fa5ff56e000-7fa5ff76e000 ---p 00033000 103:02 19792251 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/date_core.so 7fa5ff76e000-7fa5ff76f000 r--p 00033000 103:02 19792251 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/date_core.so 7fa5ff76f000-7fa5ff770000 rw-p 00034000 103:02 19792251 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/date_core.so 7fa5ff770000-7fa5ff771000 rw-p 00000000 00:00 0 7fa5ff771000-7fa5ff78e000 r-xp 00000000 103:02 6035190 /usr/lib/x86_64-linux-gnu/libyaml-0.so.2.0.5 7fa5ff78e000-7fa5ff98d000 ---p 0001d000 103:02 6035190 /usr/lib/x86_64-linux-gnu/libyaml-0.so.2.0.5 7fa5ff98d000-7fa5ff98e000 r--p 0001c000 103:02 6035190 /usr/lib/x86_64-linux-gnu/libyaml-0.so.2.0.5 7fa5ff98e000-7fa5ff98f000 rw-p 0001d000 103:02 6035190 /usr/lib/x86_64-linux-gnu/libyaml-0.so.2.0.5 7fa5ff98f000-7fa5ff995000 r-xp 00000000 103:02 19792236 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/psych.so 7fa5ff995000-7fa5ffb94000 ---p 00006000 103:02 19792236 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/psych.so 7fa5ffb94000-7fa5ffb95000 r--p 00005000 103:02 19792236 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/psych.so 7fa5ffb95000-7fa5ffb96000 rw-p 00006000 103:02 19792236 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/psych.so 7fa5ffb96000-7fa5ffb97000 r-xp 00000000 103:02 19792222 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/fcntl.so 7fa5ffb97000-7fa5ffd96000 ---p 00001000 103:02 19792222 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/fcntl.so 7fa5ffd96000-7fa5ffd97000 r--p 00000000 103:02 19792222 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/fcntl.so 7fa5ffd97000-7fa5ffd98000 rw-p 00001000 103:02 19792222 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/fcntl.so 7fa5ffd98000-7fa5ffdf6000 r-xp 00000000 103:02 6034955 /usr/lib/x86_64-linux-gnu/libssl.so.1.0.0 7fa5ffdf6000-7fa5ffff6000 ---p 0005e000 103:02 6034955 /usr/lib/x86_64-linux-gnu/libssl.so.1.0.0 7fa5ffff6000-7fa5ffffa000 r--p 0005e000 103:02 6034955 /usr/lib/x86_64-linux-gnu/libssl.so.1.0.0 7fa5ffffa000-7fa600000000 rw-p 00062000 103:02 6034955 /usr/lib/x86_64-linux-gnu/libssl.so.1.0.0 7fa600000000-7fa60002d000 rw-p 00000000 00:00 0 7fa60002d000-7fa604000000 ---p 00000000 00:00 0 7fa6041ee000-7fa60423b000 r-xp 00000000 103:02 19792216 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/openssl.so 7fa60423b000-7fa60443b000 ---p 0004d000 103:02 19792216 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/openssl.so 7fa60443b000-7fa60443c000 r--p 0004d000 103:02 19792216 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/openssl.so 7fa60443c000-7fa60443e000 rw-p 0004e000 103:02 19792216 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/openssl.so 7fa60443e000-7fa60443f000 rw-p 00000000 00:00 0 7fa60443f000-7fa604658000 r-xp 00000000 103:02 6034036 /usr/lib/x86_64-linux-gnu/libcrypto.so.1.0.0 7fa604658000-7fa604857000 ---p 00219000 103:02 6034036 /usr/lib/x86_64-linux-gnu/libcrypto.so.1.0.0 7fa604857000-7fa604873000 r--p 00218000 103:02 6034036 /usr/lib/x86_64-linux-gnu/libcrypto.so.1.0.0 7fa604873000-7fa60487f000 rw-p 00234000 103:02 6034036 /usr/lib/x86_64-linux-gnu/libcrypto.so.1.0.0 7fa60487f000-7fa604882000 rw-p 00000000 00:00 0 7fa604882000-7fa604883000 r-xp 00000000 103:02 19792224 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/digest/sha1.so 7fa604883000-7fa604a82000 ---p 00001000 103:02 19792224 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/digest/sha1.so 7fa604a82000-7fa604a83000 r--p 00000000 103:02 19792224 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/digest/sha1.so 7fa604a83000-7fa604a84000 rw-p 00001000 103:02 19792224 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/digest/sha1.so 7fa604a84000-7fa604a88000 r-xp 00000000 103:02 19792239 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/digest.so 7fa604a88000-7fa604c87000 ---p 00004000 103:02 19792239 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/digest.so 7fa604c87000-7fa604c88000 r--p 00003000 103:02 19792239 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/digest.so 7fa604c88000-7fa604c89000 rw-p 00004000 103:02 19792239 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/digest.so 7fa604c89000-7fa604c90000 r-xp 00000000 103:02 19792250 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/pathname.so 7fa604c90000-7fa604e90000 ---p 00007000 103:02 19792250 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/pathname.so 7fa604e90000-7fa604e91000 r--p 00007000 103:02 19792250 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/pathname.so 7fa604e91000-7fa604e92000 rw-p 00008000 103:02 19792250 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/pathname.so 7fa604e92000-7fa604e95000 r-xp 00000000 103:02 19792248 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/etc.so 7fa604e95000-7fa605094000 ---p 00003000 103:02 19792248 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/etc.so 7fa605094000-7fa605095000 r--p 00002000 103:02 19792248 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/etc.so 7fa605095000-7fa605096000 rw-p 00003000 103:02 19792248 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/etc.so 7fa605096000-7fa605197000 rw-p 00000000 00:00 0 7fa605197000-7fa6051a2000 r-xp 00000000 103:02 36309103 /home/lex/.rvm/gems/ruby-2.3.3/gems/ruby-debug-base19x-0.11.32/lib/ruby_debug.so 7fa6051a2000-7fa6053a1000 ---p 0000b000 103:02 36309103 /home/lex/.rvm/gems/ruby-2.3.3/gems/ruby-debug-base19x-0.11.32/lib/ruby_debug.so 7fa6053a1000-7fa6053a2000 r--p 0000a000 103:02 36309103 /home/lex/.rvm/gems/ruby-2.3.3/gems/ruby-debug-base19x-0.11.32/lib/ruby_debug.so 7fa6053a2000-7fa6053a3000 rw-p 0000b000 103:02 36309103 /home/lex/.rvm/gems/ruby-2.3.3/gems/ruby-debug-base19x-0.11.32/lib/ruby_debug.so 7fa6053a3000-7fa6053c9000 r-xp 00000000 103:02 19792240 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/socket.so 7fa6053c9000-7fa6055c8000 ---p 00026000 103:02 19792240 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/socket.so 7fa6055c8000-7fa6055c9000 r--p 00025000 103:02 19792240 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/socket.so 7fa6055c9000-7fa6055ca000 rw-p 00026000 103:02 19792240 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/socket.so 7fa6055ca000-7fa6055d1000 r-xp 00000000 103:02 19792230 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/stringio.so 7fa6055d1000-7fa6057d0000 ---p 00007000 103:02 19792230 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/stringio.so 7fa6057d0000-7fa6057d1000 r--p 00006000 103:02 19792230 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/stringio.so 7fa6057d1000-7fa6057d2000 rw-p 00007000 103:02 19792230 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/stringio.so 7fa6057d2000-7fa6057d8000 r-xp 00000000 103:02 19792241 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/strscan.so 7fa6057d8000-7fa6059d7000 ---p 00006000 103:02 19792241 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/strscan.so 7fa6059d7000-7fa6059d8000 r--p 00005000 103:02 19792241 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/strscan.so 7fa6059d8000-7fa6059d9000 rw-p 00006000 103:02 19792241 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/strscan.so 7fa6059d9000-7fa6059db000 r-xp 00000000 103:02 19792257 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/enc/trans/transdb.so 7fa6059db000-7fa605bda000 ---p 00002000 103:02 19792257 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/enc/trans/transdb.so 7fa605bda000-7fa605bdb000 r--p 00001000 103:02 19792257 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/enc/trans/transdb.so 7fa605bdb000-7fa605bdc000 rw-p 00002000 103:02 19792257 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/enc/trans/transdb.so 7fa605bdc000-7fa605bde000 r-xp 00000000 103:02 19792254 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/enc/encdb.so 7fa605bde000-7fa605ddd000 ---p 00002000 103:02 19792254 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/enc/encdb.so 7fa605ddd000-7fa605dde000 r--p 00001000 103:02 19792254 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/enc/encdb.so 7fa605dde000-7fa605ddf000 rw-p 00002000 103:02 19792254 /home/lex/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/x86_64-linux/enc/encdb.so 7fa605ddf000-7fa6067ae000 r--p 00000000 103:02 5898304 /usr/lib/locale/locale-archive 7fa6067ae000-7fa606995000 r-xp 00000000 103:02 223134 /lib/x86_64-linux-gnu/libc-2.27.so 7fa606995000-7fa606b95000 ---p 001e7000 103:02 223134 /lib/x86_64-linux-gnu/libc-2.27.so 7fa606b95000-7fa606b99000 r--p 001e7000 103:02 223134 /lib/x86_64-linux-gnu/libc-2.27.so 7fa606b99000-7fa606b9b000 rw-p 001eb000 103:02 223134 /lib/x86_64-linux-gnu/libc-2.27.so 7fa606b9b000-7fa606b9f000 rw-p 00000000 00:00 0 7fa606b9f000-7fa606d3c000 r-xp 00000000 103:02 223184 /lib/x86_64-linux-gnu/libm-2.27.so 7fa606d3c000-7fa606f3b000 ---p 0019d000 103:02 223184 /lib/x86_64-linux-gnu/libm-2.27.so 7fa606f3b000-7fa606f3c000 r--p 0019c000 103:02 223184 /lib/x86_64-linux-gnu/libm-2.27.so 7fa606f3c000-7fa606f3d000 rw-p 0019d000 103:02 223184 /lib/x86_64-linux-gnu/libm-2.27.so 7fa606f3d000-7fa606f46000 r-xp 00000000 103:02 223144 /lib/x86_64-linux-gnu/libcrypt-2.27.so 7fa606f46000-7fa607145000 ---p 00009000 103:02 223144 /lib/x86_64-linux-gnu/libcrypt-2.27.so 7fa607145000-7fa607146000 r--p 00008000 103:02 223144 /lib/x86_64-linux-gnu/libcrypt-2.27.so 7fa607146000-7fa607147000 rw-p 00009000 103:02 223144 /lib/x86_64-linux-gnu/libcrypt-2.27.so 7fa607147000-7fa607175000 rw-p 00000000 00:00 0 7fa607175000-7fa607178000 r-xp 00000000 103:02 223150 /lib/x86_64-linux-gnu/libdl-2.27.so 7fa607178000-7fa607377000 ---p 00003000 103:02 223150 /lib/x86_64-linux-gnu/libdl-2.27.so 7fa607377000-7fa607378000 r--p 00002000 103:02 223150 /lib/x86_64-linux-gnu/libdl-2.27.so 7fa607378000-7fa607379000 rw-p 00003000 103:02 223150 /lib/x86_64-linux-gnu/libdl-2.27.so 7fa607379000-7fa607380000 r-xp 00000000 103:02 223259 /lib/x86_64-linux-gnu/librt-2.27.so 7fa607380000-7fa60757f000 ---p 00007000 103:02 223259 /lib/x86_64-linux-gnu/librt-2.27.so 7fa60757f000-7fa607580000 r--p 00006000 103:02 223259 /lib/x86_64-linux-gnu/librt-2.27.so 7fa607580000-7fa607581000 rw-p 00007000 103:02 223259 /lib/x86_64-linux-gnu/librt-2.27.so 7fa607581000-7fa60759b000 r-xp 00000000 103:02 223253 /lib/x86_64-linux-gnu/libpthread-2.27.so 7fa60759b000-7fa60779a000 ---p 0001a000 103:02 223253 /lib/x86_64-linux-gnu/libpthread-2.27.so 7fa60779a000-7fa60779b000 r--p 00019000 103:02 223253 /lib/x86_64-linux-gnu/libpthread-2.27.so 7fa60779b000-7fa60779c000 rw-p 0001a000 103:02 223253 /lib/x86_64-linux-gnu/libpthread-2.27.so 7fa60779c000-7fa6077a0000 rw-p 00000000 00:00 0 7fa6077a0000-7fa6077c7000 r-xp 00000000 103:02 223106 /lib/x86_64-linux-gnu/ld-2.27.so 7fa607821000-7fa607822000 ---p 00000000 00:00 0 7fa607822000-7fa6079aa000 rw-p 00000000 00:00 0 7fa6079bb000-7fa6079c2000 r--s 00000000 103:02 6032783 /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache 7fa6079c2000-7fa6079c3000 ---p 00000000 00:00 0 7fa6079c3000-7fa6079c7000 rw-p 00000000 00:00 0 7fa6079c7000-7fa6079c8000 r--p 00027000 103:02 223106 /lib/x86_64-linux-gnu/ld-2.27.so 7fa6079c8000-7fa6079c9000 rw-p 00028000 103:02 223106 /lib/x86_64-linux-gnu/ld-2.27.so 7fa6079c9000-7fa6079ca000 rw-p 00000000 00:00 0 7fff44a8b000-7fff44aad000 rw-p 00000000 00:00 0 [stack] 7fff44b44000-7fff44b47000 r--p 00000000 00:00 0 [vvar] 7fff44b47000-7fff44b48000 r-xp 00000000 00:00 0 [vdso] ffffffffff600000-ffffffffff601000 --xp 00000000 00:00 0 [vsyscall] [NOTE] You may have encountered a bug in the Ruby interpreter or extension libraries. Bug reports are welcome. For details: http://www.ruby-lang.org/bugreport.html Process finished with exit code 134 (interrupted by signal 6: SIGABRT)

undefined method b

I opened a new terminal and tried to run a single rspec test script.

$ be rspec spec/controllers/api/internal/v1/users_controller_spec.rb
/home/lex/.rvm/gems/ruby-2.3.3/bin/rspec:15:in `
': undefined method `b' for "spec/controllers/api/internal/v1/users_controller_spec.rb":String (NoMethodError) from /home/lex/.rvm/gems/ruby-2.3.3/bin/ruby_executable_hooks:24:in `eval' from /home/lex/.rvm/gems/ruby-2.3.3/bin/ruby_executable_hooks:24:in `
'

The error message has not helpful at all

The path however provided a great clue

/home/lex/.rvm/gems/ruby-2.3.3/bin/rspec

Running rbenv ruby not rvm ruby

When we look at where our ruby version is coming from, we see that it is rbenv's ruby 1.9.3p551 NOT rvm's ruby-2.3.3

$ be rspec spec/controllers/api/internal/v1/users_controller_spec.rb
/home/lex/.rvm/gems/ruby-2.3.3/bin/rspec:15:in `
': undefined method `b' for "spec/controllers/api/internal/v1/users_controller_spec.rb":String (NoMethodError) from /home/lex/.rvm/gems/ruby-2.3.3/bin/ruby_executable_hooks:24:in `eval' from /home/lex/.rvm/gems/ruby-2.3.3/bin/ruby_executable_hooks:24:in `
' $ which ruby /home/lex/.rbenv/shims/ruby $ ruby --version ruby 1.9.3p551 (2014-11-13 revision 48407) [x86_64-linux]


Solution

To resolve this issue, we must remove every reference to rvm in the PATH and ENV.

Multiple Ruby Version Managers

Rbenv installed ruby 1.9.3p551 properly, using openssl version 1.1.1 which was required by this legacy application, running on my development workstation's operating system.

Rvm installed ruby-2.3.3 which was required by rubocop.

We had to have both installed, but only one active.

Getting a Ruby on Rails application environment can be tricky and it helps to know how your operating system's path and environment is configured to get it working properly.




This work is licensed under the Creative Commons Attribution 3.0 Unported License.