jetfuel 1.18.4 → 1.18.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 +4 -4
- data/Gemfile.lock +3 -3
- data/README.md +29 -2
- data/lib/jetfuel/app_builder.rb +1 -0
- data/lib/jetfuel/version.rb +1 -1
- data/templates/bin_setup +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 716ce0e5a36846b0fa38a46b5732e01744da7d6e
|
|
4
|
+
data.tar.gz: 97d538e74e445c25bc44f0ff55f0bde34208377b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 712217bf1953fb6632d30cfcaf4bf0e31e2db278f3f8e8411955a04b99f6eb125fde7d723e7ce1fa690bc5150a2c5562224df6770fa7882817e2523dd8494d6c
|
|
7
|
+
data.tar.gz: 17c4879b5165c47fd03371e55ed1466ab4887099141bdcadee524e0dd170f28945ecdc02ae456d6ced1ed183dfa1feba0d81eabd649b949e6738634998147717
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
jetfuel (1.18.
|
|
4
|
+
jetfuel (1.18.5)
|
|
5
5
|
bundler (~> 1.3)
|
|
6
6
|
rails (= 4.1.1)
|
|
7
7
|
|
|
@@ -60,14 +60,14 @@ GEM
|
|
|
60
60
|
gherkin (2.12.2)
|
|
61
61
|
multi_json (~> 1.3)
|
|
62
62
|
hike (1.2.3)
|
|
63
|
-
i18n (0.6.
|
|
63
|
+
i18n (0.6.11)
|
|
64
64
|
json (1.8.1)
|
|
65
65
|
mail (2.5.4)
|
|
66
66
|
mime-types (~> 1.16)
|
|
67
67
|
treetop (~> 1.4.8)
|
|
68
68
|
mime-types (1.25.1)
|
|
69
69
|
mini_portile (0.6.0)
|
|
70
|
-
minitest (5.
|
|
70
|
+
minitest (5.4.0)
|
|
71
71
|
multi_json (1.10.1)
|
|
72
72
|
multi_test (0.1.1)
|
|
73
73
|
nokogiri (1.6.2.1)
|
data/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Jetfuel is the base Rails application used at [flyoverworks](http://flyoverworks.com/).
|
|
4
4
|
|
|
5
|
-
Installation
|
|
5
|
+
Installation & New App Creation
|
|
6
6
|
------------
|
|
7
7
|
|
|
8
8
|
First, install the gem:
|
|
@@ -18,6 +18,33 @@ This will create a Rails app in `projectname` using the latest version of Rails.
|
|
|
18
18
|
By default this script creates a new git repository. See below if you
|
|
19
19
|
want to use it against an existing repo.
|
|
20
20
|
|
|
21
|
+
Set Up Existing App
|
|
22
|
+
----------
|
|
23
|
+
|
|
24
|
+
Get the code.
|
|
25
|
+
|
|
26
|
+
git clone git@github.com:organization/app.git
|
|
27
|
+
|
|
28
|
+
Set up the app's dependencies.
|
|
29
|
+
|
|
30
|
+
cd project
|
|
31
|
+
./bin/setup
|
|
32
|
+
|
|
33
|
+
Use [Heroku config](https://github.com/ddollar/heroku-config) to get `ENV`
|
|
34
|
+
variables.
|
|
35
|
+
|
|
36
|
+
heroku config:pull --remote staging
|
|
37
|
+
|
|
38
|
+
Delete extra lines in `.env`, leaving only those needed for app to function
|
|
39
|
+
properly. For example: `BRAINTREE_MERCHANT_ID` and `S3_SECRET`.
|
|
40
|
+
|
|
41
|
+
Use [Foreman](https://github.com/ddollar/foreman) to run the app locally.
|
|
42
|
+
|
|
43
|
+
foreman start
|
|
44
|
+
|
|
45
|
+
It uses your `.env` file and `Procfile` to run processes just like Heroku's
|
|
46
|
+
[Cedar](https://devcenter.heroku.com/articles/cedar/) stack.
|
|
47
|
+
|
|
21
48
|
Gemfile
|
|
22
49
|
-------
|
|
23
50
|
|
|
@@ -30,6 +57,7 @@ It includes application gems like:
|
|
|
30
57
|
* [Airbrake](https://github.com/airbrake/airbrake) for exception notification
|
|
31
58
|
* [Bourbon](https://github.com/thoughtbot/bourbon) for Sass mixins
|
|
32
59
|
* [Twitter Bootstrap](https://getbootstrap.com) for scaffold application styles
|
|
60
|
+
* [Leather](https://github.com/dvanderbeek/leather) for Devise with styled views, a bootstrap UI Kit page, and some useful bootstrap component helpers
|
|
33
61
|
* [Delayed Job](https://github.com/collectiveidea/delayed_job) for background
|
|
34
62
|
processing
|
|
35
63
|
* [Email Validator](https://github.com/balexand/email_validator) for email
|
|
@@ -38,7 +66,6 @@ It includes application gems like:
|
|
|
38
66
|
helper
|
|
39
67
|
* [High Voltage](https://github.com/thoughtbot/high_voltage) for static pages
|
|
40
68
|
* [jQuery Rails](https://github.com/rails/jquery-rails) for jQuery
|
|
41
|
-
* [Neat](https://github.com/thoughtbot/neat) for semantic grids
|
|
42
69
|
* [Postgres](https://github.com/ged/ruby-pg) for access to the Postgres database
|
|
43
70
|
* [Rack Timeout](https://github.com/kch/rack-timeout) to abort requests that are
|
|
44
71
|
taking too long
|
data/lib/jetfuel/app_builder.rb
CHANGED
data/lib/jetfuel/version.rb
CHANGED
data/templates/bin_setup
CHANGED
|
@@ -11,7 +11,7 @@ bundle install
|
|
|
11
11
|
|
|
12
12
|
# Set up configurable environment variables
|
|
13
13
|
if [ ! -f .env ]; then
|
|
14
|
-
cp
|
|
14
|
+
cp sample.env .env
|
|
15
15
|
fi
|
|
16
16
|
|
|
17
17
|
# Set up database and add any development seed data
|
|
@@ -21,12 +21,12 @@ bundle exec rake dev:prime
|
|
|
21
21
|
mkdir -p .git/safe
|
|
22
22
|
|
|
23
23
|
# Pick a port for Foreman
|
|
24
|
-
echo "port:
|
|
24
|
+
echo "port: 3000" > .foreman
|
|
25
25
|
|
|
26
26
|
# Set up DNS via Pow
|
|
27
27
|
if [ -d ~/.pow ]
|
|
28
28
|
then
|
|
29
|
-
echo
|
|
29
|
+
echo 3000 > ~/.pow/`basename $PWD`
|
|
30
30
|
else
|
|
31
31
|
echo "Pow not set up but the team uses it for this project. Setup: http://goo.gl/RaDPO"
|
|
32
32
|
fi
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jetfuel
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.18.
|
|
4
|
+
version: 1.18.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- FlyoverWorks
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-07-
|
|
11
|
+
date: 2014-07-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|