Tag Info

Hot answers tagged

11

They are unary + and - methods. They are called when you write -object or +object. The syntax +x, for example, is replaced with x.+@. Consider this: class Foo def +(other_foo) puts 'binary +' end def +@ puts 'unary +' end end f = Foo.new g = Foo.new + f # unary + f + g # binary + f + (+ g) # unary + # binary + Another less ...


7

What you have there is not a hash. It's an array of hashes (well, array of one hash, to be precise). First you have to address proper element in the array (first one), then address its value by key. @myhash[0]['id'] # => '123456789' # or @myhash.first['id'] # => '123456789' I get the following error "can't convert Symbol into Integer" You ...


7

Both __FILE__ and __LINE__ get replaced by literals directly in the parser: case keyword__FILE__: return NEW_STR(rb_external_str_new_with_enc(ruby_sourcefile, strlen(ruby_sourcefile), rb_filesystem_encoding())); case keyword__LINE__: return NEW_LIT(INT2FIX(tokline)); In other words, they behave ...


6

TL;DR: A simple rule of thumb is to use symbols every time you don't want to print the output. You should be worrying with what symbols are mean to be, not only when you should use symbols. Symbols are mean to be identifiers, and so should be used internally in your software as it. As for the implementation, there is several differences between symbols ...


4

unexpected $end, expecting keyword_end This means that the parser reached the end of the file ($end) while looking for the keyword end. In other words, you're missing an end, probably the one for your class. You haven't posted enough code to tell for sure.


4

Use String.rindex: Returns the index of the last occurrence of the given substring or pattern (regexp) in str. Returns nil if not found. x = 'hello * there * *' puts x.rindex('*') # 16


3

Your file restaurant.rb is read by a method call require in guide.rb, which is defined in kernel_require.rb. Within its method definition, it has this part: def require path ... rescue LoadError => load_error ... raise load_error end When you have a syntax error in the file that is read, that will raise a LoadError, which is rescued, and will ...


3

In Rails there's Enumerable#index_by: category_hash = Category.all.index_by(&:id) Without Rails I'd use: Hash[Category.all.map{ |c| [c.id, c] }] Hash::[] creates a Hash from both, flat and nested Arrays: Hash["a", 100, "b", 200] #=> {"a"=>100, "b"=>200} Hash[ [ ["a", 100], ["b", 200] ] ] #=> {"a"=>100, "b"=>200}


3

As you can read in the calls stack trace, DateTime.new is sending the method div to the string "05" that is not defined: [...]/bin/SendAbsentees.rb:213:in `new': undefined method `div' for "05":String That is because DateTime.new expects integers as arguments. You have to convert to integers the elements of date_split before passing them to DateTime.new: ...


2

In Pry, if you install the pry-doc plugin first, you should be able to view Enumerable#sort_by source. The pry-doc plugin is required to expose C-level docs and source. [13] pry(main)> $ Enumerable#sort_by From: enum.c (C Method): Owner: Enumerable Visibility: public Number of lines: 48 static VALUE enum_sort_by(VALUE obj) { VALUE ary, buf; ...


2

Array#delete_if -> Deletes every element of self for which block evaluates to true. $ned = "foo" $med = "" LIST = [:nrd, :mrd_y] p LIST.object_id #=> 84053120 list = LIST p LIST.object_id #=> 84053120 new_list = list.delete_if { |element| case element when :nrd then $ned.empty? when :mrd_y then $ned.empty? || $med.empty? end } List and ...


2

Ruby Hash looks like {}, while [] is Array. Your object is array with first and only item being hash. To access it use the following: @myhash.first['id'] # 123456789'


2

print "Please Enter your Input" user_input = gets.chomp user_input.downcase! user_input value is what the user entered, in lowercase print "Please Enter your Input" user_input = gets.chomp user_input.downcase user_input value is what the user entered The difference resides in the value of user_input, not in what gets printed.


2

remove the end below sqlite and jquery-rails, remove cdacd at the end of uglifier, and correct the indentation like this: source 'https://rubygems.org' gem 'rails', '3.2.13' gem 'sqlite3', '1.3.5' group :assets do gem 'sass-rails', '~> 3.2.3' gem 'coffee-rails', '~> 3.2.2' # See https://github.com/sstephenson/execjs#readme for more ...


2

This answer may be a bit vague as it's not clear from your question which class the self.search(year) method is in, but let me know if this doesn't help and we can try and go further. My guess is that, unlike in the number_of_payments_in method, in the self.search method you haven't specified an appropriate table in the where call. In ...


1

There is an option ActiveRecord::Base.include_root_in_json that controls the top-level behaviour of as_json method. The name is self-explanatory, I guess. As for a breaking API change: If you dig into the source, you can see that the default value for this option was changed to true in Rails 4.0.0.beta1 but later it was reverted to false in Rails 4.0.0.rc1. ...


1

Here's one way to do it using .sort instead of .sort_by: dogs = [ { name: "Rover", gender: "Male" }, { name: "Max", gender: "Male" }, { name: "Fluffy", gender: "Female" }, { name: "Cocoa", gender: "Female" } ] # gender asc, name asc p(dogs.sort do |a, b| [a[:gender], a[:name]] <=> [b[:gender], b[:name]] end) # gender desc, name asc ...


1

Both methods behave the same, but the returned objects are different. downcasereturns a modified copy of user_input. In other words, user_input stays the same. downcase! returns user_input modified. Note that this can be more memory efficient, since you don't generate a copy of user_input. In both cases, they return a downcase version of user_input. ...


1

\w doesn't match space, and + is greedy unless you follow it by ?, so Ruby tries to match as many \w as possible, as long as the rest of the express also matches, effectively consuming Thi in the first capture, and s in the second. When you add a space, Ruby matches as many \w until a space character, and then as many \w, therefore matching This and is. ...


1

the three spaces: [32,160,32] ASCII 160 is a non breaking space usually found in HTML, and apparently not recognized as squish as a space. Try to replace it before: string.gsub(160.chr, ' ').squish


1

The OptionParser's parse! takes an array of arguments. By default, it will take ARGV, but you can override this behaviour like so: Basic Approach def build_option_parser(command) # depending on `command`, build your parser OptionParser.new do |opt| # ... end end args = ARGV command = args.shift # pick and remove the first option, do some ...


1

If i understand correctly there is a file named guide.rb which does: require restaurant Basically, require is a function implemented in kernel_require.rb whose prototype is like: require path Here path is restaurant.rb and this function fails because the require function is unable to load the rb file because of syntax error. Remember you are looking ...


1

Acording to the installation manual at http://beginrescueend.com/rvm/install/ You should run this command: echo '[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" # Load RVM function' >> ~/.bash_profile It will appended to your .bash_profile file, and loaded in every new terminal. You may need to logout and login again if ...


1

To include the association in the output of to_json you need to pass :include => :twitter_lists to to_json There is no connection between the associations that are eager loaded and the associations that are included in the output of to_json - the two are completely independant.


1

Summary: Do heroku run rake db:migrate Details: It looks like the carts table does not exist. Please show the rails migration that creates it. Are you sure the migration has run on Heroku, not just locally? If you do a heroku run rake db:migrate what do you get?


1

The relevant portion of the stack trace in question: /home/***/.rvm/.../rubygems/core_ext/kernel_require.rb:45:in `require': .../food_finder/lib/restaurant.rb:84: syntax error, unexpected end-of-input, expecting keyword_end (SyntaxError)** It does say where the error is. The syntax error is wrapped in an error from require because that's where the ...


1

The easiest way to implement it would be to have a class variable getter. module Model def self.included(base) base.extend(ClassMethods) end module ClassMethods def keys @keys ||= {} end def field(name, opts) @keys ||= {} @keys[name] = opts end end def initialize(attributes) # stuff puts ...


1

s = "@a ipsum lorem @b dolor sit amet @c consectetur adipisicing" hs = {} s.split('@').drop(1).each{|val| tmp = val.split(' '); hs["@#{tmp.shift}"] = tmp.join(' ') } # puts hs #=>{"@a"=>"ipsum lorem", "@b"=>"dolor sit amet", "@c"=>"consectetur adipisicing"}


1

I had the exact same error when running 'rvm requirements'. That log file doesn't give any hints other than a package failed to install. This is what worked for me: go from the last package before it fails, in your case sqlite. Then install manually like so: brew install sqlite Then run rvm requirements again, it will probably fail at an earlier package. ...


1

try using a cursor: http://rdoc.info/gems/twitter/Twitter/API/FriendsAndFollowers#friends-instance_method (for example, https://gist.github.com/kent/451413)



Only top voted, non community-wiki answers of a minimum length are eligible