Michael Solovyov
Michael Solovyov
`const mc = new memcached({hosts: [process.env.memcache], autodiscover: true}) ` babel src --out-dir bin src/api.js -> bin/api.js validating package TypeError: Cannot read property 'split' of undefined at Client.splitHost (/private/var/folders/w4/0_jcj9dd67g3ycr39nbzp8kh0000gn/T/9b8b4587-e1c6-4219-a679-a574b6c692fc/node_modules/memcache-plus/lib/client.js:230:19) at Client....
I was trying to use this to see if I could use the bulk api with rails 3.1 and sproutcore 2, but I received the following error after putting buik_api...
Taking the example from the fixtures file in the simply_stored tests for User and Document. When doing a_user.add_doc a_document, we get a 'NameError: uninitialized constant Doc' Because in https://github.com/peritor/simply_stored/blob/master/lib/simply_stored/couch/has_many.rb#L61 we...
fix for this issue: https://github.com/peritor/simply_stored/issues/17
For example when having such a scenario class Post include SimplyStored::Couch belongs_to :owner, :class_name => "User" end class User include SimplyStored::Couch has_many :creations, :foreign_key => "owner_id" end When wanting to...
This was fixed in the 0.6.0 of couch_potato to make it compatible with rails 3.1, since simply_stored is using 0.5.7 the issue is there. See for reference: https://github.com/langalex/couch_potato/pull/39 https://github.com/langalex/couch_potato/issues/40 https://github.com/dozeo/couch_potato/commit/0ff2323ea636c1aa65aa7a9e790fbe37e4095b7a#L1L173
When running 'gem install rocking_chair' I get the following error: ``` ERROR: Error installing rocking_chair: rocking_chair requires simply_stored (= 0.7.0rc3, runtime) ``` simply_stored is currently on the latest version, which...
This plugin is pulling in an old version of android support which causes build issues with latest cordova local notifications plugin. The fix is to replace in plugin.xml : ```...