opening_act 0.1.4 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d468b4db67466b23cabc2857272b030631cd7f0b
4
- data.tar.gz: 56252f32f439c96b92892b993077251c6bf88d67
3
+ metadata.gz: 2db1e36e6c84d21099bc1b1ce5265b49c249631b
4
+ data.tar.gz: 9ff6ac3640e8f66c6fd3f3cd2f09ff1a768ab5e8
5
5
  SHA512:
6
- metadata.gz: 4383083223e1ade4ecacefeff6cf61e62e3ea44b9eed7feb47e0e6dc1a308b26315011b120d9c0adc138e0261ad53b6486bb8c4eae0f130a5925c6175851cf21
7
- data.tar.gz: 03cf4a999984d42060fa8052aa58db726539b886dff4ff1c21635c91ccfc4a8438ec3f0aaa6fcd933d89bad08f95b871665cc02d4bccc6d9e4519bff47f26c1c
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`
@@ -1,5 +1,7 @@
1
1
  require 'rubygems'
2
2
  require 'bundler/setup'
3
+ require 'tilt/erubis'
4
+ require 'date'
3
5
  require 'sinatra' unless defined?(Sinatra)
4
6
 
5
7
  configure do
@@ -1,8 +1,5 @@
1
1
  require 'bundler/setup'
2
2
  require 'sinatra'
3
- require 'tilt/erubis'
4
- require 'rack'
5
- require 'date'
6
3
  require File.join(File.dirname(__FILE__), 'environment')
7
4
 
8
5
  configure(:development) do
@@ -1,3 +1,3 @@
1
1
  class OpeningAct
2
- VERSION = '0.1.4'.freeze
2
+ VERSION = '0.1.5'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: opening_act
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sun-Li Beatteay