bootstrap-bookingsync-sass 1.0.5 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (127) hide show
  1. checksums.yaml +5 -5
  2. data/.editorconfig +0 -14
  3. data/.eslintignore +20 -0
  4. data/.eslintrc.js +105 -0
  5. data/.gitignore +15 -7
  6. data/.npmignore +30 -15
  7. data/.template-lintrc.js +5 -0
  8. data/.travis.yml +84 -0
  9. data/CHANGELOG.md +11 -0
  10. data/CONTRIBUTING.md +26 -0
  11. data/LICENSE.md +9 -0
  12. data/README.md +5 -6
  13. data/addon/components/bsy-alert.js +6 -8
  14. data/addon/components/bsy-annotated-section.js +4 -4
  15. data/addon/components/bsy-annotated-section/annotation.js +4 -4
  16. data/addon/components/bsy-annotated-section/content.js +4 -4
  17. data/addon/components/bsy-button.js +16 -21
  18. data/addon/components/bsy-button/close.js +7 -6
  19. data/addon/components/bsy-checkbox.js +12 -4
  20. data/addon/components/bsy-icon.js +33 -0
  21. data/addon/components/bsy-input-addon.js +10 -2
  22. data/addon/components/bsy-input-addon/addon.js +4 -4
  23. data/addon/components/bsy-input-addon/input.js +7 -4
  24. data/addon/components/bsy-input.js +25 -17
  25. data/addon/components/bsy-modal.js +5 -5
  26. data/addon/components/bsy-modal/body.js +4 -4
  27. data/addon/components/bsy-modal/close.js +3 -3
  28. data/addon/components/bsy-modal/footer.js +4 -4
  29. data/addon/components/bsy-modal/header.js +4 -4
  30. data/addon/components/bsy-nav.js +2 -2
  31. data/addon/components/bsy-nav/item.js +4 -13
  32. data/addon/components/bsy-nav/link.js +4 -13
  33. data/addon/components/bsy-popover.js +5 -0
  34. data/addon/components/bsy-radio-buttons.js +2 -2
  35. data/addon/components/bsy-radio-buttons/button.js +8 -10
  36. data/addon/components/bsy-radio.js +5 -5
  37. data/addon/components/bsy-select-multiple.js +4 -4
  38. data/addon/components/bsy-select.js +4 -4
  39. data/addon/components/bsy-sheet.js +2 -2
  40. data/addon/components/bsy-sheet/header.js +2 -2
  41. data/addon/components/bsy-switch.js +15 -0
  42. data/addon/components/bsy-textarea.js +7 -5
  43. data/addon/templates/components/bsy-alert.hbs +1 -1
  44. data/addon/templates/components/bsy-button.hbs +9 -1
  45. data/addon/templates/components/bsy-checkbox.hbs +4 -3
  46. data/addon/templates/components/bsy-input-addon/input.hbs +3 -3
  47. data/addon/templates/components/bsy-input.hbs +3 -3
  48. data/addon/templates/components/bsy-modal.hbs +2 -2
  49. data/addon/templates/components/bsy-modal/close.hbs +1 -1
  50. data/addon/templates/components/bsy-modal/header.hbs +1 -1
  51. data/addon/templates/components/bsy-nav/item.hbs +1 -1
  52. data/addon/templates/components/bsy-radio-buttons/button.hbs +5 -4
  53. data/addon/templates/components/bsy-radio.hbs +5 -4
  54. data/addon/templates/components/bsy-select-multiple.hbs +1 -1
  55. data/addon/templates/components/bsy-select.hbs +1 -1
  56. data/addon/templates/components/bsy-switch.hbs +9 -0
  57. data/addon/templates/components/bsy-textarea.hbs +2 -2
  58. data/app/components/bsy-alert.js +1 -1
  59. data/app/components/bsy-icon.js +1 -0
  60. data/app/components/bsy-popover.js +1 -0
  61. data/app/components/bsy-sheet.js +1 -1
  62. data/app/components/bsy-sheet/header.js +1 -1
  63. data/app/components/bsy-switch.js +1 -0
  64. data/assets/javascripts/bookingsync/form.js +15 -15
  65. data/assets/stylesheets/_bootstrap-bookingsync.scss +2 -0
  66. data/assets/stylesheets/bookingsync/_buttons.scss +6 -0
  67. data/assets/stylesheets/bookingsync/_ember-toggle.scss +13 -0
  68. data/assets/stylesheets/bookingsync/_ember-tooltips.scss +15 -0
  69. data/assets/stylesheets/bookingsync/_form.scss +20 -1
  70. data/assets/stylesheets/bookingsync/_icons.scss +521 -98
  71. data/assets/stylesheets/bookingsync/_menu.scss +25 -4
  72. data/assets/stylesheets/bookingsync/_variables.scss +100 -36
  73. data/blueprints/ember-cli-bootstrap-bookingsync-sass/index.js +5 -4
  74. data/config/ember-try.js +82 -35
  75. data/config/environment.js +13 -3
  76. data/docs/content/brand/iconography.md +30 -0
  77. data/docs/public/ember/fonts/bookingsync/bookingsync-icons.svg +24 -1
  78. data/docs/public/ember/fonts/bookingsync/bookingsync-icons.ttf +0 -0
  79. data/docs/public/ember/fonts/bookingsync/bookingsync-icons.woff +0 -0
  80. data/docs/public/ember/fonts/bookingsync/bookingsync-icons.woff2 +0 -0
  81. data/ember-cli-build.js +4 -5
  82. data/index.js +13 -39
  83. data/lib/bootstrap/bookingsync/engine.rb +4 -2
  84. data/lib/bootstrap/bookingsync/version.rb +1 -1
  85. data/package-lock.json +20985 -0
  86. data/package.json +64 -44
  87. data/testem.js +25 -0
  88. data/tests/dummy/app/app.js +2 -6
  89. data/tests/dummy/app/components/navbar/component.js +5 -0
  90. data/tests/dummy/app/{templates/navbar.hbs → components/navbar/template.hbs} +0 -0
  91. data/tests/dummy/app/components/sidebar/component.js +5 -0
  92. data/tests/dummy/app/{templates/sidebar.hbs → components/sidebar/template.hbs} +0 -0
  93. data/tests/dummy/app/controllers/index.js +24 -12
  94. data/tests/dummy/app/index.html +4 -4
  95. data/tests/dummy/app/router.js +4 -3
  96. data/tests/dummy/app/templates/application.hbs +3 -2
  97. data/tests/dummy/app/templates/index.hbs +106 -70
  98. data/tests/dummy/config/environment.js +12 -7
  99. data/tests/dummy/config/optional-features.json +3 -0
  100. data/tests/dummy/config/targets.js +18 -0
  101. data/tests/{unit → helpers}/.gitkeep +0 -0
  102. data/tests/index.html +8 -9
  103. data/tests/integration/components/bsy-alert-test.js +18 -16
  104. data/tests/integration/components/bsy-button-test.js +18 -16
  105. data/tests/integration/components/bsy-checkbox-test.js +77 -0
  106. data/tests/integration/components/bsy-input-test.js +120 -0
  107. data/tests/integration/components/bsy-nav-test.js +18 -16
  108. data/tests/integration/components/bsy-nav/item-test.js +18 -16
  109. data/tests/integration/components/bsy-nav/link-test.js +18 -16
  110. data/tests/integration/components/bsy-popover-test.js +28 -0
  111. data/tests/integration/components/bsy-sheet-test.js +18 -16
  112. data/tests/integration/components/bsy-sheet/header-test.js +18 -16
  113. data/tests/integration/components/bsy-switch-test.js +21 -0
  114. data/tests/integration/components/bsy-textarea-test.js +13 -0
  115. data/tests/test-helper.js +7 -5
  116. metadata +32 -19
  117. data/.bowerrc +0 -4
  118. data/.travis.yaml +0 -34
  119. data/bower.json +0 -14
  120. data/testem.json +0 -12
  121. data/tests/.jshintrc +0 -52
  122. data/tests/dummy/public/crossdomain.xml +0 -15
  123. data/tests/helpers/destroy-app.js +0 -5
  124. data/tests/helpers/module-for-acceptance.js +0 -23
  125. data/tests/helpers/start-app.js +0 -18
  126. data/tests/integration/components/bsy-sheet.header-test.js +0 -24
  127. data/yarn.lock +0 -5356
@@ -1,24 +1,26 @@
1
- import { moduleForComponent, test } from 'ember-qunit';
1
+ import { module, test } from 'qunit';
2
+ import { setupRenderingTest } from 'ember-qunit';
3
+ import { render } from '@ember/test-helpers';
2
4
  import hbs from 'htmlbars-inline-precompile';
3
5
 
4
- moduleForComponent('bsy-nav/link', 'Integration | Component | bsy nav/link', {
5
- integration: true
6
- });
6
+ module('Integration | Component | bsy nav/link', function(hooks) {
7
+ setupRenderingTest(hooks);
7
8
 
8
- test('it renders', function(assert) {
9
- // Set any properties with this.set('myProperty', 'value');
10
- // Handle any actions with this.on('myAction', function(val) { ... });"
9
+ test('it renders', async function(assert) {
10
+ // Set any properties with this.set('myProperty', 'value');
11
+ // Handle any actions with this.on('myAction', function(val) { ... });"
11
12
 
12
- this.render(hbs`{{bsy-nav/link}}`);
13
+ await render(hbs`{{bsy-nav/link}}`);
13
14
 
14
- assert.equal(this.$().text().trim(), '');
15
+ assert.dom().hasText('');
15
16
 
16
- // Template block usage:"
17
- this.render(hbs`
18
- {{#bsy-nav/link}}
19
- template block text
20
- {{/bsy-nav/link}}
21
- `);
17
+ // Template block usage:"
18
+ await render(hbs`
19
+ {{#bsy-nav/link}}
20
+ template block text
21
+ {{/bsy-nav/link}}
22
+ `);
22
23
 
23
- assert.equal(this.$().text().trim(), 'template block text');
24
+ assert.dom().hasText('template block text');
25
+ });
24
26
  });
@@ -0,0 +1,28 @@
1
+ import { module, test } from 'qunit';
2
+ import { setupRenderingTest } from 'ember-qunit';
3
+ import { render, triggerEvent } from '@ember/test-helpers';
4
+ import hbs from 'htmlbars-inline-precompile';
5
+
6
+ module('Integration | Component | bsy popover', function(hooks) {
7
+ setupRenderingTest(hooks);
8
+
9
+ test('it renders', async function(assert) {
10
+ // Set any properties with this.set('myProperty', 'value');
11
+ // Handle any actions with this.on('myAction', function(val) { ... });"
12
+
13
+ await render(hbs`{{bsy-popover}}`);
14
+
15
+ assert.dom().hasText('');
16
+
17
+ // Template block usage:"
18
+ await render(hbs`
19
+ {{#bsy-popover}}
20
+ template block text
21
+ {{/bsy-popover}}
22
+ `);
23
+
24
+ await triggerEvent(this.element, 'mouseenter');
25
+
26
+ assert.dom().hasText('template block text');
27
+ });
28
+ });
@@ -1,24 +1,26 @@
1
- import { moduleForComponent, test } from 'ember-qunit';
1
+ import { module, test } from 'qunit';
2
+ import { setupRenderingTest } from 'ember-qunit';
3
+ import { render } from '@ember/test-helpers';
2
4
  import hbs from 'htmlbars-inline-precompile';
3
5
 
4
- moduleForComponent('bsy-sheet', 'Integration | Component | bsy sheet', {
5
- integration: true
6
- });
6
+ module('Integration | Component | bsy sheet', function(hooks) {
7
+ setupRenderingTest(hooks);
7
8
 
8
- test('it renders', function(assert) {
9
- // Set any properties with this.set('myProperty', 'value');
10
- // Handle any actions with this.on('myAction', function(val) { ... });"
9
+ test('it renders', async function(assert) {
10
+ // Set any properties with this.set('myProperty', 'value');
11
+ // Handle any actions with this.on('myAction', function(val) { ... });"
11
12
 
12
- this.render(hbs`{{bsy-sheet}}`);
13
+ await render(hbs`{{bsy-sheet}}`);
13
14
 
14
- assert.equal(this.$().text().trim(), '');
15
+ assert.dom().hasText('');
15
16
 
16
- // Template block usage:"
17
- this.render(hbs`
18
- {{#bsy-sheet}}
19
- template block text
20
- {{/bsy-sheet}}
21
- `);
17
+ // Template block usage:"
18
+ await render(hbs`
19
+ {{#bsy-sheet}}
20
+ template block text
21
+ {{/bsy-sheet}}
22
+ `);
22
23
 
23
- assert.equal(this.$().text().trim(), 'template block text');
24
+ assert.dom().hasText('template block text');
25
+ });
24
26
  });
@@ -1,24 +1,26 @@
1
- import { moduleForComponent, test } from 'ember-qunit';
1
+ import { module, test } from 'qunit';
2
+ import { setupRenderingTest } from 'ember-qunit';
3
+ import { render } from '@ember/test-helpers';
2
4
  import hbs from 'htmlbars-inline-precompile';
3
5
 
4
- moduleForComponent('bsy-sheet/header', 'Integration | Component | bsy sheet/header', {
5
- integration: true
6
- });
6
+ module('Integration | Component | bsy sheet/header', function(hooks) {
7
+ setupRenderingTest(hooks);
7
8
 
8
- test('it renders', function(assert) {
9
- // Set any properties with this.set('myProperty', 'value');
10
- // Handle any actions with this.on('myAction', function(val) { ... });"
9
+ test('it renders', async function(assert) {
10
+ // Set any properties with this.set('myProperty', 'value');
11
+ // Handle any actions with this.on('myAction', function(val) { ... });"
11
12
 
12
- this.render(hbs`{{bsy-sheet/header}}`);
13
+ await render(hbs`{{bsy-sheet/header}}`);
13
14
 
14
- assert.equal(this.$().text().trim(), '');
15
+ assert.dom().hasText('');
15
16
 
16
- // Template block usage:"
17
- this.render(hbs`
18
- {{#bsy-sheet/header}}
19
- template block text
20
- {{/bsy-sheet/header}}
21
- `);
17
+ // Template block usage:"
18
+ await render(hbs`
19
+ {{#bsy-sheet/header}}
20
+ template block text
21
+ {{/bsy-sheet/header}}
22
+ `);
22
23
 
23
- assert.equal(this.$().text().trim(), 'template block text');
24
+ assert.dom().hasText('template block text');
25
+ });
24
26
  });
@@ -0,0 +1,21 @@
1
+ import { module, test } from 'qunit';
2
+ import { setupRenderingTest } from 'ember-qunit';
3
+ import { render, click } from '@ember/test-helpers';
4
+ import hbs from 'htmlbars-inline-precompile';
5
+
6
+ module('Integration | Component | bsy switch', function(hooks) {
7
+ setupRenderingTest(hooks);
8
+
9
+ test('it renders', async function(assert) {
10
+ assert.expect(3);
11
+
12
+ await render(hbs`{{bsy-switch}}`);
13
+
14
+ assert.dom('[data-test-toggle]').exists();
15
+ assert.dom('[data-test-toggle] [aria-checked]').doesNotExist();
16
+
17
+ await click('[data-test-toggle] input');
18
+
19
+ assert.dom('[data-test-toggle] [aria-checked]').exists();
20
+ });
21
+ });
@@ -0,0 +1,13 @@
1
+ import { module, test } from 'qunit';
2
+ import { setupRenderingTest } from 'ember-qunit';
3
+ import { render } from '@ember/test-helpers';
4
+ import hbs from 'htmlbars-inline-precompile';
5
+
6
+ module('Integration | Component | bsy-textarea', function(hooks) {
7
+ setupRenderingTest(hooks);
8
+
9
+ test('It renders a textarea', async function(assert) {
10
+ await render(hbs`{{bsy-textarea}}`);
11
+ assert.dom('textarea').exists('a textarea was rendered');
12
+ });
13
+ });
@@ -1,6 +1,8 @@
1
- import resolver from './helpers/resolver';
2
- import {
3
- setResolver
4
- } from 'ember-qunit';
1
+ import Application from '../app';
2
+ import config from '../config/environment';
3
+ import { setApplication } from '@ember/test-helpers';
4
+ import { start } from 'ember-qunit';
5
5
 
6
- setResolver(resolver);
6
+ setApplication(Application.create(config.APP));
7
+
8
+ start();
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bootstrap-bookingsync-sass
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.5
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sebastien Grosjean
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-10-01 00:00:00.000000000 Z
11
+ date: 2020-04-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bootstrap-sass
@@ -31,17 +31,21 @@ executables: []
31
31
  extensions: []
32
32
  extra_rdoc_files: []
33
33
  files:
34
- - ".bowerrc"
35
34
  - ".editorconfig"
36
35
  - ".ember-cli"
36
+ - ".eslintignore"
37
+ - ".eslintrc.js"
37
38
  - ".gitignore"
38
39
  - ".jshintrc"
39
40
  - ".npmignore"
40
- - ".travis.yaml"
41
+ - ".template-lintrc.js"
42
+ - ".travis.yml"
41
43
  - ".watchmanconfig"
42
44
  - CHANGELOG.md
45
+ - CONTRIBUTING.md
43
46
  - Gemfile
44
47
  - LICENSE
48
+ - LICENSE.md
45
49
  - README.md
46
50
  - addon/.gitkeep
47
51
  - addon/components/bsy-alert.js
@@ -51,6 +55,7 @@ files:
51
55
  - addon/components/bsy-button.js
52
56
  - addon/components/bsy-button/close.js
53
57
  - addon/components/bsy-checkbox.js
58
+ - addon/components/bsy-icon.js
54
59
  - addon/components/bsy-input-addon.js
55
60
  - addon/components/bsy-input-addon/addon.js
56
61
  - addon/components/bsy-input-addon/input.js
@@ -63,6 +68,7 @@ files:
63
68
  - addon/components/bsy-nav.js
64
69
  - addon/components/bsy-nav/item.js
65
70
  - addon/components/bsy-nav/link.js
71
+ - addon/components/bsy-popover.js
66
72
  - addon/components/bsy-radio-buttons.js
67
73
  - addon/components/bsy-radio-buttons/button.js
68
74
  - addon/components/bsy-radio.js
@@ -70,6 +76,7 @@ files:
70
76
  - addon/components/bsy-select.js
71
77
  - addon/components/bsy-sheet.js
72
78
  - addon/components/bsy-sheet/header.js
79
+ - addon/components/bsy-switch.js
73
80
  - addon/components/bsy-textarea.js
74
81
  - addon/templates/components/bsy-alert.hbs
75
82
  - addon/templates/components/bsy-annotated-section.hbs
@@ -97,6 +104,7 @@ files:
97
104
  - addon/templates/components/bsy-select.hbs
98
105
  - addon/templates/components/bsy-sheet.hbs
99
106
  - addon/templates/components/bsy-sheet/header.hbs
107
+ - addon/templates/components/bsy-switch.hbs
100
108
  - addon/templates/components/bsy-textarea.hbs
101
109
  - app/.gitkeep
102
110
  - app/components/bsy-alert.js
@@ -106,6 +114,7 @@ files:
106
114
  - app/components/bsy-button.js
107
115
  - app/components/bsy-button/close.js
108
116
  - app/components/bsy-checkbox.js
117
+ - app/components/bsy-icon.js
109
118
  - app/components/bsy-input-addon.js
110
119
  - app/components/bsy-input-addon/addon.js
111
120
  - app/components/bsy-input-addon/input.js
@@ -118,6 +127,7 @@ files:
118
127
  - app/components/bsy-nav.js
119
128
  - app/components/bsy-nav/item.js
120
129
  - app/components/bsy-nav/link.js
130
+ - app/components/bsy-popover.js
121
131
  - app/components/bsy-radio-buttons.js
122
132
  - app/components/bsy-radio-buttons/button.js
123
133
  - app/components/bsy-radio.js
@@ -125,6 +135,7 @@ files:
125
135
  - app/components/bsy-select.js
126
136
  - app/components/bsy-sheet.js
127
137
  - app/components/bsy-sheet/header.js
138
+ - app/components/bsy-switch.js
128
139
  - app/components/bsy-textarea.js
129
140
  - assets/javascripts/bookingsync/form.js
130
141
  - assets/javascripts/bookingsync/menu.js
@@ -141,6 +152,8 @@ files:
141
152
  - assets/stylesheets/bookingsync/_colors.scss
142
153
  - assets/stylesheets/bookingsync/_dropdown.scss
143
154
  - assets/stylesheets/bookingsync/_ember-power-select.scss
155
+ - assets/stylesheets/bookingsync/_ember-toggle.scss
156
+ - assets/stylesheets/bookingsync/_ember-tooltips.scss
144
157
  - assets/stylesheets/bookingsync/_form.scss
145
158
  - assets/stylesheets/bookingsync/_icons.scss
146
159
  - assets/stylesheets/bookingsync/_layout.scss
@@ -161,7 +174,6 @@ files:
161
174
  - blueprints/ember-cli-bootstrap-bookingsync-sass/files/ember-cli-build.js
162
175
  - blueprints/ember-cli-bootstrap-bookingsync-sass/index.js
163
176
  - bootstrap-bookingsync-sass.gemspec
164
- - bower.json
165
177
  - config/deploy.js
166
178
  - config/ember-try.js
167
179
  - config/environment.js
@@ -259,11 +271,15 @@ files:
259
271
  - lib/bootstrap-bookingsync-sass.rb
260
272
  - lib/bootstrap/bookingsync/engine.rb
261
273
  - lib/bootstrap/bookingsync/version.rb
274
+ - package-lock.json
262
275
  - package.json
263
- - testem.json
264
- - tests/.jshintrc
276
+ - testem.js
265
277
  - tests/dummy/app/app.js
266
278
  - tests/dummy/app/components/.gitkeep
279
+ - tests/dummy/app/components/navbar/component.js
280
+ - tests/dummy/app/components/navbar/template.hbs
281
+ - tests/dummy/app/components/sidebar/component.js
282
+ - tests/dummy/app/components/sidebar/template.hbs
267
283
  - tests/dummy/app/controllers/.gitkeep
268
284
  - tests/dummy/app/controllers/index.js
269
285
  - tests/dummy/app/helpers/.gitkeep
@@ -276,29 +292,28 @@ files:
276
292
  - tests/dummy/app/templates/application.hbs
277
293
  - tests/dummy/app/templates/components/.gitkeep
278
294
  - tests/dummy/app/templates/index.hbs
279
- - tests/dummy/app/templates/navbar.hbs
280
- - tests/dummy/app/templates/sidebar.hbs
281
295
  - tests/dummy/config/environment.js
282
- - tests/dummy/public/crossdomain.xml
296
+ - tests/dummy/config/optional-features.json
297
+ - tests/dummy/config/targets.js
283
298
  - tests/dummy/public/robots.txt
284
- - tests/helpers/destroy-app.js
285
- - tests/helpers/module-for-acceptance.js
299
+ - tests/helpers/.gitkeep
286
300
  - tests/helpers/resolver.js
287
- - tests/helpers/start-app.js
288
301
  - tests/index.html
289
302
  - tests/integration/.gitkeep
290
303
  - tests/integration/components/bsy-alert-test.js
291
304
  - tests/integration/components/bsy-button-test.js
305
+ - tests/integration/components/bsy-checkbox-test.js
306
+ - tests/integration/components/bsy-input-test.js
292
307
  - tests/integration/components/bsy-nav-test.js
293
308
  - tests/integration/components/bsy-nav/item-test.js
294
309
  - tests/integration/components/bsy-nav/link-test.js
310
+ - tests/integration/components/bsy-popover-test.js
295
311
  - tests/integration/components/bsy-sheet-test.js
296
- - tests/integration/components/bsy-sheet.header-test.js
297
312
  - tests/integration/components/bsy-sheet/header-test.js
313
+ - tests/integration/components/bsy-switch-test.js
314
+ - tests/integration/components/bsy-textarea-test.js
298
315
  - tests/test-helper.js
299
- - tests/unit/.gitkeep
300
316
  - vendor/.gitkeep
301
- - yarn.lock
302
317
  homepage: https://github.com/BookingSync/bootstrap-bookingsync-sass
303
318
  licenses:
304
319
  - MIT
@@ -318,10 +333,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
318
333
  - !ruby/object:Gem::Version
319
334
  version: '0'
320
335
  requirements: []
321
- rubyforge_project:
322
- rubygems_version: 2.5.1
336
+ rubygems_version: 3.0.1
323
337
  signing_key:
324
338
  specification_version: 4
325
339
  summary: Twitter's Bootstrap with BookingSync Theme, ready to drop into Rails
326
340
  test_files: []
327
- has_rdoc:
data/.bowerrc DELETED
@@ -1,4 +0,0 @@
1
- {
2
- "directory": "bower_components",
3
- "analytics": false
4
- }
@@ -1,34 +0,0 @@
1
- ---
2
- language: node_js
3
- node_js:
4
- - "0.12"
5
-
6
- sudo: false
7
-
8
- cache:
9
- directories:
10
- - node_modules
11
-
12
- env:
13
- - EMBER_TRY_SCENARIO=default
14
- - EMBER_TRY_SCENARIO=ember-release
15
- - EMBER_TRY_SCENARIO=ember-beta
16
- - EMBER_TRY_SCENARIO=ember-canary
17
-
18
- matrix:
19
- fast_finish: true
20
- allow_failures:
21
- - env: EMBER_TRY_SCENARIO=ember-canary
22
-
23
- before_install:
24
- - export PATH=/usr/local/phantomjs-2.0.0/bin:$PATH
25
- - "npm config set spin false"
26
- - "npm install -g npm@^2"
27
-
28
- install:
29
- - npm install -g bower
30
- - npm install
31
- - bower install
32
-
33
- script:
34
- - ember try $EMBER_TRY_SCENARIO test
data/bower.json DELETED
@@ -1,14 +0,0 @@
1
- {
2
- "name": "ember-cli-bootstrap-bookingsync-sass",
3
- "dependencies": {
4
- "ember": "2.3.0",
5
- "ember-cli-shims": "0.1.0",
6
- "ember-cli-test-loader": "0.2.2",
7
- "ember-qunit-notifications": "0.1.0",
8
- "jquery": "1.11.3",
9
- "bootstrap-sass": "^3.3.6"
10
- },
11
- "resolutions": {
12
- "ember": "2.3.0"
13
- }
14
- }
@@ -1,12 +0,0 @@
1
- {
2
- "framework": "qunit",
3
- "test_page": "tests/index.html?hidepassed",
4
- "disable_watching": true,
5
- "launch_in_ci": [
6
- "PhantomJS"
7
- ],
8
- "launch_in_dev": [
9
- "PhantomJS",
10
- "Chrome"
11
- ]
12
- }