0
votes
1answer
25 views
Download YouTube with Ruby (sourcecode)
Hi! I wish to download a video from YouTube and then extract its audio. Can anyone point me to some Ruby code to download a video? Thanks!
0
votes
4answers
34 views
Consistent rounding of floating points in Ruby
I understand due to the inexact representation of floating points, the following code 'feels' inconsistent.
"%.1f" % 1.14 # => 1.1
"%.1f" % 1.15 # => 1.1
"%.1f" % 1.16 # => 1.2
"%.0f" % 1.4 …
0
votes
4answers
53 views
Removing text within parentheses (parentheses within parentheses prob)
Hi, I am trying to remove text that is within parentheses (along with the parentheses themselves) but am having trouble with the scenario where there are parentheses within parentheses. This is the …
0
votes
4answers
116 views
Is it worth learning Python over Ruby and PHP for Web Development? [closed]
Is it worth learning Python over Ruby and PHP for Web Development? If so why?
Thank you in advance.
EDIT: Related on StackOverflow:
Should I learn Ruby or Python?
Django or RoR
Rails or Django? …
2
votes
3answers
80 views
Inconsistent rounding in Ruby?
Does Ruby have a bug in its rounding? Why does it behave like this:
>> [1.14, 1.15, 1.16].map{|x| "%.1f" % x}
=> ["1.1", "1.1", "1.2"]
>> [1.4, 1.5, 1.6].map{|x| "%.0f" % x}
=> …
0
votes
1answer
34 views
sending emails with ruby where the address has a gmail style ‘+’ filter
When I try and send an email say me+test@gmail.com it throws (Net::SMTPSyntaxError) "501 5.1.3 Bad recipient address syntax" is it me or is the syntax checker a little too strict?
Has anyone come …
1
vote
1answer
33 views
Starting and Stopping Ruby Threads
How would I Start and stop a separate thread from within another thread?
loop_a_stopped = true
loop_a = Thread.new do
loop do
Thread.stop if loop_a_stopped
# Do stuff
…
0
votes
1answer
32 views
Is it possible to make a sinatra application into a Rails engine?
I'm considering using Integrity as a continuous integration tool, but don't want to (or can't) set up a separate domain for the application.
Is it possible to get a Sinatra app (like integrity), …
0
votes
0answers
15 views
Sinatra / Rack fails with non-ascii characters in url
I am getting Encoding::UndefinedConversionError at /find/Wrocław
"\xC5" from ASCII-8BIT to UTF-8
For some mysterious reason sinatra is passing the string as ASCII instead of UTF-8 as it should.
I …
0
votes
3answers
47 views
How to display a variable inside string with Ruby
So I have the following code that reads a text file line by line.
Each line ends with a return carriage. The code below outputs the following:
define host {
use servers
host_name …
0
votes
1answer
16 views
Ruby: Cannot Install Watir Gem On Windows
Watir's site says I need Ruby 1.8.6, which I'm running. And windows installation should be as simple as gem install watir. But when I run that, I get this:
C:\Users\Ryguy\Code>gem install watir
…
0
votes
0answers
6 views
XSLT for transforming structure + Ruby for transforming values?
We have pretty big (~20mb) xml files from different sources that we want to transform into a common format.
For structural transformations (element names, nesting, etc) we decided to use XSLT (1.0). …
0
votes
1answer
15 views
Netbeans 6.8 missing Interactive Ruby Window
I installed Netbeans IDE 6.8 today to use it while learning Ruby.
Here the specifications:
Product Version: NetBeans IDE 6.8
(Build 200912041610)
Java: 1.6.0_17; Java HotSpot(TM)
Client …
0
votes
1answer
14 views
Nokogiri::XML::Builder with hypen in element name
I am trying to build an XML document using Nokogiri. Some of the elements have hyphens in them. To illustrate the problem is an example:
require "nokogiri"
builder = Nokogiri::XML::Builder.new do …
2
votes
1answer
42 views
How can I skip email validation with Authlogic in Rails?
I use Authlogic for authentication in my Rails project.
It provide default validation for email and login field.
But, I want to allow email to be null for join because my service is for mobile and …
