unknown wrote:> you could pull the source down and generate the documentation via rake > > On 8/22/06, rekab <jbtuttle-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >> >> Does anyone know how to install/use Active Merchant? I can''t find any >> documentation online. Any help would be most appreciated. >> >> Thanks!With the active_merchant plugin installed under vendor/plugins, i got as far as cd-ing into active_merchant and running the command ''rake'' which started to do something but then failed with a few missing dependencies... without any documentation its a bit hard to know what to do from here... any suggestions welcome -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk -~----------~----~----~----~------~----~------~--~---
Cody Fauser
2006-Oct-13 14:19 UTC
Re: Does anyone know how to install/use Active Merchant?
Once Active Merchant is in your Rails plugins folder like vendor/plugins/active_merchant it is already installed because an init.rb file is included, which Rails uses to load the plugin. If you are only interested in the rdoc documentation then you can cd into the active_merchant folder and do: rake rdoc You will then be able to open doc/index.html to view the generated documentation. If you are wanting to run the unit tests for Active Merchant then you will need a couple of gems installed: money, activesupport, actionpack There are also remote tests that you can run with: rake test_remote Some of the remote tests will fail if you haven''t configured that particular gateway with your own test account in the remote test files. Not all of the gateway providers provide a publicly accessible test account that we can include. The best way to see the usage for the gateway you''re interested in is to just take a look at the unit tests and remote tests for the particular gateway under the test/unit and test/remote_tests folders respectively. I hope this helps. Let me know if you need any help with a particular gateway or other problem. Cody On 10/13/06, xia <rails-mailing-list-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> > unknown wrote: > > you could pull the source down and generate the documentation via rake > > > > On 8/22/06, rekab <jbtuttle-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > >> > >> Does anyone know how to install/use Active Merchant? I can''t find any > >> documentation online. Any help would be most appreciated. > >> > >> Thanks! > > With the active_merchant plugin installed under vendor/plugins, i got as > far as cd-ing into active_merchant and running the command ''rake'' which > started to do something but then failed with a few missing > dependencies... > > without any documentation its a bit hard to know what to do from here... > any suggestions welcome > > > -- > Posted via http://www.ruby-forum.com/. > > > >-- Cody Fauser http://www.codyfauser.com http://www.oreilly.com/catalog/rjsrails (RJS Templates for Rails) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk -~----------~----~----~----~------~----~------~--~---