xing-framework 0.2.3 → 0.2.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. checksums.yaml +4 -4
  2. data/bin/xing-rvm-setup-env +8 -0
  3. data/default_configuration/base_app/.bibliotech/config.yaml +12 -0
  4. data/default_configuration/base_app/.codeclimate.yml +36 -0
  5. data/default_configuration/base_app/.csslintrc +2 -0
  6. data/default_configuration/base_app/.eslintignore +1 -0
  7. data/default_configuration/base_app/.eslintrc +213 -0
  8. data/default_configuration/base_app/.git/tags +183 -0
  9. data/default_configuration/base_app/.pivotal-brancher/config.yaml +1 -0
  10. data/default_configuration/base_app/.rubocop.yml +1168 -0
  11. data/default_configuration/base_app/.ruby-version +1 -0
  12. data/default_configuration/base_app/API_DOC/.keep +0 -0
  13. data/default_configuration/base_app/Gemfile.lock +4 -4
  14. data/default_configuration/base_app/Rakefile +3 -1
  15. data/default_configuration/base_app/backend/.pivotal-brancher/config.yaml +2 -0
  16. data/default_configuration/base_app/backend/.ruby-gemset.example +1 -0
  17. data/default_configuration/base_app/backend/.ruby-version +1 -0
  18. data/default_configuration/base_app/backend/.ruby-version.06.05.2015-10:38:25 +1 -0
  19. data/default_configuration/base_app/backend/.ruby-version.example +1 -0
  20. data/default_configuration/base_app/backend/app/mappers/.gitkeep +0 -0
  21. data/default_configuration/base_app/backend/app/serializers/.gitkeep +0 -0
  22. data/default_configuration/base_app/backend/app/workers/.gitkeep +0 -0
  23. data/default_configuration/base_app/backend/db/migrate/.gitkeep +0 -0
  24. data/default_configuration/base_app/backend/lib/tasks/.gitkeep +0 -0
  25. data/default_configuration/base_app/backend/spec/controllers/.gitkeep +0 -0
  26. data/default_configuration/base_app/backend/spec/mappers/.gitkeep +0 -0
  27. data/default_configuration/base_app/backend/spec/routing/.gitkeep +0 -0
  28. data/default_configuration/base_app/backend/spec/serializers/.gitkeep +0 -0
  29. data/default_configuration/base_app/config/deploy.rb +24 -7
  30. data/default_configuration/base_app/frontend/.jshintrc +15 -0
  31. data/default_configuration/base_app/frontend/.pivotal-brancher/config.yaml +1 -0
  32. data/default_configuration/base_app/frontend/.ruby-version +1 -0
  33. data/default_configuration/base_app/frontend/.travis.yml +12 -0
  34. data/default_configuration/base_app/frontend/src/common/resources/.gitkeep +0 -0
  35. data/default_configuration/templates/backend/config/database.yml +22 -0
  36. data/default_configuration/templates/backend/config/database.yml.ci +9 -0
  37. data/default_configuration/templates/backend/config/database.yml.example +22 -0
  38. data/default_configuration/templates/backend/config/secrets.yml +57 -0
  39. data/default_configuration/templates/backend/config/secrets.yml.ci +21 -0
  40. data/default_configuration/templates/backend/config/secrets.yml.example +57 -0
  41. data/default_configuration/templates/backend/gitattributes +1 -0
  42. data/default_configuration/templates/backend/gitignore +46 -0
  43. data/default_configuration/templates/frontend/.gitattributes +1 -0
  44. data/default_configuration/templates/frontend/.gitignore +12 -0
  45. data/default_configuration/templates/frontend/gitattributes +1 -0
  46. data/default_configuration/templates/frontend/gitignore +12 -0
  47. data/default_configuration/templates/gitignore +12 -0
  48. data/lib/xing/cli/generators/new_project.rb +98 -20
  49. data/lib/xing/cli.rb +3 -1
  50. data/spec/cli/generators/new_project_spec.rb +38 -0
  51. data/spec/cli_spec.rb +28 -0
  52. metadata +62 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e157c3f60a9f384ec26b5ba638c87b49e67a8c83
4
- data.tar.gz: ba3b62d579a30c81739f2aa662effcaf23e0b6e6
3
+ metadata.gz: 36e6284367e40c8d4c26f29a37ce95235fc9fd95
4
+ data.tar.gz: 5ecf4e226c5a1e6383f73d0e2d104e7facf92595
5
5
  SHA512:
6
- metadata.gz: 55996603926d37209d5d1ac3c178e99c4b504adaffb47bfa0764c8f04aa022c07e2df8e8a4675a0240db70cb093644a72d66a21aa4f778d340dbb277bd511768
7
- data.tar.gz: 98e945849cd3f99ed9fa7dac58e2052ef0bdccbe601bc14a6b729fd027373caac349f1b1ec40942f382d599c54dd37a6e58c7bc00fa4fdf98a34eb1eb8acf23c
6
+ metadata.gz: 32b763cee89f4f31078f7c31166c458edc1dd1b68319cc7947dbfaae3c942ade8f40af41d80627b2ae16ad3415788312f99fee7c400d096fc2dfc7800ba50b88
7
+ data.tar.gz: 92160c7a9d7b1d34e4aef2da57995f70a34012d175ef0059d76f12eb0de15e8ba9ecc64a9bffa1df8b93d55f588cf7734e27647a29c6e9932eb6e6ccffc38fc5
@@ -0,0 +1,8 @@
1
+ #!/bin/bash
2
+
3
+ ruby_version_path=$( rvm $1 do rvm env -- --path )
4
+ source $ruby_version_path
5
+ if [ "$2" != "" ]; then
6
+ rvm gemset create $2
7
+ source "$ruby_version_path@$2"
8
+ fi
@@ -0,0 +1,12 @@
1
+ production:
2
+ user: USERNAME
3
+ host: your.host.here.com
4
+ path: /var/www/domain.com/backend/current
5
+
6
+ staging:
7
+ user: USERNAME
8
+ host: your.host.here.com
9
+ path: /var/www/staging.domain.com/backend/current
10
+
11
+ development:
12
+ path: tmp/
@@ -0,0 +1,36 @@
1
+ ---
2
+ engines:
3
+ bundler-audit:
4
+ enabled: true
5
+ csslint:
6
+ enabled: true
7
+ duplication:
8
+ enabled: true
9
+ config:
10
+ languages:
11
+ - ruby
12
+ - javascript
13
+ eslint:
14
+ enabled: true
15
+ fixme:
16
+ enabled: true
17
+ rubocop:
18
+ enabled: true
19
+ ratings:
20
+ paths:
21
+ - Gemfile.lock
22
+ - "**.css"
23
+ - "**.coffee"
24
+ - "**.inc"
25
+ - "**.js"
26
+ - "**.jsx"
27
+ - "**.module"
28
+ - "**.php"
29
+ - "**.py"
30
+ - "**.rb"
31
+ exclude_paths:
32
+ - config/**/*
33
+ backend/spec/**/*
34
+ frontend/bower_components/**/*
35
+
36
+
@@ -0,0 +1,2 @@
1
+ --exclude-exts=.min.css
2
+ --ignore=adjoining-classes,box-model,ids,order-alphabetical,unqualified-attributes
@@ -0,0 +1 @@
1
+ **/*{.,-}min.js
@@ -0,0 +1,213 @@
1
+ ecmaFeatures:
2
+ modules: true
3
+ jsx: true
4
+
5
+ env:
6
+ amd: true
7
+ browser: true
8
+ es6: true
9
+ jquery: true
10
+ node: true
11
+
12
+ # http://eslint.org/docs/rules/
13
+ rules:
14
+ # Possible Errors
15
+ comma-dangle: [2, never]
16
+ no-cond-assign: 2
17
+ no-console: 0
18
+ no-constant-condition: 2
19
+ no-control-regex: 2
20
+ no-debugger: 2
21
+ no-dupe-args: 2
22
+ no-dupe-keys: 2
23
+ no-duplicate-case: 2
24
+ no-empty: 2
25
+ no-empty-character-class: 2
26
+ no-ex-assign: 2
27
+ no-extra-boolean-cast: 2
28
+ no-extra-parens: 0
29
+ no-extra-semi: 2
30
+ no-func-assign: 2
31
+ no-inner-declarations: [2, functions]
32
+ no-invalid-regexp: 2
33
+ no-irregular-whitespace: 2
34
+ no-negated-in-lhs: 2
35
+ no-obj-calls: 2
36
+ no-regex-spaces: 2
37
+ no-sparse-arrays: 2
38
+ no-unexpected-multiline: 2
39
+ no-unreachable: 2
40
+ use-isnan: 2
41
+ valid-jsdoc: 0
42
+ valid-typeof: 2
43
+
44
+ # Best Practices
45
+ accessor-pairs: 2
46
+ block-scoped-var: 0
47
+ complexity: [2, 11]
48
+ consistent-return: 0
49
+ curly: 0
50
+ default-case: 0
51
+ dot-location: 0
52
+ dot-notation: 0
53
+ eqeqeq: 2
54
+ guard-for-in: 2
55
+ no-alert: 2
56
+ no-caller: 2
57
+ no-case-declarations: 2
58
+ no-div-regex: 2
59
+ no-else-return: 0
60
+ no-empty-label: 2
61
+ no-empty-pattern: 2
62
+ no-eq-null: 2
63
+ no-eval: 2
64
+ no-extend-native: 2
65
+ no-extra-bind: 2
66
+ no-fallthrough: 2
67
+ no-floating-decimal: 0
68
+ no-implicit-coercion: 0
69
+ no-implied-eval: 2
70
+ no-invalid-this: 0
71
+ no-iterator: 2
72
+ no-labels: 0
73
+ no-lone-blocks: 2
74
+ no-loop-func: 2
75
+ no-magic-number: 0
76
+ no-multi-spaces: 0
77
+ no-multi-str: 0
78
+ no-native-reassign: 2
79
+ no-new-func: 2
80
+ no-new-wrappers: 2
81
+ no-new: 2
82
+ no-octal-escape: 2
83
+ no-octal: 2
84
+ no-proto: 2
85
+ no-redeclare: 2
86
+ no-return-assign: 2
87
+ no-script-url: 2
88
+ no-self-compare: 2
89
+ no-sequences: 0
90
+ no-throw-literal: 0
91
+ no-unused-expressions: 2
92
+ no-useless-call: 2
93
+ no-useless-concat: 2
94
+ no-void: 2
95
+ no-warning-comments: 0
96
+ no-with: 2
97
+ radix: 2
98
+ vars-on-top: 0
99
+ wrap-iife: 2
100
+ yoda: 0
101
+
102
+ # Strict
103
+ strict: 0
104
+
105
+ # Variables
106
+ init-declarations: 0
107
+ no-catch-shadow: 2
108
+ no-delete-var: 2
109
+ no-label-var: 2
110
+ no-shadow-restricted-names: 2
111
+ no-shadow: 0
112
+ no-undef-init: 2
113
+ no-undef: 0
114
+ no-undefined: 0
115
+ no-unused-vars: 0
116
+ no-use-before-define: 0
117
+
118
+ # Node.js and CommonJS
119
+ callback-return: 2
120
+ global-require: 2
121
+ handle-callback-err: 2
122
+ no-mixed-requires: 0
123
+ no-new-require: 0
124
+ no-path-concat: 2
125
+ no-process-exit: 2
126
+ no-restricted-modules: 0
127
+ no-sync: 0
128
+
129
+ # Stylistic Issues
130
+ array-bracket-spacing: 0
131
+ block-spacing: 0
132
+ brace-style: 0
133
+ camelcase: 0
134
+ comma-spacing: 0
135
+ comma-style: 0
136
+ computed-property-spacing: 0
137
+ consistent-this: 0
138
+ eol-last: 0
139
+ func-names: 0
140
+ func-style: 0
141
+ id-length: 0
142
+ id-match: 0
143
+ indent: 0
144
+ jsx-quotes: 0
145
+ key-spacing: 0
146
+ linebreak-style: 0
147
+ lines-around-comment: 0
148
+ max-depth: 0
149
+ max-len: 0
150
+ max-nested-callbacks: 0
151
+ max-params: 0
152
+ max-statements: 0
153
+ new-cap: 0
154
+ new-parens: 0
155
+ newline-after-var: 0
156
+ no-array-constructor: 0
157
+ no-bitwise: 0
158
+ no-continue: 0
159
+ no-inline-comments: 0
160
+ no-lonely-if: 0
161
+ no-mixed-spaces-and-tabs: 0
162
+ no-multiple-empty-lines: 0
163
+ no-negated-condition: 0
164
+ no-nested-ternary: 0
165
+ no-new-object: 0
166
+ no-plusplus: 0
167
+ no-restricted-syntax: 0
168
+ no-spaced-func: 0
169
+ no-ternary: 0
170
+ no-trailing-spaces: 0
171
+ no-underscore-dangle: 0
172
+ no-unneeded-ternary: 0
173
+ object-curly-spacing: 0
174
+ one-var: 0
175
+ operator-assignment: 0
176
+ operator-linebreak: 0
177
+ padded-blocks: 0
178
+ quote-props: 0
179
+ quotes: 0
180
+ require-jsdoc: 0
181
+ semi-spacing: 0
182
+ semi: 0
183
+ sort-vars: 0
184
+ space-after-keywords: 0
185
+ space-before-blocks: 0
186
+ space-before-function-paren: 0
187
+ space-before-keywords: 0
188
+ space-in-parens: 0
189
+ space-infix-ops: 0
190
+ space-return-throw-case: 0
191
+ space-unary-ops: 0
192
+ spaced-comment: 0
193
+ wrap-regex: 0
194
+
195
+ # ECMAScript 6
196
+ arrow-body-style: 0
197
+ arrow-parens: 0
198
+ arrow-spacing: 0
199
+ constructor-super: 0
200
+ generator-star-spacing: 0
201
+ no-arrow-condition: 0
202
+ no-class-assign: 0
203
+ no-const-assign: 0
204
+ no-dupe-class-members: 0
205
+ no-this-before-super: 0
206
+ no-var: 0
207
+ object-shorthand: 0
208
+ prefer-arrow-callback: 0
209
+ prefer-const: 0
210
+ prefer-reflect: 0
211
+ prefer-spread: 0
212
+ prefer-template: 0
213
+ require-yield: 0
@@ -0,0 +1,183 @@
1
+ !_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/
2
+ !_TAG_FILE_SORTED 1 /0=unsorted, 1=sorted, 2=foldcase/
3
+ !_TAG_PROGRAM_AUTHOR Darren Hiebert /dhiebert@users.sourceforge.net/
4
+ !_TAG_PROGRAM_NAME Exuberant Ctags //
5
+ !_TAG_PROGRAM_URL http://ctags.sourceforge.net /official site/
6
+ !_TAG_PROGRAM_VERSION 5.8 //
7
+ $authMock ../frontend/test/auth/passwords/passwordsControllers.js /^ $authMock = {$/;" o
8
+ $authMock ../frontend/test/auth/registrations/registrationsControllers.js /^ $authMock = {$/;" o
9
+ $authMock ../frontend/test/auth/sessions/sessionsControllers.js /^ $authMock = {$/;" o
10
+ $scope.passwordRequest ../frontend/src/app/auth/passwords/passwordsControllers.js /^ $scope.passwordRequest = {$/;" o
11
+ $scope.passwordRequest ../frontend/test/auth/passwords/passwordsControllers.js /^ $scope.passwordRequest = { email: "bob@bob.com" };$/;" o
12
+ $scope.passwordRequest ../frontend/test/auth/passwords/passwordsControllers.js /^ $scope.passwordRequest = { email: ''};$/;" o
13
+ $scope.passwordRequestSubmit ../frontend/src/app/auth/passwords/passwordsControllers.js /^ $scope.passwordRequestSubmit = function() {$/;" f
14
+ $scope.passwordUpdate ../frontend/src/app/auth/passwords/passwordsControllers.js /^ $scope.passwordUpdate = {$/;" o
15
+ $scope.passwordUpdate ../frontend/test/auth/passwords/passwordsControllers.js /^ $scope.passwordUpdate = {$/;" o
16
+ $scope.passwordUpdateSubmit ../frontend/src/app/auth/passwords/passwordsControllers.js /^ $scope.passwordUpdateSubmit = function() {$/;" f
17
+ $scope.registration ../frontend/src/app/auth/registrations/registrationsControllers.js /^ $scope.registration = {$/;" o
18
+ $scope.registration ../frontend/test/auth/registrations/registrationsControllers.js /^ $scope.registration = { email: "bob@bob.com",$/;" o
19
+ $scope.registrationSubmit ../frontend/src/app/auth/registrations/registrationsControllers.js /^ $scope.registrationSubmit = function() {$/;" f
20
+ $scope.session ../frontend/src/app/auth/sessions/sessionsControllers.js /^ $scope.session = {$/;" o
21
+ $scope.session ../frontend/test/auth/sessions/sessionsControllers.js /^ $scope.session = { email: "bob", password: "password" };$/;" o
22
+ $scope.session ../frontend/test/auth/sessions/sessionsControllers.js /^ $scope.session = { email: "jill", password: "wrong password" };$/;" o
23
+ $scope.sessionSubmit ../frontend/src/app/auth/sessions/sessionsControllers.js /^ $scope.sessionSubmit = function() {$/;" f
24
+ $scope.session[authConfig.authKey] ../frontend/src/app/auth/sessions/sessionsControllers.js /^ $scope.session[authConfig.authKey] = '';$/;" s
25
+ $stateMock ../frontend/test/auth/registrations/registrationsControllers.js /^ $stateMock = {$/;" o
26
+ $stateMock ../frontend/test/auth/sessions/sessionsControllers.js /^ $stateMock = {$/;" o
27
+ $toastMock ../frontend/test/auth/passwords/passwordsControllers.js /^ $toastMock = {};$/;" o
28
+ $toastMock ../frontend/test/auth/registrations/registrationsControllers.js /^ $toastMock = {};$/;" o
29
+ $toastMock ../frontend/test/auth/sessions/sessionsControllers.js /^ $toastMock = {};$/;" o
30
+ (session.user.password ../frontend/test/auth/sessions/sessionsControllers.js /^ if ((session.user.email == "bob") && (session.user.password = "password")) {$/;" s
31
+ APP_MODULE ../backend/config/application.rb /^module APP_MODULE$/;" m
32
+ APP_MODULE ../backend/lib/static-app.rb /^module APP_MODULE$/;" m
33
+ Ability ../backend/app/models/ability.rb /^class Ability$/;" c
34
+ AdminOnly ../frontend/src/common/components/adminOnly/adminOnly.js /^export default class AdminOnly extends OnLoginDirective {$/;" c
35
+ Application ../backend/config/application.rb /^ class Application < Rails::Application$/;" c class:APP_MODULE
36
+ ApplicationController ../backend/app/controllers/application_controller.rb /^class ApplicationController < Xing::Controllers::Base$/;" c
37
+ ConfirmationsController ../backend/app/controllers/confirmations_controller.rb /^class ConfirmationsController < DeviseTokenAuth::ConfirmationsController$/;" c
38
+ ConfirmationsSuccessState ../frontend/src/app/auth/confirmations/confirmationsStates.js /^export class ConfirmationsSuccessState extends LoggedInOnlyState {$/;" c
39
+ DevelopmentMailInterceptor ../backend/config/initializers/smtp.rb /^class DevelopmentMailInterceptor$/;" c
40
+ DeviseExtraTestHelper ../backend/spec/support/devise_helper.rb /^module DeviseExtraTestHelper$/;" m
41
+ HomepageShowState ../frontend/src/app/homepage/homepageStates.js /^export class HomepageShowState {$/;" c
42
+ HomepageState ../frontend/src/app/homepage/homepageStates.js /^export class HomepageState extends TrackAdminState {$/;" c
43
+ OnLoginDirective ../frontend/src/common/components/OnLoginDirective/OnLoginDirective.js /^export default class OnLoginDirective {$/;" c
44
+ PasswordsController ../backend/app/controllers/passwords_controller.rb /^class PasswordsController < DeviseTokenAuth::PasswordsController$/;" c
45
+ PasswordsRequestState ../frontend/src/app/auth/passwords/passwordsStates.js /^export class PasswordsRequestState {$/;" c
46
+ PasswordsRequestSuccessState ../frontend/src/app/auth/passwords/passwordsStates.js /^export class PasswordsRequestSuccessState {$/;" c
47
+ PasswordsUpdateState ../frontend/src/app/auth/passwords/passwordsStates.js /^export class PasswordsUpdateState extends LoggedInOnlyState {$/;" c
48
+ PasswordsUpdateSuccessState ../frontend/src/app/auth/passwords/passwordsStates.js /^export class PasswordsUpdateSuccessState extends LoggedInOnlyState {$/;" c
49
+ RSpec ../backend/spec/support/devise_helper.rb /^module RSpec::Rails::ControllerExampleGroup$/;" m
50
+ RSpec ../backend/spec/support/devise_helper.rb /^module RSpec::Rails::HelperExampleGroup$/;" m
51
+ RSpec ../backend/spec/support/devise_helper.rb /^module RSpec::Rails::ViewExampleGroup$/;" m
52
+ RegistrationsController ../backend/app/controllers/registrations_controller.rb /^class RegistrationsController < DeviseTokenAuth::RegistrationsController$/;" c
53
+ RegistrationsState ../frontend/src/app/auth/registrations/registrationsStates.js /^export class RegistrationsState {$/;" c
54
+ RegistrationsSuccessState ../frontend/src/app/auth/registrations/registrationsStates.js /^export class RegistrationsSuccessState {$/;" c
55
+ Resources ../frontend/src/common/resources.js /^class Resources extends RL.Resource {$/;" c
56
+ Role ../backend/app/models/role/admin.rb /^class Role::Admin < Role$/;" c
57
+ RootInnerState ../frontend/src/app/rootStates.js /^export class RootInnerState {$/;" c
58
+ RootState ../frontend/src/app/rootStates.js /^export class RootState {$/;" c
59
+ SessionLinks ../frontend/src/common/components/sessionLinks/sessionLinks.js /^export default class SessionLinks extends OnLoginDirective {$/;" c
60
+ SessionsState ../frontend/src/app/auth/sessions/sessionsStates.js /^export class SessionsState {$/;" c
61
+ SessionsSuccessState ../frontend/src/app/auth/sessions/sessionsStates.js /^export class SessionsSuccessState extends LoggedInOnlyState {$/;" c
62
+ SignOut ../frontend/src/common/components/signOut/signOut.js /^export default class SignOut {$/;" c
63
+ StaticApp ../backend/lib/static-app.rb /^ class StaticApp < Xing::Static::RackApp$/;" c class:APP_MODULE
64
+ User ../backend/app/models/user.rb /^class User < ActiveRecord::Base$/;" c
65
+ XingApp ../backend/config/application.rb /^module XingApp; end$/;" m
66
+ appName ../frontend/src/common/config.js /^export var appName = "XING-BASE";$/;" s
67
+ app_files ../frontend/build.config.js /^ app_files: {$/;" o
68
+ assets ../frontend/build.config.js /^ assets: [$/;" a
69
+ atpl ../frontend/build.config.js /^ atpl: [ 'src\/app\/**\/*.tpl.html' ],$/;" a
70
+ browsers ../frontend/karma/karma-unit.tpl.js /^ browsers: [$/;" a
71
+ build_dirs ../frontend/build.config.js /^ build_dirs: {$/;" o
72
+ children ../frontend/test/app.js /^ children: {}$/;" o
73
+ coffee ../frontend/build.config.js /^ coffee: [ 'src\/**\/*.coffee', '!src\/**\/*.spec.coffee' ],$/;" a
74
+ coffeeunit ../frontend/build.config.js /^ coffeeunit: [ 'test\/**\/*.coffee' ],$/;" a
75
+ compare ../frontend/test/specHelper.js /^ compare: function(actual) {$/;" f
76
+ compare ../frontend/test/specHelper.js /^ compare: function(actual, expected) {$/;" f
77
+ compile_targets ../frontend/build.config.js /^ compile_targets: {$/;" o
78
+ config ../frontend/src/app/auth/config.js /^ var config = {$/;" o
79
+ configuration ../frontend/src/common/config.js /^export var configuration = { backendUrl, appName };$/;" o
80
+ configure_permitted_parameters ../backend/app/controllers/registrations_controller.rb /^ def configure_permitted_parameters$/;" f class:RegistrationsController
81
+ confirmationLocation.pathname ../frontend/src/app/auth/auth.js /^ confirmationLocation.pathname = "\/confirmed";$/;" s
82
+ confirmationLocation.search ../frontend/src/app/auth/auth.js /^ confirmationLocation.search = "";$/;" s
83
+ content_for ../backend/spec/spec_helper.rb /^def content_for(name)$/;" f
84
+ cookies ../frontend/src/common/config.js /^ var cookies = [];$/;" a
85
+ css ../frontend/build.config.js /^ css: [$/;" a
86
+ ctpl ../frontend/build.config.js /^ ctpl: [ 'src\/common\/**\/*.tpl.html' ],$/;" a
87
+ current_user ../backend/spec/support/devise_helper.rb /^ def current_user(stubs = {})$/;" f class:DeviseExtraTestHelper
88
+ current_user_session ../backend/spec/support/devise_helper.rb /^ def current_user_session(stubs = {}, user_stubs = {})$/;" f class:DeviseExtraTestHelper
89
+ data ../frontend/test/auth/passwords/passwordsControllers.js /^ data: {$/;" o
90
+ data ../frontend/test/auth/registrations/registrationsControllers.js /^ data: {$/;" o
91
+ delivering_email ../backend/config/initializers/smtp.rb /^ def self.delivering_email(message)$/;" F class:DevelopmentMailInterceptor
92
+ environment ../frontend/config/environments/development.js /^export var environment = {$/;" o
93
+ environment ../frontend/config/environments/integration.js /^export var environment = {$/;" o
94
+ environment ../frontend/config/environments/production.js /^export var environment = {$/;" o
95
+ environment ../frontend/config/environments/test.js /^export var environment = {$/;" o
96
+ errors ../frontend/test/auth/passwords/passwordsControllers.js /^ errors: ["Missing Email"]$/;" a
97
+ errors ../frontend/test/auth/passwords/passwordsControllers.js /^ errors: { passwordConfirmation: "must match password" }$/;" o
98
+ errors ../frontend/test/auth/registrations/registrationsControllers.js /^ errors: { emailConfirmation: "must match email" }$/;" o
99
+ exclude ../frontend/karma/karma-unit.tpl.js /^ exclude: [$/;" a
100
+ files ../frontend/karma/karma-unit.tpl.js /^ files: [$/;" a
101
+ frameworks ../frontend/karma/karma-unit.tpl.js /^ frameworks: [ 'jasmine' ],$/;" a
102
+ html ../frontend/build.config.js /^ html: [ 'src\/index.html' ],$/;" a
103
+ initialize ../backend/app/models/ability.rb /^ def initialize(user)$/;" f class:Ability
104
+ js ../frontend/build.config.js /^ js: [ 'src\/**\/*.js', '!src\/**\/*.spec.js', '!src\/assets\/**\/*.js' ],$/;" a
105
+ js ../frontend/build.config.js /^ js: [$/;" a
106
+ js_es6 ../frontend/build.config.js /^ js_es6: [ 'build\/src-es6\/**\/*.js', '!build\/src-es6\/**\/*.spec.js', '!build\/src-es6\/assets\/**\/*.js' ],$/;" a
107
+ js_roots ../frontend/build.config.js /^ js_roots: [ 'src\/app\/app.js' ],$/;" a
108
+ jstest ../frontend/build.config.js /^ jstest: [ 'test\/**\/*.js', 'test-help\/**\/*.js' ],$/;" a
109
+ jstest_es6 ../frontend/build.config.js /^ jstest_es6: [ 'build\/test-es6\/**\/*.js', 'build\/test-help-es6\/**\/*.js' ],$/;" a
110
+ jsunit ../frontend/build.config.js /^ jsunit: [ 'test\/**\/*.js' ],$/;" a
111
+ log_root ../backend/lib/static-app.rb /^ def self.log_root$/;" F class:APP_MODULE.StaticApp
112
+ login_as ../backend/spec/support/devise_helper.rb /^ def login_as(user)$/;" f class:DeviseExtraTestHelper
113
+ logout ../backend/spec/support/devise_helper.rb /^ def logout$/;" f
114
+ mockDir ../frontend/test/support/mockDirective.js /^ var mockDir = {$/;" o
115
+ mockMain ../frontend/test/app.js /^ mockMain = {$/;" o
116
+ mockSerializer ../frontend/test/auth/passwords/passwordsControllers.js /^ mockSerializer = function() {$/;" f
117
+ mockSerializer ../frontend/test/auth/registrations/registrationsControllers.js /^ mockSerializer = function() {$/;" f
118
+ module.exports ../frontend/Gruntfile.js /^module.exports = function( grunt , options ) {$/;" f
119
+ module.exports ../frontend/build.config.js /^module.exports = {$/;" o
120
+ module.exports ../frontend/karma/karma-unit.tpl.js /^module.exports = function ( config ) {$/;" f
121
+ passwordResetSuccessLocation.pathname ../frontend/src/app/auth/auth.js /^ passwordResetSuccessLocation.pathname = "\/update-password";$/;" s
122
+ passwordResetSuccessLocation.search ../frontend/src/app/auth/auth.js /^ passwordResetSuccessLocation.search = "";$/;" s
123
+ plugins ../frontend/karma/karma-unit.tpl.js /^ plugins: [$/;" a
124
+ portOffset ../frontend/karma/karma-unit.tpl.js /^ var portOffset = function() {$/;" f
125
+ preprocessors ../frontend/karma/karma-unit.tpl.js /^ preprocessors: {$/;" o
126
+ role ../backend/app/models/user.rb /^ def role$/;" f class:User
127
+ routes ../backend/spec/spec_helper.rb /^def routes$/;" f
128
+ services ../frontend/src/common/components/adminOnly/adminOnly.js /^ services: ['$rootScope', '$auth'],$/;" a
129
+ services ../frontend/src/common/components/sessionLinks/sessionLinks.js /^ services: ['$rootScope', '$auth']$/;" a
130
+ set_abilities ../backend/app/models/role/admin.rb /^ def set_abilities(ability)$/;" f class:Role
131
+ sign_in ../backend/spec/support/devise_helper.rb /^ def sign_in(user)$/;" f class:DeviseExtraTestHelper
132
+ sign_out ../backend/spec/support/devise_helper.rb /^ def sign_out(user)$/;" f class:DeviseExtraTestHelper
133
+ storageType ../frontend/src/app/auth/auth.js /^ storageType = 'cookies';$/;" s
134
+ storageType ../frontend/src/app/auth/auth.js /^ var storageType = 'localStorage';$/;" s
135
+ test_files ../frontend/build.config.js /^ test_files: {$/;" o
136
+ theToken ../frontend/test/auth/passwords/passwordsControllers.js /^ theToken = "someCryptoThingOrWhat";$/;" s
137
+ theUpdateUrl ../frontend/test/auth/passwords/passwordsControllers.js /^ theUpdateUrl = "the:\/\/update.url\/for_passwords";$/;" s
138
+ this.$get ../frontend/src/app/auth/config.js /^ this.$get = [function authKey() {$/;" a
139
+ this.authKey ../frontend/src/app/auth/config.js /^ this.authKey = function (name) {$/;" f
140
+ this.controller ../frontend/src/app/auth/passwords/passwordsStates.js /^ this.controller = 'PasswordsRequestCtrl';$/;" s
141
+ this.controller ../frontend/src/app/auth/passwords/passwordsStates.js /^ this.controller = 'PasswordsUpdateCtrl';$/;" s
142
+ this.controller ../frontend/src/app/auth/registrations/registrationsStates.js /^ this.controller = 'RegistrationsCtrl';$/;" s
143
+ this.controller ../frontend/src/app/auth/sessions/sessionsStates.js /^ this.controller = 'SessionsCtrl';$/;" s
144
+ this.controller ../frontend/src/app/homepage/homepageStates.js /^ this.controller = 'HomepageCtrl';$/;" s
145
+ this.controller ../frontend/src/app/homepage/homepageStates.js /^ this.controller = 'HomepageShowCtrl';$/;" s
146
+ this.controller ../frontend/src/app/rootStates.js /^ this.controller = 'RootCtrl';$/;" s
147
+ this.enableRecovery ../frontend/src/app/auth/config.js /^ this.enableRecovery = function() {$/;" f
148
+ this.restrict ../frontend/src/common/components/signOut/signOut.js /^ this.restrict = 'A';$/;" s
149
+ this.serialize ../frontend/test/auth/passwords/passwordsControllers.js /^ this.serialize = function(data) {$/;" f
150
+ this.serialize ../frontend/test/auth/registrations/registrationsControllers.js /^ this.serialize = function(data) {$/;" f
151
+ this.templateUrl ../frontend/src/app/auth/confirmations/confirmationsStates.js /^ this.templateUrl = 'auth\/confirmations\/confirmations-success.tpl.html';$/;" s
152
+ this.templateUrl ../frontend/src/app/auth/passwords/passwordsStates.js /^ this.templateUrl = 'auth\/passwords\/passwords-request-success.tpl.html';$/;" s
153
+ this.templateUrl ../frontend/src/app/auth/passwords/passwordsStates.js /^ this.templateUrl = 'auth\/passwords\/passwords-request.tpl.html';$/;" s
154
+ this.templateUrl ../frontend/src/app/auth/passwords/passwordsStates.js /^ this.templateUrl = 'auth\/passwords\/passwords-update-success.tpl.html';$/;" s
155
+ this.templateUrl ../frontend/src/app/auth/passwords/passwordsStates.js /^ this.templateUrl = 'auth\/passwords\/passwords-update.tpl.html';$/;" s
156
+ this.templateUrl ../frontend/src/app/auth/registrations/registrationsStates.js /^ this.templateUrl = 'auth\/registrations\/registrations-success.tpl.html';$/;" s
157
+ this.templateUrl ../frontend/src/app/auth/registrations/registrationsStates.js /^ this.templateUrl = 'auth\/registrations\/registrations.tpl.html';$/;" s
158
+ this.templateUrl ../frontend/src/app/auth/sessions/sessionsStates.js /^ this.templateUrl = 'auth\/sessions\/sessions-success.tpl.html';$/;" s
159
+ this.templateUrl ../frontend/src/app/auth/sessions/sessionsStates.js /^ this.templateUrl = 'auth\/sessions\/sessions.tpl.html';$/;" s
160
+ this.templateUrl ../frontend/src/app/homepage/homepageStates.js /^ this.templateUrl = 'homepage\/homepage-show.tpl.html';$/;" s
161
+ this.templateUrl ../frontend/src/app/homepage/homepageStates.js /^ this.templateUrl = 'homepage\/homepage.tpl.html';$/;" s
162
+ this.templateUrl ../frontend/src/app/rootStates.js /^ this.templateUrl = "root.tpl.html";$/;" s
163
+ this.url ../frontend/src/app/auth/confirmations/confirmationsStates.js /^ this.url = '^\/confirmed';$/;" s
164
+ this.url ../frontend/src/app/auth/passwords/passwordsStates.js /^ this.url = '^\/reset-password';$/;" s
165
+ this.url ../frontend/src/app/auth/passwords/passwordsStates.js /^ this.url = '^\/reset-password-sent';$/;" s
166
+ this.url ../frontend/src/app/auth/passwords/passwordsStates.js /^ this.url = '^\/update-password';$/;" s
167
+ this.url ../frontend/src/app/auth/passwords/passwordsStates.js /^ this.url = '^\/updated-password';$/;" s
168
+ this.url ../frontend/src/app/auth/registrations/registrationsStates.js /^ this.url = '^\/sign-up';$/;" s
169
+ this.url ../frontend/src/app/auth/registrations/registrationsStates.js /^ this.url = '^\/signed-up';$/;" s
170
+ this.url ../frontend/src/app/auth/sessions/sessionsStates.js /^ this.url = '^\/sign-in';$/;" s
171
+ this.url ../frontend/src/app/auth/sessions/sessionsStates.js /^ this.url = '^\/signed-in';$/;" s
172
+ this.url ../frontend/src/app/homepage/homepageStates.js /^ this.url = '';$/;" s
173
+ this.url ../frontend/src/app/homepage/homepageStates.js /^ this.url = 'home';$/;" s
174
+ this.url ../frontend/src/app/rootStates.js /^ this.url = "\/";$/;" s
175
+ this.url ../frontend/src/app/rootStates.js /^ this.url = "inner";$/;" s
176
+ toBeFunction ../frontend/test/specHelper.js /^ toBeFunction: function () {$/;" f
177
+ toBeInstanceOf ../frontend/test/specHelper.js /^ toBeInstanceOf: function () {$/;" f
178
+ toEqualData ../frontend/test/specHelper.js /^ toEqualData: function () {$/;" f
179
+ ttpl ../frontend/build.config.js /^ ttpl: [ 'test\/**\/*.json', 'test\/**\/*.tpl.html' ],$/;" a
180
+ vendor_files ../frontend/build.config.js /^ vendor_files: {$/;" o
181
+ verify_authorization_successful ../backend/spec/support/devise_helper.rb /^ def verify_authorization_successful$/;" f
182
+ verify_authorization_unsuccessful ../backend/spec/support/devise_helper.rb /^ def verify_authorization_unsuccessful$/;" f
183
+ warden ../backend/spec/support/devise_helper.rb /^ def warden #:nodoc:$/;" f class:DeviseExtraTestHelper
@@ -0,0 +1 @@
1
+ project: 1154118