Ruby 1.9 is the latest version of the ruby language. Ruby is a dynamic language that focuses on simplicity and expressiveness.
57
votes
13answers
18k views
Invalid gemspec because of the date format in specification
When I include a gem that I made, thanks to Bundler (version 1.0.12), in a Gemfile and then I try to bundle or to rake just like that:
$ rake
I've got this error message:
Invalid gemspec in ...
42
votes
8answers
8k views
Ruby: require vs require_relative - best practice to workaround running in both Ruby <1.9.2 and >=1.9.2
What is the best practice if I want to require a relative file in Ruby and I want it to work in both 1.8.x and >=1.9.2?
I see a few options:
just do $LOAD_PATH << '.' and forget everything
do ...
39
votes
4answers
24k views
invalid multibyte char (US-ASCII) with Rails and Ruby 1.9
I'm using Ruby 1.9.1 with Rails 2.3.4 My application is to handle text input
If I try something like (the inside quotation marks look different)
text = "”“"
I get the following error:
...
36
votes
3answers
14k views
What is the difference between Ruby 1.8 and Ruby 1.9
I'm not clear on the differences between the "current" version of Ruby (1.8) and the "new" version (1.9). Is there an "easy" or a "simple" explanation of the differences and why it is so different?
20
votes
15answers
5k views
Really cool features in Ruby 1.9
With the Ruby 1.9.2 release on the horizon, it's time to get developers excited about Ruby 1.9. What are some nice things you can do in Ruby 1.9 that you can't do in Ruby 1.8?
16
votes
4answers
640 views
Why Ruby 1.9 GUI hangs if i do any intensive computation in separate Ruby thread?
Ruby 1.9 suppose to have native threads, and GIL is supposed to lift if some threads enters native code (like GUI toolkit main loop or C implementation of some Ruby lib). But if i start following ...
15
votes
7answers
2k views
How can I avoid putting the magic encoding comment on top of every UTF-8 file in Ruby 1.9?
I have a Rails project with a lot of Cyrillic strings in it.
It worked fine on Ruby 1.8, but Ruby 1.9 assumes source files are US-ASCII-encoded unless you provide an # encoding: utf-8 comment at the ...
13
votes
1answer
3k views
How can I choose Ruby version on Heroku?
I use Ruby 1.9.x syntax in my Rails 3 app, but after pushing it to Heroku it crashes due to older Ruby version (1.8). How can I control it?
11
votes
6answers
957 views
Has anyone successfully deployed a Rails project with Ruby 1.9.1?
Last week I successfully completed the transition of all our company applications from Ruby 1.8.6 to Ruby 1.8.7 including local and remote configurations.
From now on, development won't need to ensure ...
10
votes
3answers
911 views
Is autoload thread-safe in Ruby 1.9?
It seems to me that the Ruby community has been freaking out a little about autoload since this famous thread, discouraging its use for thread safety reasons.
Does anyone know if this is no longer ...
10
votes
4answers
3k views
Can I set the default string encoding on Ruby 1.9?
This might sound minor, but it's been driving me nuts. Since releasing an application to production last Friday on Ruby 1.9, I've been having lots of minor exceptions related to character encodings. ...
10
votes
4answers
10k views
`gem install mongrel` fails with ruby 1.9.1
I initiated myself into rails development yesterday.
I installed ruby 1.9.1, rubygems and rails.
Running gem install mongrel worked fine and ostensibly installed mongrel too. I am slightly puzzled ...
9
votes
0answers
88 views
Are there any good mutation testing tools for ruby 1.9 and RSpec2?
I used to use Heckle, but it is incompatible with ruby 1.9 because of issues with ParseTree. I've looked for alternatives, but the only thing that looked promising was Chaser, and that did not have ...
9
votes
1answer
2k views
ruby 1.9.2 blows up with json gem dependency
I am having issues with the json gem and ruby 1.9.2? I am upgrading to rails 3.0.3 and whenever I try to boot the environment it blows up. This is from a empty test project with only json gem 1.4.6 as ...
9
votes
3answers
536 views
Should I use Ruby 1.9.2 with my new web app?
Starting a new web app with Rails 3. I'm still relatively new to web development and have really enjoyed all the internet resources available to me while working in Ruby 1.8.7 and Rails 2.3.5. Any ...
8
votes
2answers
665 views
Ruby 1.9 Array.to_s behaves differently?
i wrote a quick little application that takes a base file of code with some keywords, a file of replacements for the keywords, and outputs a new file with the keywords replaced.
When i was using Ruby ...
8
votes
2answers
4k views
Rails 3 invalid multibyte char (US-ASCII)
I found a similar post here but I can't solve the problem anyway.
I got this
/home/fra/siti/Pensiero/db/seeds.rb:32: invalid multibyte char (US-ASCII)
/home/fra/siti/Pensiero/db/seeds.rb:32: invalid ...
8
votes
2answers
2k views
Ruby 1.9 hash with a dash in a key
In ruby 1.9 there is a way to define this hash with the new syntax?
irb> { a: 2 }
=> {:a=>2}
irb> { a-b: 2 }
SyntaxError: (irb):5: syntax error, unexpected tLABEL
{ a-b: 2 }
^
...
8
votes
1answer
452 views
autospec with multiple versions of Ruby
I've installed Ruby 1.9.1 alongside Ruby 1.8.6 on my Mac OS X Leopard using the prefix and program-suffix options so that I can run Ruby 1.9 stuff by issuing ruby19, irb19, gem19, etc. commands.
I've ...
7
votes
2answers
52 views
How do I get the class of a BasicObject instance?
I have a script that iterates using ObjectSpace#each_object with no args. Then it prints how many instances exist for each class.
I realized that some classes redefine the #class instance method, so ...
7
votes
2answers
1k views
What does “Anonymous modules have no name to be referenced by” really mean?
I'm upgrading my Rails app to work with Ruby 1.9 and I keep encountering errors like this:
Anonymous modules have no name to be referenced by
...
7
votes
3answers
1k views
Why are all strings ASCII-8BIT after I upgraded to Rails 3?
I upgraded to RoR 3.0.1 and Ruby to 1.9.2. Now all the strings in my views are ASCII-8BIT?
I believe I have my app set up to use UTF 8
application.rb
config.encoding = "utf-8"
database.yml
...
7
votes
3answers
2k views
Ruby 1.9, YAML, and string encodings: how to lead a life of sanity?
It seems to me that the YAML library that ships with ruby 1.9 is encoding-deaf.
What this means is that when generating YAML, it'll take any string of bytes, and escape any byte sequence that doesn't ...
7
votes
5answers
2k views
Ruby 1.9.1-p234, Passenger 2.2.5, Rails 2.3-stable closed stream on POST request
I've setup Ruby 1.9.1 (p234) on a Ubuntu server. I'm trying to deploy a Rails app which vendors Rails 2.3-stable on Apache 2.2/Passenger 2.2.5.
GET requests work fine, POST requests break immediately ...
7
votes
7answers
3k views
Ruby Performance
I'm pretty keen to develop my first Ruby app, as my company has finally blessed its use internally.
In everything I've read about Ruby up to v1.8, there is never anything positive said about ...
6
votes
2answers
610 views
Why won't Ruby 1.9.2-head install using RVM?
I have been trying to install Ruby 1.9.2-head using RVM, but have been getting this error message:
echo executable host ruby is required
Is it compulsory to have system Ruby in order to install ...
6
votes
0answers
210 views
Converting Proc and Method to String [closed]
Possible Duplicate:
How to extract the code from a Proc object?
What is the best way to turn a proc or method object into its source string? So far, I have tried two approaches. One is to ...
6
votes
1answer
86 views
commenting restriction
In ruby 1.9, conditions on where to end a line was relaxed, so that we can now start a line with a period showing a method call. This is convenient when we have chained and non-chained methods mixed ...
6
votes
1answer
86 views
Is there a way to call ruby1.9 without loading rubygems?
So ruby 1.9 is really nice in that it'll automatically require rubygems, and hence when you call require 'somegem' without first requiring rubygems it'll work, and that's generally awesome.
But I ...
6
votes
1answer
116 views
Functional unwrapping of nested array
Given an array containing other nested arrays, I want to create an array containing only the elements from the first array. For example [["1", "2"], "3", [["4"]]] should evaluate to ["1", "2", "3", ...
6
votes
1answer
9k views
write csv in ruby 1.9 and CSV::Writer
i have a code that works fine with ruby 1.87 but dont works with ruby 1.9. It says that CSV::Writer is undeclared but it still part of the rdoc. Does the csv api changed, after the fastercsv merge, or ...
6
votes
3answers
9k views
incompatible character encodings: ASCII-8BIT and UTF-8 in Ruby 1.9
I'm getting the following error with my Ruby 1.9 & Rails 2.3.4. This happens when user submits a non-ASCII standard character.
I read a lot of online resources but none seems to have a solution ...
6
votes
4answers
2k views
HTML tidy/cleaning in Ruby 1.9
I'm currently using the RubyTidy Ruby bindings for HTML tidy to make sure HTML I receive is well-formed. Currently this library is the only thing holding me back from getting a Rails application on ...
5
votes
2answers
75 views
ruby self.class.class_eval or singleton_class.class_eval
What is difference when I do
class T
def initialize
self.class.class_eval do
def test
return self.class.object_id
end
end
end
end
and
class T
def initialize
...
5
votes
2answers
106 views
Is there a way in ruby 1.9 to remove invalid byte sequences from strings?
Suppose you have a string like "€foo\xA0", encoded UTF-8, Is there a way to remove invalid byte sequences from this string? ( so you get "€foo" )
In ruby-1.8 you could use ...
5
votes
1answer
67 views
adding a char encoding to ruby 1.9.x?
If one wanted to add a new char encoding to 1.9.x, supported just the same as the built-in encodings, how would you go about doing it? Can you do it with code in ruby, or would it require a C patch in ...
5
votes
2answers
132 views
What aynchronous Ruby server to use?
We're starting development of the new game project using Ruby. We decided to use one of the asynchronous Ruby servers, but we cannot decide which one to choose. Options are:
Goliath
Cramp + ...
5
votes
1answer
764 views
How can I get Qt4 running with ruby 1.9.2 on Windows 7?
Summary
I'm writing a Ruby 1.9.2 app using Qt4 for its GUI which I want to distribute on Linux, OS X and Windows. I have the app running fine on everything except my Windows 7 64-bit box.
There ...
5
votes
2answers
177 views
Can I dynamically define a Ruby method that takes a block?
I know that I can dynamically define methods on a class using define_method, and that I specify the parameters this method takes using the arity of the block.
I want to dynamically define a method ...
5
votes
6answers
379 views
How can I use US-style dates in Rails 3.1 using Ruby 1.9?
I'm in the U.S., and we usually format dates as "month/day/year". I'm trying to make sure that my Rails 3.1 app, using Ruby 1.9, assumes this format everywhere, and works the way it did under Ruby ...
5
votes
2answers
437 views
Unable to install rmagick, ruby 1.9, rails 3, windows
I've been googling for a while but couldn't find anything that works.
Basically, when I put gem 'rmagick' in my gemfile and run bundle install, I get the following error message:
Installing ...
5
votes
5answers
167 views
I'm learning to program and have chosen Ruby. Should I upgrade to Ruby 1.9?
I’m a complete non-programmer who is learning to program with Ruby and the Rails framework.
I’m currently using Ruby 1.8.7 and Rails 3.0.3, but I’m wondering if I should upgrade to Ruby 1.9 since I ...
5
votes
3answers
308 views
How do I reference a function in Ruby?
In python, it's fairly straightforward to reference a function:
>>> def foo():
... print "foo called"
... return 1
...
>>> x = foo
>>> foo()
foo called
1
...
5
votes
3answers
1k views
What's the difference between Process.fork and Process.spawn in Ruby 1.9.2
What's the difference between Process.fork and the new Process.spawn methods in Ruby 1.9.2 and which one is better to run another program in a subprocess? As far as I understand Process.fork accepts ...
5
votes
3answers
299 views
Ruby 1.9 slower than Ruby 1.8?
I have a Rails 2.3.8 app with an action that pulls a large amount of data from a database and renders it with anywhere from 300-600 partials (recursively rendering a tree-type structure). Benchmarking ...
5
votes
1answer
666 views
Reading ASCII-encoded files with Ruby 1.9 in a UTF-8 environment
I just upgraded from Ruby 1.8 to 1.9, and most of my text processing scripts now fail with the error invalid byte sequence in UTF-8. I need to either strip out the invalid characters or specify that ...
5
votes
2answers
219 views
Authlogic_OpenID - “uninitialized constant Rack::OpenID”
So I followed the railscast tutorial (http://railscasts.com/episodes/170-openid-with-authlogic) and used the old version of the plugin from Ryan's git file. I can now successfuly create/register a ...
5
votes
1answer
800 views
implicit argument passing of super from method defined by define_method() is not supported. Specify all arguments explicitly. (ActionView::TemplateError)
Most of you should already know Pragmatic book's "Agile web dev with rails" (third edition). On page 537 - 541 it has "Custom Form Builders" code as follows:
class TaggedBuilder < ...
5
votes
3answers
2k views
making ruby 1.9 the default ruby on ubuntu
Is there any way, on Ubuntu 9.04, to install ruby 1.8 as ruby1.8 (or get rid of it altogether) and have ruby 1.9 be the default ruby?
5
votes
2answers
899 views
Is it possible to define a block with default arguments in Ruby?
This question deals with optional arguments passed to a Ruby block. I'm wondering if it's also possible to define arguments with default values, and what the syntax for that would be.
At first ...