johnhenry 1.0.20 → 1.0.21

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: b738b13e885b08973bf08cae0b43bd0c4f7a8108
4
- data.tar.gz: 9f7934114a707f1f0607fd8f2d22cbad1148673b
3
+ metadata.gz: 11c30cf32e84996668c0ad3fab9de9d96218f740
4
+ data.tar.gz: db1dbae96f0cefae0f796e6584593d3b71126459
5
5
  SHA512:
6
- metadata.gz: 6c759f99eae4d9240d7b954f7c836fa2f72443afd51d089352a0dc84c76455bb6718f0e0a1f99c01c558e65708cd3cc986c40ef148a9d97d8131aefc2b9b4ffa
7
- data.tar.gz: 19e4bcfcf67b635dbb83c302b05d153c32652381735150f9e56306813e18353b512b083ff014534b93b33354848437afcfb715120887ebd061365888301ef2ef
6
+ metadata.gz: c17c99d17343c2d086385e14126f8201cfe264a3e6731a6676be6164d7784db2f28f04365d82db51d83ee156a365e67ee58a66e41973d9afbd291de79d9c4b20
7
+ data.tar.gz: 177b0759e61b5ef769bb540888b91441612b7d2060f0c5874af9095ae7f554f6271b34bdd1ddf77f6634d9184cda011bf7edc4bb4a5b9e8e343b4c529e0df47b
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Introduction
1
+ # Introduction ![](https://travis-ci.org/derwiki/johnhenry.png)   ![](https://codeclimate.com/github/derwiki/johnhenry.png)
2
2
  The JohnHenry Rails toolkit is meant to take care of all the menial tasks of
3
3
  launching a Rails application, that are largely the same from application to
4
4
  application. Using JohnHenry, you'll have the sample project live on a Heroku
@@ -58,8 +58,8 @@ $ rails -v
58
58
  Rails 4.0.2
59
59
  ```
60
60
 
61
- 1. Download and run the install script:
62
61
  ## Basic Installation
62
+ 1. Download and run the install script:
63
63
  This assumes that you have the following commands available to you on your
64
64
  command line: `rails`, `bundle`, `git`, `heroku`.
65
65
  ```bash
@@ -154,9 +154,6 @@ when you are dumped back on the homepage, view the page's source code. You
154
154
  should see a `<!-- Google Code for signup Conversion Page -->` HTML comment
155
155
  followed by the conversion snippet.
156
156
 
157
- 1. Custom Bootstrap color theme:
158
- http://www.lavishbootstrap.com/
159
-
160
157
  # Contributing
161
158
  Bug fixes are welcome as pull requests against master. If you have bigger ideas,
162
159
  please get in contact with me at `derewecki@gmail.com`.
@@ -12,6 +12,11 @@ group :production do
12
12
  gem 'heroku-deflater'
13
13
  end
14
14
 
15
+ group :development do
16
+ gem 'better_errors'
17
+ gem 'binding_of_caller'
18
+ end
19
+
15
20
  group :development, :test do
16
21
  gem 'sqlite3'
17
22
  gem 'pry-rails'
@@ -1,3 +1,3 @@
1
1
  module JohnHenry
2
- VERSION = '1.0.20'
2
+ VERSION = '1.0.21'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: johnhenry
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.20
4
+ version: 1.0.21
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Derewecki
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-01-11 00:00:00.000000000 Z
11
+ date: 2014-01-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -201,7 +201,6 @@ files:
201
201
  - app/views/johnhenry/devise/sessions/new.html.haml
202
202
  - app/views/johnhenry/devise/shared/_links.haml
203
203
  - app/views/johnhenry/devise/unlocks/new.html.haml
204
- - app/views/johnhenry/home/install.html.haml
205
204
  - app/views/johnhenry/home/welcome.html.haml
206
205
  - app/views/johnhenry/payments/_form.html.haml
207
206
  - app/views/johnhenry/payments/edit.html.haml
@@ -219,7 +218,6 @@ files:
219
218
  - app/views/layouts/johnhenry/application.html.haml
220
219
  - config/initializers/devise.rb
221
220
  - config/routes.rb
222
- - db/development.sqlite3
223
221
  - db/migrate/20140104011356_add_users_and_payments.rb
224
222
  - lib/Gemfile
225
223
  - lib/johnhenry.rb
@@ -1,3 +0,0 @@
1
- .container#readme
2
- .row
3
- .col-xs-12= raw(@readme)
File without changes