This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
config.logger = ActionSupport::TaggedLogging.new( | |
TestApp.new(config.paths['log'].first) | |
) | |
config.log_tags = [lambda { |req| | |
session = Session.find_by_session_id(req.cookie_jar["_test_app"]) | |
uid = 'nil' | |
unless session.nil? | |
session_hash = Marshal.restore(Base64.decode64(session.data)) | |
if session_hash['user'] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-gem 'rails', '3.2.3' | |
+gem 'rails', '3.2.21' | |
-gem 'mocha', '0.12.10', :require => false | |
+gem 'mocha', :require => false | |
plus all dependencies of rails3.2.21 updated. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.elem_match(analytics: {analytic: 'ana1'}).asc('analytics.ana1.score') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ ember server | |
version: 0.2.7 | |
Could not find watchman, falling back to NodeWatcher for file system events. | |
Visit http://www.ember-cli.com/#watchman for more info. | |
Livereload server on port 35729 | |
Serving on http://localhost:4200/ | |
2015-07-01 10:40 ember[10544] (CarbonCore.framework) FSEventStreamStart: register_with_server: ERROR: f2d_register_rpc() => (null) (-21) | |
events.js:85 | |
throw er; // Unhandled 'error' event | |
^ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Started GET "/" for 127.0.0.1 at 2015-070-23 | |
Processing by ApplicationController#ng as HTML | |
undefined method `split' for nil:NilClass | |
Filter chain halted as :authenticate rendered or redirected | |
Completed 401 Unauthorized in 1ms |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- ng/components/projects/_ana.html --> | |
doesn't works |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div ng-controller='NavController'> | |
<div ng-if='auth.isAuthenticated()'> | |
<div class='slideInLeft' ng-include='topnav'></div> | |
<div class='slideInLeft' ng-include='sidenav'></div> | |
</div> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Failure | |
test_test(DocControllerTest) [/local/proj/app/test/functional/docs_controller_test.rb:2]: | |
The recognized options <{"controller"=>"docs", | |
"action"=>"pdf", | |
"id"=>"aaaaaaa"} did not match <{"controller"=>"docs", | |
"action"=>"pdf", | |
"id"=>"aaaaaaa", | |
"opt"=>"blah blah"}>, difference: <{"opt"=>"blah blah"}> ... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
clang: error: unsupported option '-V -isysroot' | |
.. | |
.. | |
clang: error: unknown argument: 'qversion' | |
.. | |
.. | |
conftest.c:10:10: fatal error: 'ac_nonexistent.h' file not found | |
#include <ac_nonexistent.h> | |
^ | |
1 error generated |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
angular.module('app') | |
.factory('UserService', [ | |
'$http', | |
'LocalService', | |
function($http, LocalService) { | |
var service = {}; | |
var _id, | |
_token, | |
_profile, |