Fog, Amazon S3 and Carrierwave Rails issue - ruby-on-rails

UPDATED CONTENT
My Setup is now as follows:
#Carrierwave Initializer
CarrierWave.configure do |config|
config.fog_credentials = {
:provider => 'AWS',
:aws_access_key_id => ENV['S3_KEY'],
:aws_secret_access_key => ENV['S3_SECRET'],
}
config.fog_directory = ENV['S3_BUCKET_NAME']
config.fog_public = false # optional, defaults to true
config.fog_attributes = {'Cache-Control'=>'max-age=315576000'}
end
#Uploader
class ProteinUploader < CarrierWave::Uploader::Base
include CarrierWave::MiniMagick
storage :fog
def store_dir
"images/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}"
end
end
#Heroku Config Variables
S3_BUCKET_NAME = top5protein
S3_KEY = 'xxx'
S3_SECRET = 'xxx'
#Gemfile
...
gem "fog", "~> 1.14.0"
gem "excon", "~> 0.25.3"
gem 'carrierwave'
gem 'activeadmin'
...
And the error I am still getting is:
Excon::Errors::Forbidden (Expected(200) <=> Actual(403 Forbidden)
2013-07-28T11:51:13.251291+00:00 app[web.1]: vendor/bundle/ruby/2.0.0/gems/excon-0.25.3/lib/excon/connection.rb:260:in `rescue in request'
2013-07-28T11:51:13.251455+00:00 app[web.1]: vendor/bundle/ruby/2.0.0/gems/excon-0.25.3/lib/excon/connection.rb:220:in `request'
2013-07-28T11:51:13.251056+00:00 app[web.1]: FYyKoH99bOV97aK1TQI9dEhIBycFUg2TyP2fYuzY1/Ke+TXevyjKlUA</HostId><SignatureProvided>ZuHHwrD3Qdo9IHNhE14eKiB0OgY=</SignatureProvided><StringToSign>PUT\n\nimage/png\nSun, 28 Jul 2013 11:51:12 +0000\nx-amz-acl:private\n/top5protein/images/general/image/2/Protein1.png</StringToSign><AWSAccessKeyId>AKIAJ5GKDLKK3CPHNTGA</AWSAccessKeyId></Error>", #headers={"x-amz-request-id"=>"04AD4FA1DDE488CE", "x-amz-id-2"=>"SkpxPPpk0FYyKoH99bOV97aK1TQI9dEhIBycFUg2TyP2fYuzY1/Ke+TXevyjKlUA", "Content-Type"=>"application/xml", "Transfer-Encoding"=>"chunked", "Date"=>"Sun, 28 Jul 2013 11:51:12 GMT", "Connection"=>"close", "Server"=>"AmazonS3"}, #status=403, #remote_ip="207.171.163.195">):
and
HNTGA</AWSAccessKeyId></Error>", :headers=>{"x-amz-request-id"=>"04AD4FA1DDE488CE", "x-amz-id-2"=>"SkpxPPpk0FYyKoH99bOV97aK1TQI9dEhIBycFUg2TyP2fYuzY1/Ke+TXevyjKlUA", "Content-Type"=>"application/xml", "Transfer-Encoding"=>"chunked", "Date"=>"Sun, 28 Jul 2013 11:51:12 GMT", "Connection"=>"close", "Server"=>"AmazonS3"}, :status=>403, :remote_ip=>"207.171.163.195"}, #body="<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Code>SignatureDoesNotMatch</Code><Message>The request signature we calculated does not match the signature you provided. Check your key and signing method.</Message><StringToSignBytes>50 55 54 0a 0a 69 6d 61 67 65 2f 70 6e 67 0a 53 75 6e 2c 20 32 38 20 4a 75 6c 20 32 30 31 33 20 31 31 3a 35 31 3a 31 32 20 2b 30 30 30 30 0a 78 2d 61 6d 7a 2d 61 63 6c 3a 70 72 69 76 61 74 65 0a 2f 74 6f 70 35 70 72 6f 74 65 69 6e 2f 69 6d 61 67 65 73 2f 67 65 6e 65 72 61 6c 2f 69 6d 61 67 65 2f 32 2f 50 72 6f 74 65 69 6e 31 2e 70 6e 67</StringToSignBytes><RequestId>04AD4FA1DDE488CE</RequestId><HostId>SkpxPPpk0
If anyone has any further advice that might help then that would be great!

In your case (as noted in the last comment) and in mine, the reason for this error was an incorrect secret key.
I thought I'd leave this here for future people getting this error so they could check the most probable source of the problem first.

Related

ActionView::Template::Error (THING can't be coerced into Fixnum):

Can anyone explain this error? Trying to divide and subtract in an ERB file. I am sure best practice is to do it in the controller, but would rather not.
ActionView::Template::Error (AcctLedger can't be coerced into Fixnum):
Mar 09 00:25:34 myapp app/web.2: 107:
Mar 09 00:25:34 myapp app/web.2: 108: <% if "myapp XL" == call.requested_type %>
Mar 09 00:25:34 myapp app/web.2: 109: <% if call.has_fee? %>
Mar 09 00:25:34 myapp app/web.2: 110: <% price = (price - call.has_fee)/2 %>
Mar 09 00:25:34 myapp app/web.2: 111: <% else %>
Mar 09 00:25:34 myapp app/web.2: 112: <% price = price/2 %>
Mar 09 00:25:34 myapp app/web.2: 113: <% end %>
Is price or call.has_fee returning an AcctLedger object, by any chance? This error is saying that AcctLedger has no idea how to act like a number, but you're trying to use it in a calculation.
You can see a similar thing if you try to add a number and a string:
1 + '1'
# TypeError: String can't be coerced into Fixnum

How to customize pagination in wice_grid gem?

I have a pagination like:
« First ‹ Prev 1 2 ... 13 14 15 16 17 18 19 20 21 ... 24 25 Next › Last »
This is too long. How can I make this shorter, e.g.:
« ‹ 15 16 17 18 19 › »
wice_grid uses Kaminari internally so you should just be able to configure it in an initializer:
Kaminari.configure do |config|
window 2 # 4 by default
end
and then you would need to override these I18n values in your locale:
en:
views:
pagination:
first: "« First"
last: "Last »"
previous: "‹ Prev"
next: "Next ›"
truncate: "…"
https://github.com/amatsuda/kaminari

ERRNO errors and explanation

I noticed that often you get ERRNO errors, but have no clue what they mean. Here is some guide, that is helping me and might help others.
In console
110.times do |errno| #there are not more then 110 ERRNO errors
puts "#{ errno } => #{ SystemCallError.new(errno).inspect }"
end
Results. Enjoy your debuging and code digging
0 => #<Errno::NOERROR: Undefined error: 0>
1 => #<Errno::EPERM: Operation not permitted>
2 => #<Errno::ENOENT: No such file or directory>
3 => #<Errno::ESRCH: No such process>
4 => #<Errno::EINTR: Interrupted system call>
5 => #<Errno::EIO: Input/output error>
6 => #<Errno::ENXIO: Device not configured>
7 => #<Errno::E2BIG: Argument list too long>
8 => #<Errno::ENOEXEC: Exec format error>
9 => #<Errno::EBADF: Bad file descriptor>
10 => #<Errno::ECHILD: No child processes>
11 => #<Errno::EDEADLK: Resource deadlock avoided>
12 => #<Errno::ENOMEM: Cannot allocate memory>
13 => #<Errno::EACCES: Permission denied>
14 => #<Errno::EFAULT: Bad address>
15 => #<Errno::ENOTBLK: Block device required>
16 => #<Errno::EBUSY: Resource busy>
17 => #<Errno::EEXIST: File exists>
18 => #<Errno::EXDEV: Cross-device link>
19 => #<Errno::ENODEV: Operation not supported by device>
20 => #<Errno::ENOTDIR: Not a directory>
21 => #<Errno::EISDIR: Is a directory>
22 => #<Errno::EINVAL: Invalid argument>
23 => #<Errno::ENFILE: Too many open files in system>
24 => #<Errno::EMFILE: Too many open files>
25 => #<Errno::ENOTTY: Inappropriate ioctl for device>
26 => #<Errno::ETXTBSY: Text file busy>
27 => #<Errno::EFBIG: File too large>
28 => #<Errno::ENOSPC: No space left on device>
29 => #<Errno::ESPIPE: Illegal seek>
30 => #<Errno::EROFS: Read-only file system>
31 => #<Errno::EMLINK: Too many links>
32 => #<Errno::EPIPE: Broken pipe>
33 => #<Errno::EDOM: Numerical argument out of domain>
34 => #<Errno::ERANGE: Result too large>
35 => #<Errno::EAGAIN: Resource temporarily unavailable>
36 => #<Errno::EINPROGRESS: Operation now in progress>
37 => #<Errno::EALREADY: Operation already in progress>
38 => #<Errno::ENOTSOCK: Socket operation on non-socket>
39 => #<Errno::EDESTADDRREQ: Destination address required>
40 => #<Errno::EMSGSIZE: Message too long>
41 => #<Errno::EPROTOTYPE: Protocol wrong type for socket>
42 => #<Errno::ENOPROTOOPT: Protocol not available>
43 => #<Errno::EPROTONOSUPPORT: Protocol not supported>
44 => #<Errno::ESOCKTNOSUPPORT: Socket type not supported>
45 => #<Errno::ENOTSUP: Operation not supported>
46 => #<Errno::EPFNOSUPPORT: Protocol family not supported>
47 => #<Errno::EAFNOSUPPORT: Address family not supported by protocol family>
48 => #<Errno::EADDRINUSE: Address already in use>
49 => #<Errno::EADDRNOTAVAIL: Can't assign requested address>
50 => #<Errno::ENETDOWN: Network is down>
51 => #<Errno::ENETUNREACH: Network is unreachable>
52 => #<Errno::ENETRESET: Network dropped connection on reset>
53 => #<Errno::ECONNABORTED: Software caused connection abort>
54 => #<Errno::ECONNRESET: Connection reset by peer>
55 => #<Errno::ENOBUFS: No buffer space available>
56 => #<Errno::EISCONN: Socket is already connected>
57 => #<Errno::ENOTCONN: Socket is not connected>
58 => #<Errno::ESHUTDOWN: Can't send after socket shutdown>
59 => #<Errno::ETOOMANYREFS: Too many references: can't splice>
60 => #<Errno::ETIMEDOUT: Operation timed out>
61 => #<Errno::ECONNREFUSED: Connection refused>
62 => #<Errno::ELOOP: Too many levels of symbolic links>
63 => #<Errno::ENAMETOOLONG: File name too long>
64 => #<Errno::EHOSTDOWN: Host is down>
65 => #<Errno::EHOSTUNREACH: No route to host>
66 => #<Errno::ENOTEMPTY: Directory not empty>
67 => #<Errno::EPROCLIM: Too many processes>
68 => #<Errno::EUSERS: Too many users>
69 => #<Errno::EDQUOT: Disc quota exceeded>
70 => #<Errno::ESTALE: Stale NFS file handle>
71 => #<Errno::EREMOTE: Too many levels of remote in path>
72 => #<Errno::EBADRPC: RPC struct is bad>
73 => #<Errno::ERPCMISMATCH: RPC version wrong>
74 => #<Errno::EPROGUNAVAIL: RPC prog. not avail>
75 => #<Errno::EPROGMISMATCH: Program version wrong>
76 => #<Errno::EPROCUNAVAIL: Bad procedure for program>
77 => #<Errno::ENOLCK: No locks available>
78 => #<Errno::ENOSYS: Function not implemented>
79 => #<Errno::EFTYPE: Inappropriate file type or format>
80 => #<Errno::EAUTH: Authentication error>
81 => #<Errno::ENEEDAUTH: Need authenticator>
82 => #<SystemCallError: Device power is off>
83 => #<SystemCallError: Device error>
84 => #<Errno::EOVERFLOW: Value too large to be stored in data type>
85 => #<SystemCallError: Bad executable (or shared library)>
86 => #<SystemCallError: Bad CPU type in executable>
87 => #<SystemCallError: Shared library version mismatch>
88 => #<SystemCallError: Malformed Mach-o file>
89 => #<Errno::ECANCELED: Operation canceled>
90 => #<Errno::EIDRM: Identifier removed>
91 => #<Errno::ENOMSG: No message of desired type>
92 => #<Errno::EILSEQ: Illegal byte sequence>
93 => #<Errno::ENOATTR: Attribute not found>
94 => #<Errno::EBADMSG: Bad message>
95 => #<Errno::EMULTIHOP: EMULTIHOP (Reserved)>
96 => #<Errno::ENODATA: No message available on STREAM>
97 => #<Errno::ENOLINK: ENOLINK (Reserved)>
98 => #<Errno::ENOSR: No STREAM resources>
99 => #<Errno::ENOSTR: Not a STREAM>
100 => #<Errno::EPROTO: Protocol error>
101 => #<Errno::ETIME: STREAM ioctl timeout>
102 => #<Errno::EOPNOTSUPP: Operation not supported on socket>
103 => #<SystemCallError: Policy not found>
104 => #<Errno::ENOTRECOVERABLE: State not recoverable>
105 => #<Errno::EOWNERDEAD: Previous owner died>
106 => #<SystemCallError: Interface output queue is full>
107 => #<SystemCallError: Unknown error: 107>
108 => #<SystemCallError: Unknown error: 108>
109 => #<SystemCallError: Unknown error: 109>
110 => #<SystemCallError: Unknown error: 110>

iOS how to understand symbolicated errors

I'm using swift to code. I have symbolicated errors but I still can't understand exactly what the error means. I can see these informations
The class name
The function name
Does it contain any other information like
Line number
Type of error (like array out of index..)
or more?
objc_retain # 0xa
-[PFDecoder decodeDictionary:] # 0x3d, PFDecoder.m : 86
-[PFDecoder decodeObject:] # 0x13, PFDecoder.m : 112
#ERROR!
#ERROR!
#ERROR!
_TFV4Cozy11CozyConfigs14checkAnalyticsfMS0_FT_T_ # 0xa2
_TFC4Cozy11AppDelegate11applicationfS0_FTCSo13UIApplication29didFinishLaunchingWithOptionsGSqGVSs10DictionaryCSo8NSObjectPSs9AnyObject____Sb # 0x18a
_TToFC4Cozy11AppDelegate11applicationfS0_FTCSo13UIApplication29didFinishLaunchingWithOptionsGSqGVSs10DictionaryCSo8NSObjectPSs9AnyObject____Sb # 0x10a
-[NSObject(TLDelegateSW) tlsw_application:didFinishLaunchingWithOptions:] # 0x45
-[UIApplication _handleDelegateCallbacksWithOptions:isSuspended:restoreState:] # 0x117
-[UIApplication _callInitializationDelegatesForMainScene:transitionContext:] # 0x933
-[UIApplication _runWithMainScene:transitionContext:completion:] # 0x557
__84-[UIApplication _handleApplicationActivationWithScene:transitionContext:completion:]_block_invoke # 0x23
-[UIApplication workspaceDidEndTransaction:] # 0x81
__31-[FBSSerialQueue performAsync:]_block_invoke # 0xb
__CFRUNLOOP_IS_CALLING_OUT_TO_A_BLOCK__ # 0xb
__CFRunLoopDoBlocks # 0xd7
__CFRunLoopRun # 0x2f5
CFRunLoopRunSpecific # 0x1db
CFRunLoopRunInMode # 0x69
-[UIApplication _run] # 0x22d
UIApplicationMain # 0x59f
main # 0x86
start # 0x1
This is another crash log which is shorter.(maybe it'll be easier to explain)
_TFFV4Cozy10CardLoader10initializeFMS0_FT4viewGSqCSo6UIView_14tutorialActiveSb_T_U0_FTGSQPSs9AnyObject__GSQCSo7NSError__T_ # 0x2720
_TFFV4Cozy10CardLoader10initializeFMS0_FT4viewGSqCSo6UIView_14tutorialActiveSb_T_U0_FTGSQPSs9AnyObject__GSQCSo7NSError__T_ # 0xe44
__72-[BFTask(Private) continueWithMainThreadResultBlock:executeIfCancelled:]_block_invoke # 0x50, BFTask+Private.m : 52
__41-[BFTask continueWithExecutor:withBlock:]_block_invoke_2 # 0x8, BFTask.m : 287
# 0x13a8
# 0x1368
# 0x597c
__CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ # 0x8
__CFRunLoopRun # 0x5d0
CFRunLoopRunSpecific # 0x188
# 0xb5a0
UIApplicationMain # 0x5cc
main # 0x70
# 0x2a04
The first one seems like it crashes in the checkAnalytics method of your CozyConfigs class

Ruby on Rails – Crashes on Rails Generate Model

Rails newbie here, and I'm trying to generate a model using rails generate model. The command I used is exactly rails generate model testmodel name:string, and I got the ridiculously long error below. I'm sorry for the extremely vague question, but I have no idea what to make of this.
I really don't know what to make of it, but I'm assuming it's a problem with the sqlite gem.
Has anyone had this problem before?
Fares:project_name faresalaboud$ rails generate model testmodel name:string
/Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/sqlite3-1.3.9/lib/sqlite3/sqlite3_native.bundle: [BUG] Segmentation fault at 0x00000000000418
ruby 2.1.0p0 (2013-12-25 revision 44422) [x86_64-darwin13.0]
-- Crash Report log information --------------------------------------------
See Crash Report log file under the one of following:
* ~/Library/Logs/CrashReporter
* /Library/Logs/CrashReporter
* ~/Library/Logs/DiagnosticReports
* /Library/Logs/DiagnosticReports
for more details.
-- Control frame information -----------------------------------------------
c:0017 p:-17588820269308 s:0059 e:000058 TOP [FINISH]
c:0016 p:---- s:0057 e:000056 CFUNC :require
c:0015 p:0020 s:0053 e:000052 BLOCK /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/sqlite3-1.3.9/lib/sqlite3.rb:6
c:0014 p:0032 s:0050 e:000049 TOP /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/sqlite3-1.3.9/lib/sqlite3.rb:2 [FINISH]
c:0013 p:---- s:0048 e:000047 CFUNC :require
c:0012 p:0037 s:0044 e:000043 BLOCK /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481#global/gems/bundler-1.6.3/lib/bundler/runtime.rb:76 [FINISH]
c:0011 p:---- s:0041 e:000040 CFUNC :each
c:0010 p:0055 s:0038 e:000037 BLOCK /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481#global/gems/bundler-1.6.3/lib/bundler/runtime.rb:72 [FINISH]
c:0009 p:---- s:0031 e:000030 CFUNC :each
c:0008 p:0030 s:0028 e:000027 METHOD /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481#global/gems/bundler-1.6.3/lib/bundler/runtime.rb:61
c:0007 p:0013 s:0024 e:000023 METHOD /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481#global/gems/bundler-1.6.3/lib/bundler.rb:132
c:0006 p:0047 s:0020 e:000019 TOP /Users/faresalaboud/rails_projects/alfaris_guests/config/application.rb:7 [FINISH]
c:0005 p:---- s:0018 e:000017 CFUNC :require
c:0004 p:0289 s:0014 e:000013 TOP /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/railties-4.0.5/lib/rails/commands.rb:43 [FINISH]
c:0003 p:---- s:0008 e:000007 CFUNC :require
c:0002 p:0034 s:0004 E:002478 EVAL bin/rails:4 [FINISH]
c:0001 p:0000 s:0002 E:001198 TOP [FINISH]
bin/rails:4:in `<main>'
bin/rails:4:in `require'
/Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/railties-4.0.5/lib/rails/commands.rb:43:in `<top (required)>'
/Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/railties-4.0.5/lib/rails/commands.rb:43:in `require'
/Users/faresalaboud/rails_projects/alfaris_guests/config/application.rb:7:in `<top (required)>'
/Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481#global/gems/bundler-1.6.3/lib/bundler.rb:132:in `require'
/Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481#global/gems/bundler-1.6.3/lib/bundler/runtime.rb:61:in `require'
/Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481#global/gems/bundler-1.6.3/lib/bundler/runtime.rb:61:in `each'
/Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481#global/gems/bundler-1.6.3/lib/bundler/runtime.rb:72:in `block in require'
/Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481#global/gems/bundler-1.6.3/lib/bundler/runtime.rb:72:in `each'
/Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481#global/gems/bundler-1.6.3/lib/bundler/runtime.rb:76:in `block (2 levels) in require'
/Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481#global/gems/bundler-1.6.3/lib/bundler/runtime.rb:76:in `require'
/Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/sqlite3-1.3.9/lib/sqlite3.rb:2:in `<top (required)>'
/Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/sqlite3-1.3.9/lib/sqlite3.rb:6:in `rescue in <top (required)>'
/Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/sqlite3-1.3.9/lib/sqlite3.rb:6:in `require'
-- C level backtrace information -------------------------------------------
0 libruby.2.1.0.dylib 0x000000010b99b303 rb_print_backtrace + 29
1 libruby.2.1.0.dylib 0x000000010b99b3ea rb_vm_bugreport + 124
2 libruby.2.1.0.dylib 0x000000010b8a5aa3 report_bug + 285
3 libruby.2.1.0.dylib 0x000000010b8a5981 rb_bug + 179
4 libruby.2.1.0.dylib 0x000000010b93ddbe check_stack_overflow + 0
5 libsystem_platform.dylib 0x00007fff9304c5aa _sigtramp + 26
6 libruby.2.0.0.dylib 0x000000010bfa543a ruby_xmalloc + 26
7 ??? 0x00007ff9bb12dd80 0x0 + 140710562160000
-- Other runtime information -----------------------------------------------
* Loaded script: bin/rails
* Loaded features:
0 enumerator.so
1 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/x86_64-darwin13.0/enc/encdb.bundle
2 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/x86_64-darwin13.0/enc/trans/transdb.bundle
3 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/x86_64-darwin13.0/rbconfig.rb
4 /usr/local/Cellar/ruby/2.1.0/lib/ruby/site_ruby/2.1.0/rubygems/compatibility.rb
5 /usr/local/Cellar/ruby/2.1.0/lib/ruby/site_ruby/2.1.0/rubygems/defaults.rb
6 /usr/local/Cellar/ruby/2.1.0/lib/ruby/site_ruby/2.1.0/rubygems/deprecate.rb
7 /usr/local/Cellar/ruby/2.1.0/lib/ruby/site_ruby/2.1.0/rubygems/errors.rb
8 /usr/local/Cellar/ruby/2.1.0/lib/ruby/site_ruby/2.1.0/rubygems/version.rb
9 /usr/local/Cellar/ruby/2.1.0/lib/ruby/site_ruby/2.1.0/rubygems/requirement.rb
10 /usr/local/Cellar/ruby/2.1.0/lib/ruby/site_ruby/2.1.0/rubygems/platform.rb
11 /usr/local/Cellar/ruby/2.1.0/lib/ruby/site_ruby/2.1.0/rubygems/basic_specification.rb
12 /usr/local/Cellar/ruby/2.1.0/lib/ruby/site_ruby/2.1.0/rubygems/stub_specification.rb
13 /usr/local/Cellar/ruby/2.1.0/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb
14 /usr/local/Cellar/ruby/2.1.0/lib/ruby/site_ruby/2.1.0/rubygems/exceptions.rb
15 /usr/local/Cellar/ruby/2.1.0/lib/ruby/site_ruby/2.1.0/rubygems/core_ext/kernel_gem.rb
16 thread.rb
17 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/x86_64-darwin13.0/thread.bundle
18 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/monitor.rb
19 /usr/local/Cellar/ruby/2.1.0/lib/ruby/site_ruby/2.1.0/rubygems/core_ext/kernel_require.rb
20 /usr/local/Cellar/ruby/2.1.0/lib/ruby/site_ruby/2.1.0/rubygems.rb
21 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/x86_64-darwin13.0/pathname.bundle
22 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/pathname.rb
23 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481#global/gems/bundler-1.6.3/lib/bundler/constants.rb
24 /usr/local/Cellar/ruby/2.1.0/lib/ruby/site_ruby/2.1.0/rubygems/user_interaction.rb
25 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/x86_64-darwin13.0/etc.bundle
26 /usr/local/Cellar/ruby/2.1.0/lib/ruby/site_ruby/2.1.0/rubygems/config_file.rb
27 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481#global/gems/bundler-1.6.3/lib/bundler/rubygems_integration.rb
28 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481#global/gems/bundler-1.6.3/lib/bundler/current_ruby.rb
29 /usr/local/Cellar/ruby/2.1.0/lib/ruby/site_ruby/2.1.0/rubygems/dependency.rb
30 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481#global/gems/bundler-1.6.3/lib/bundler/shared_helpers.rb
31 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/fileutils.rb
32 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481#global/gems/bundler-1.6.3/lib/bundler/gem_path_manipulation.rb
33 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481#global/gems/bundler-1.6.3/lib/bundler/gem_helpers.rb
34 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481#global/gems/bundler-1.6.3/lib/bundler/match_platform.rb
35 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481#global/gems/bundler-1.6.3/lib/bundler/rubygems_ext.rb
36 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481#global/gems/bundler-1.6.3/lib/bundler/version.rb
37 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481#global/gems/bundler-1.6.3/lib/bundler.rb
38 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481#global/gems/bundler-1.6.3/lib/bundler/settings.rb
39 /usr/local/Cellar/ruby/2.1.0/lib/ruby/site_ruby/2.1.0/rubygems/path_support.rb
40 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/x86_64-darwin13.0/digest.bundle
41 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/digest.rb
42 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/x86_64-darwin13.0/digest/sha1.bundle
43 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/set.rb
44 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481#global/gems/bundler-1.6.3/lib/bundler/definition.rb
45 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481#global/gems/bundler-1.6.3/lib/bundler/dependency.rb
46 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481#global/gems/bundler-1.6.3/lib/bundler/ruby_dsl.rb
47 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481#global/gems/bundler-1.6.3/lib/bundler/dsl.rb
48 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481#global/gems/bundler-1.6.3/lib/bundler/source.rb
49 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/uri/common.rb
50 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/uri/generic.rb
51 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/uri/ftp.rb
52 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/uri/http.rb
53 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/uri/https.rb
54 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/uri/ldap.rb
55 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/uri/ldaps.rb
56 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/uri/mailto.rb
57 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/uri.rb
58 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/x86_64-darwin13.0/socket.bundle
59 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/socket.rb
60 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/timeout.rb
61 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/net/protocol.rb
62 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/x86_64-darwin13.0/zlib.bundle
63 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/x86_64-darwin13.0/stringio.bundle
64 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/net/http/exceptions.rb
65 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/net/http/header.rb
66 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/net/http/generic_request.rb
67 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/net/http/request.rb
68 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/net/http/requests.rb
69 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/net/http/response.rb
70 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/net/http/responses.rb
71 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/net/http/proxy_delta.rb
72 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/net/http/backward.rb
73 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/net/http.rb
74 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/x86_64-darwin13.0/date_core.bundle
75 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/date/format.rb
76 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/date.rb
77 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/time.rb
78 /usr/local/Cellar/ruby/2.1.0/lib/ruby/site_ruby/2.1.0/rubygems/request.rb
79 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/cgi/core.rb
80 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/cgi/util.rb
81 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/cgi/cookie.rb
82 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/cgi.rb
83 /usr/local/Cellar/ruby/2.1.0/lib/ruby/site_ruby/2.1.0/rubygems/uri_formatter.rb
84 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/x86_64-darwin13.0/fcntl.bundle
85 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/x86_64-darwin13.0/openssl.bundle
86 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/openssl/bn.rb
87 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/openssl/cipher.rb
88 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/openssl/config.rb
89 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/openssl/digest.rb
90 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/openssl/x509.rb
91 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/openssl/buffering.rb
92 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/openssl/ssl.rb
93 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/openssl.rb
94 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/securerandom.rb
95 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/resolv.rb
96 /usr/local/Cellar/ruby/2.1.0/lib/ruby/site_ruby/2.1.0/rubygems/remote_fetcher.rb
97 /usr/local/Cellar/ruby/2.1.0/lib/ruby/site_ruby/2.1.0/rubygems/text.rb
98 /usr/local/Cellar/ruby/2.1.0/lib/ruby/site_ruby/2.1.0/rubygems/name_tuple.rb
99 /usr/local/Cellar/ruby/2.1.0/lib/ruby/site_ruby/2.1.0/rubygems/spec_fetcher.rb
100 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481#global/gems/bundler-1.6.3/lib/bundler/source/rubygems.rb
101 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/x86_64-darwin13.0/strscan.bundle
102 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481#global/gems/bundler-1.6.3/lib/bundler/source/path.rb
103 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481#global/gems/bundler-1.6.3/lib/bundler/source/git.rb
104 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481#global/gems/bundler-1.6.3/lib/bundler/lockfile_parser.rb
105 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481#global/gems/bundler-1.6.3/lib/bundler/lazy_specification.rb
106 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/tsort.rb
107 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/forwardable.rb
108 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481#global/gems/bundler-1.6.3/lib/bundler/spec_set.rb
109 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481#global/gems/bundler-1.6.3/lib/bundler/environment.rb
110 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481#global/gems/bundler-1.6.3/lib/bundler/runtime.rb
111 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481#global/gems/bundler-1.6.3/lib/bundler/index.rb
112 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481#global/gems/bundler-1.6.3/lib/bundler/remote_specification.rb
113 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481#global/gems/bundler-1.6.3/lib/bundler/endpoint_specification.rb
114 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481#global/gems/bundler-1.6.3/lib/bundler/dep_proxy.rb
115 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481#global/gems/bundler-1.6.3/lib/bundler/setup.rb
116 /Users/faresalaboud/rails_projects/alfaris_guests/config/boot.rb
117 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/thread_safe-0.3.4/lib/thread_safe/version.rb
118 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/delegate.rb
119 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/thread_safe-0.3.4/lib/thread_safe/synchronized_delegator.rb
120 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/thread_safe-0.3.4/lib/thread_safe.rb
121 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/activesupport-4.0.5/lib/active_support/core_ext/array/prepend_and_append.rb
122 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/activesupport-4.0.5/lib/active_support/core_ext/hash/deep_merge.rb
123 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/activesupport-4.0.5/lib/active_support/core_ext/hash/except.rb
124 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/activesupport-4.0.5/lib/active_support/core_ext/hash/slice.rb
125 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/i18n-0.6.9/lib/i18n/version.rb
126 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/i18n-0.6.9/lib/i18n/exceptions.rb
127 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/i18n-0.6.9/lib/i18n/interpolate/ruby.rb
128 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/i18n-0.6.9/lib/i18n.rb
129 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/activesupport-4.0.5/lib/active_support/lazy_load_hooks.rb
130 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/i18n-0.6.9/lib/i18n/config.rb
131 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/activesupport-4.0.5/lib/active_support/i18n.rb
132 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/thread_safe-0.3.4/lib/thread_safe/non_concurrent_cache_backend.rb
133 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/thread_safe-0.3.4/lib/thread_safe/mri_cache_backend.rb
134 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/thread_safe-0.3.4/lib/thread_safe/cache.rb
135 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/activesupport-4.0.5/lib/active_support/inflector/inflections.rb
136 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/activesupport-4.0.5/lib/active_support/inflections.rb
137 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/activesupport-4.0.5/lib/active_support/inflector/methods.rb
138 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/activesupport-4.0.5/lib/active_support/dependencies/autoload.rb
139 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/activesupport-4.0.5/lib/active_support/version.rb
140 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/activesupport-4.0.5/lib/active_support/core_ext/array/extract_options.rb
141 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/activesupport-4.0.5/lib/active_support/core_ext/class/attribute_accessors.rb
142 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/activesupport-4.0.5/lib/active_support/concern.rb
143 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/activesupport-4.0.5/lib/active_support/logger_silence.rb
144 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/logger.rb
145 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/activesupport-4.0.5/lib/active_support/logger.rb
146 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/activesupport-4.0.5/lib/active_support.rb
147 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/activesupport-4.0.5/lib/active_support/core_ext/object/blank.rb
148 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/activesupport-4.0.5/lib/active_support/core_ext/kernel/singleton_class.rb
149 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/activesupport-4.0.5/lib/active_support/core_ext/module/attribute_accessors.rb
150 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/activesupport-4.0.5/lib/active_support/multibyte.rb
151 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/activesupport-4.0.5/lib/active_support/core_ext/string/multibyte.rb
152 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/activesupport-4.0.5/lib/active_support/inflector/transliterate.rb
153 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/activesupport-4.0.5/lib/active_support/core_ext/string/inflections.rb
154 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/thor-0.19.1/lib/thor/command.rb
155 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/thor-0.19.1/lib/thor/core_ext/hash_with_indifferent_access.rb
156 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/thor-0.19.1/lib/thor/core_ext/ordered_hash.rb
157 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/thor-0.19.1/lib/thor/error.rb
158 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/thor-0.19.1/lib/thor/invocation.rb
159 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/thor-0.19.1/lib/thor/parser/argument.rb
160 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/thor-0.19.1/lib/thor/parser/arguments.rb
161 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/thor-0.19.1/lib/thor/parser/option.rb
162 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/thor-0.19.1/lib/thor/parser/options.rb
163 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/thor-0.19.1/lib/thor/parser.rb
164 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/thor-0.19.1/lib/thor/shell.rb
165 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/thor-0.19.1/lib/thor/line_editor/basic.rb
166 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/x86_64-darwin13.0/readline.bundle
167 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/thor-0.19.1/lib/thor/line_editor/readline.rb
168 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/thor-0.19.1/lib/thor/line_editor.rb
169 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/thor-0.19.1/lib/thor/util.rb
170 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/thor-0.19.1/lib/thor/base.rb
171 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/thor-0.19.1/lib/thor/group.rb
172 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/open-uri.rb
173 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/railties-4.0.5/lib/rails/generators/actions.rb
174 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/thor-0.19.1/lib/thor/core_ext/io_binary_read.rb
175 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/thor-0.19.1/lib/thor/actions/empty_directory.rb
176 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/thor-0.19.1/lib/thor/actions/create_file.rb
177 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/thor-0.19.1/lib/thor/actions/create_link.rb
178 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/thor-0.19.1/lib/thor/actions/directory.rb
179 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/erb.rb
180 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/thor-0.19.1/lib/thor/actions/file_manipulation.rb
181 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/thor-0.19.1/lib/thor/actions/inject_into_file.rb
182 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/thor-0.19.1/lib/thor/actions.rb
183 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/railties-4.0.5/lib/rails/generators/base.rb
184 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/railties-4.0.5/lib/rails/generators.rb
185 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/railties-4.0.5/lib/rails/ruby_version_check.rb
186 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/tmpdir.rb
187 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/tempfile.rb
188 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/activesupport-4.0.5/lib/active_support/core_ext/kernel/reporting.rb
189 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/activesupport-4.0.5/lib/active_support/key_generator.rb
190 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/railties-4.0.5/lib/rails/initializable.rb
191 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/singleton.rb
192 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/activesupport-4.0.5/lib/active_support/core_ext/module/delegation.rb
193 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/activesupport-4.0.5/lib/active_support/deprecation/instance_delegator.rb
194 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/activesupport-4.0.5/lib/active_support/notifications/instrumenter.rb
195 /usr/local/Cellar/ruby/2.1.0/lib/ruby/2.1.0/mutex_m.rb
196 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/activesupport-4.0.5/lib/active_support/notifications/fanout.rb
197 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/activesupport-4.0.5/lib/active_support/per_thread_registry.rb
198 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/activesupport-4.0.5/lib/active_support/notifications.rb
199 /Users/faresalaboud/.rvm/gems/ruby-2.0.0-p481/gems/activesupport-4.0.5/lib/active_support/deprecation/behaviors.rb
....
[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
Abort trap: 6
Searched around and I think you will find luck on this other stack overflow answer. I was about to suggest a more radical move - a complete uninstall of rvm and rails, and reinstalling, but start here first.
If you can't do other rails commands like
rails console
then you will probably have to go this route:
Use this link to nuke your rvm install. And make sure you're following the official rvm install guide here.

Resources