Steve Aquino
Steve Aquino
Thanks for pointing that out! I've only been using whole numbers up until now which is why I didn't see this sooner, will get this fixed in the next update.
I'd love to run some tests but I'm getting this issue when running `bundle exec rake test` : ``` /home/steve/Desktop/wepay-rails/lib/wepay-rails.rb:1:in `require': no such file to load -- active_record (LoadError) from...
Including `rails` or `active_model` in Gemfile won't do the trick. Getting this error: ``` /home/steve/.rvm/gems/ruby-1.9.2-p136/gems/rake-0.9.2/lib/rake/ext/module.rb:36:in `const_missing': uninitialized constant WepayRails::Rails (NameError) from /home/steve/Desktop/wepay-rails/lib/wepay-rails.rb:19:in `' ``` It looks like the line declaring...
Adding `require 'rails/all'` in test/helper.rb seems to have done the trick. I'm not closing this comment yet because I'm still not certain this is the proper way to test this...
Ok I've got tests working by requiring 'rails/all' in `test/helper.rb` which keeps us from having to mess with the actual core files. Will try to get some tests and the...
Added some preliminary tests that just make sure the gem loads properly with config settings. More tests still needed..
Yes it looks like there's an error with Ruby 1.8 support; I used the new hash syntax instead of the old rocket style `{key: value} instead of {:key => value}`...
My project already uses `crypto-js` and I was able to resolve this by adding the following to my `webpack.config.js` file: ``` config.resolve.alias['crypto'] = 'crypto-js'; ```
I don't know if it's helpful, but I've written my own reporter that works with the current version of protractor (3.0). It's very simple, but it could be used as...