On Tue, Nov 11, 2008 at 9:00 PM, James B. Byrne <[EMAIL PROTECTED]> wrote:
> I am confused. I ran this in my rails project root:
>
> $ git submodule status
>  3b76fda741dfe2de84b4d5a33766653589ad36fb vendor/plugins/rspec
> (1.1.4-22-g3b76fda)
>  5adb47e5bed39569b435fadf8c34bd836d4287d3 vendor/plugins/rspec-rails
> (1.1.4-10-g5adb47e)
>
> $ git update # does nothing
>

Try this:

cd vendor/plugins/rspec
git checkout master
git pull origin master
cd ../../..
git status
git add vendor/plugins/rspec
git commit -m "Updated to newer RSpec"

etc...

HTH,
Aslak
> I checked my .gitmodules and .git/config entries and they both say this:
>
> [submodule "vendor/plugins/rspec"]
>        path = vendor/plugins/rspec
>        url = git://github.com/dchelimsky/rspec.git
> [submodule "vendor/plugins/rspec-rails"]
>        path = vendor/plugins/rspec-rails
>        url = git://github.com/dchelimsky/rspec-rails.git
>
>
> However, the rspec.info page says the the most recent rspec version is
> 1.1.11.  So, what is going on?  Where is the 1.1.11 git repository?
> rspec.info points to http://github.com/dchelimsky/rspec/wikis/home  which
> refers one to git://github.com/dchelimsky/rspec.git which is what I
> already have.  Am I missing something obvious here?
>
> P.S.
>
> I am a digest subscriber so I very much appreciate a directly addressed
> copy of any replies (reply all); and
>
> I track the archives at ruby-forge when I have a question to the list
> outstanding but I see no traffic for this list after Tue Nov 11 09:36:03
> EST 2008, including my own previous message.  Is the list down or are the
> archives generated only periodically?
>
>
> --
> ***          E-Mail is NOT a SECURE channel          ***
> James B. Byrne                mailto:[EMAIL PROTECTED]
> Harte & Lyne Limited          http://www.harte-lyne.ca
> 9 Brockley Drive              vox: +1 905 561 1241
> Hamilton, Ontario             fax: +1 905 561 0757
> Canada  L8E 3C3
>
> _______________________________________________
> rspec-users mailing list
> rspec-users@rubyforge.org
> http://rubyforge.org/mailman/listinfo/rspec-users
>
_______________________________________________
rspec-users mailing list
rspec-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/rspec-users

Reply via email to