opening_act 0.1.4 → 0.1.5
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2db1e36e6c84d21099bc1b1ce5265b49c249631b
|
|
4
|
+
data.tar.gz: 9ff6ac3640e8f66c6fd3f3cd2f09ff1a768ab5e8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2ef1026d33be2c9ad47d2b779457a82fc6abd914c2cf60170a394f049a87849e2988bb8662e75ef35d600c4443eb914813acf16f343f8e281743c5afab18f6fb
|
|
7
|
+
data.tar.gz: 53ee900ed9b910fc1d237f5fc7df7ab8ebe898ff01cf200378590ef67718b3e3a60ae5780c2656e2a10447fccce15479024be5ab894ff83b86d0b731d2299738
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
*If you've never used OpeningAct before, this README will describe the what is contained in your project directory. If you've already used OpeningAct before, you can delete all the text in this file*
|
|
2
|
+
|
|
3
|
+
# Welcome to OpeningAct
|
|
4
|
+
|
|
5
|
+
Your project is ready for development! However, there are a few things to point out:
|
|
6
|
+
|
|
7
|
+
## Configuration
|
|
8
|
+
|
|
9
|
+
* Please read over the `environment.rb` file and complete Application Name and Author Name sections with the appropriate information. This file houses all our dependencies.
|
|
10
|
+
* OpeningAct does not have database support yet, so set up your database and models in the `lib` folder.
|
|
11
|
+
* A placeholder homepage has been created for you. Run `heroku local web` if you wish to see it. Otherwise, please replace it with your own.
|
|
12
|
+
|
|
13
|
+
## Testing
|
|
14
|
+
|
|
15
|
+
All your tests are housed in either the `test` or `spec` folders, depending on the test framework you specified.
|
|
16
|
+
|
|
17
|
+
Some failing tests have been created for you. To run the tests:
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
`bundle exec rake test`
|
|
21
|
+
|
|
22
|
+
OR
|
|
23
|
+
|
|
24
|
+
`bundle exec rake spec`
|
data/lib/opening_act/version.rb
CHANGED