projectionist-projects 0.1.2 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1cabc9911b0ca4c595ab222a2c0e2feb459568ff
4
- data.tar.gz: a14b0280696afe879919ca5e7375f448864ece28
3
+ metadata.gz: 302e146066c655ecb011646f9e61c5efc91a23c9
4
+ data.tar.gz: 0fd50e365ad0e9ad9cea9a39eb3da28420bd56bf
5
5
  SHA512:
6
- metadata.gz: d7e419e93906f367f3f1d2a9598b0bed795b8ce1608e558c7139f1f42f1ae0f12df6e8e112ee6c2d4c6bc73fa047e226f030b11b95cdeddea33700cfd793e7f7
7
- data.tar.gz: 295575dade49c4d7987109e161373cdd6e03193b2b35f053f553240406d53f873a09085aa04a8e5b5bcb09de2d1b5623175563a5c747420208d6e9102c4a6ded
6
+ metadata.gz: ea6adc12a41b568580f513aeb4cbcab3f9f10998b86169ee3b1a362662607fe20c941d58dac3d2c835655b2017e528663bf381235e16d14d723481df1daaa1cc
7
+ data.tar.gz: 6f76e6b9a3845f77d173c03f02b8741758e743930caa9215c465b33d3c824c915ec0c37549453d11912d8df76c7f6fba1baf8ba1266ac882eda4150d93bf530f
@@ -1,5 +1,5 @@
1
1
  module Projectionist
2
2
  module Projects
3
- VERSION = "0.1.2"
3
+ VERSION = "0.1.3"
4
4
  end
5
5
  end
@@ -172,6 +172,45 @@
172
172
  "alternate": "app/routes/{}.js"
173
173
  },
174
174
 
175
+ "tests/acceptance/*-test.js": {
176
+ "command": "acceptance",
177
+ "template": [
178
+ "import Ember from 'ember';",
179
+ "import {open} module, test {close} from 'qunit';",
180
+ "// import startApp from 'app-name/tests/helpers/start-app';",
181
+ "// import {open} page {close} from 'app-name/tests/pages/page-name';",
182
+ "",
183
+ "module('acceptance: {blank}', {",
184
+ " beforeEach: function() {",
185
+ " this.application = startApp();",
186
+ " },",
187
+ "",
188
+ " afterEach: function() {",
189
+ " Ember.run(this.application, 'destroy');",
190
+ " }",
191
+ "});",
192
+ "",
193
+ "test('visiting /{}', function(assert) {",
194
+ " visit('/');",
195
+ "",
196
+ " andThen(function() {",
197
+ " assert.equal(currentURL(), '/');",
198
+ " });",
199
+ "});"
200
+ ]
201
+ },
202
+
203
+ "tests/pages/*.js": {
204
+ "command": "po",
205
+ "template": [
206
+ "import PO from '../page-object';",
207
+ "",
208
+ "export const page = PO.build({",
209
+ "",
210
+ "});"
211
+ ]
212
+ },
213
+
175
214
  "app/templates/*.hbs": {
176
215
  "command": "template",
177
216
  "alternate": "app/components/{}.js"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: projectionist-projects
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy W. Rowe
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-09-06 00:00:00.000000000 Z
11
+ date: 2015-09-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: highline