Had a problem with local testing of my newly-built Gem. Bundler couldn't find the Gem at all when specified using :path => ~/src/rails/my_gem/pkg. When I pushed to Github and changed the Gemfile line to use :git =>, running bundle pulled the built Gem down from Github but then had a message that said
Could not find gem '(redacted) (>= 0) ruby' in git://github.com/jdickey/(redacted).git (at master).
Source does not contain any versions of '(redacted) (>= 0) ruby'
It would only work when I pushed the Gem to rubygems.org. This strongly implies to me that I should have added a source line to my Gemfile, but the episode didn't seem to cover that. Should it have?
Great!
Here is the link to Readme Driven Development by Tom Preston-Werner
Excellent cast. Here is a link to the Engine Yard Blog mentioned in the screen cast.
Ryan,
It looks like you blog-after directory in the source code is not updated with the format_url method.
Nice screencast!
But I believe that screencasts that help people to grow the community like creating ruby gems should not be PRO screencasts.
Ryan
blog_after and blog_before are not updated in download package
Just an FYI, I had to add Rake as a dependency in my
.gemspec
file. I was using Bundler 1.1.3 when I worked through this episode.which app was Rails extracted from?
Basecamp
Had a problem with local testing of my newly-built Gem. Bundler couldn't find the Gem at all when specified using
:path => ~/src/rails/my_gem/pkg
. When I pushed to Github and changed theGemfile
line to use:git =>
, runningbundle
pulled the built Gem down from Github but then had a message that saidIt would only work when I pushed the Gem to rubygems.org. This strongly implies to me that I should have added a
source
line to myGemfile
, but the episode didn't seem to cover that. Should it have?