hitfox-suspenders 1.0.2 → 1.1.0
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 +4 -4
- data/README.md +2 -0
- data/lib/suspenders/app_builder.rb +5 -4
- data/lib/suspenders/version.rb +1 -1
- data/templates/Gemfile.erb +9 -1
- data/templates/Procfile.development +1 -0
- data/templates/README.md.erb +2 -2
- data/templates/_javascript.html.erb +0 -2
- data/templates/{application.css.scss → application.scss} +0 -0
- data/templates/bin_setup.erb +4 -0
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9659d4bc8a98f550daa3f25058c9597441ecdd47
|
|
4
|
+
data.tar.gz: 88b008290616f4a534371023aa129adacc9e16d3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0f49ec91e815467448f1ef24e9fe5c6a4ffbe6d4efab492f54d01e7ae20889fcb8aaf3b3d0d4f32b176b2ed70133997aa340cd4c6b0417bc2928de3599243ab3
|
|
7
|
+
data.tar.gz: 81d0d5f518f20098272538d0ace21cd1f0268f3bdb95045634610966e42630d4f182e089ee47dd26c08a1e288bd3bf21b06c1a43b66ea430a165050a56e2cbe0
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
hitfox-suspenders (1.0
|
|
4
|
+
hitfox-suspenders (1.1.0)
|
|
5
5
|
bitters (~> 1.0.0)
|
|
6
6
|
bundler (~> 1.3)
|
|
7
7
|
rails (= 4.2.1)
|
|
@@ -65,13 +65,13 @@ GEM
|
|
|
65
65
|
activesupport (>= 4.1.0)
|
|
66
66
|
i18n (0.7.0)
|
|
67
67
|
json (1.8.2)
|
|
68
|
-
loofah (2.0.
|
|
68
|
+
loofah (2.0.2)
|
|
69
69
|
nokogiri (>= 1.5.9)
|
|
70
70
|
mail (2.6.3)
|
|
71
71
|
mime-types (>= 1.16, < 3)
|
|
72
72
|
mime-types (2.4.3)
|
|
73
73
|
mini_portile (0.6.2)
|
|
74
|
-
minitest (5.6.
|
|
74
|
+
minitest (5.6.1)
|
|
75
75
|
nokogiri (1.6.6.2)
|
|
76
76
|
mini_portile (~> 0.6.0)
|
|
77
77
|
rack (1.6.0)
|
|
@@ -111,7 +111,7 @@ GEM
|
|
|
111
111
|
diff-lcs (>= 1.1.3, < 2.0)
|
|
112
112
|
rspec-mocks (2.99.3)
|
|
113
113
|
sass (3.4.13)
|
|
114
|
-
sprockets (3.0.
|
|
114
|
+
sprockets (3.0.3)
|
|
115
115
|
rack (~> 1.0)
|
|
116
116
|
sprockets-rails (2.2.4)
|
|
117
117
|
actionpack (>= 3.0)
|
data/README.md
CHANGED
|
@@ -31,6 +31,8 @@ Changelog
|
|
|
31
31
|
We constantly pull the latest chages from Thoughtbot's [suspenders](https://github.com/thoughtbot/suspenders) periodically.
|
|
32
32
|
|
|
33
33
|
List of changes we made since [this commit](https://github.com/thoughtbot/suspenders/commit/a470912e9df01fda62f0c23ce032a1c9b5493b69):
|
|
34
|
+
- Add refills install command
|
|
35
|
+
- Add a Procfile.development file
|
|
34
36
|
- Add CircleCI configuration template
|
|
35
37
|
- Add Honeybadger configuration and remove New Relic
|
|
36
38
|
- Use simple_form 3.0.3 to supress annoying warnings in specs
|
|
@@ -224,12 +224,13 @@ Rack::Timeout.timeout = (ENV["RACK_TIMEOUT"] || 10).to_i
|
|
|
224
224
|
|
|
225
225
|
def setup_foreman
|
|
226
226
|
copy_file 'sample.env', '.sample.env'
|
|
227
|
+
copy_file 'Procfile.development', 'Procfile.development'
|
|
227
228
|
end
|
|
228
229
|
|
|
229
230
|
def setup_stylesheets
|
|
230
|
-
remove_file
|
|
231
|
-
copy_file
|
|
232
|
-
|
|
231
|
+
remove_file "app/assets/stylesheets/application.css"
|
|
232
|
+
copy_file "application.scss",
|
|
233
|
+
"app/assets/stylesheets/application.scss"
|
|
233
234
|
end
|
|
234
235
|
|
|
235
236
|
def install_bitters
|
|
@@ -332,7 +333,7 @@ end
|
|
|
332
333
|
end
|
|
333
334
|
|
|
334
335
|
def port
|
|
335
|
-
|
|
336
|
+
3000
|
|
336
337
|
end
|
|
337
338
|
|
|
338
339
|
def serve_static_files_line
|
data/lib/suspenders/version.rb
CHANGED
data/templates/Gemfile.erb
CHANGED
|
@@ -3,19 +3,26 @@ source "https://rubygems.org"
|
|
|
3
3
|
ruby "<%= Suspenders::RUBY_VERSION %>"
|
|
4
4
|
|
|
5
5
|
gem 'honeybadger', '~> 2.0'
|
|
6
|
+
gem "bourbon", "~> 4.2.0"
|
|
6
7
|
gem "autoprefixer-rails"
|
|
7
8
|
gem "coffee-rails", "~> 4.1.0"
|
|
8
9
|
gem "email_validator"
|
|
10
|
+
gem "flutie"
|
|
9
11
|
gem "high_voltage"
|
|
10
12
|
gem "i18n-tasks"
|
|
11
13
|
gem "jquery-rails"
|
|
14
|
+
gem 'mandrill_dm', '1.1.0'
|
|
15
|
+
gem "neat", "~> 1.7.0"
|
|
16
|
+
gem "newrelic_rpm", ">= 3.9.8"
|
|
17
|
+
gem "normalize-rails", "~> 3.0.0"
|
|
12
18
|
gem "pg"
|
|
13
19
|
gem "rails", "<%= Suspenders::RAILS_VERSION %>"
|
|
20
|
+
gem "recipient_interceptor"
|
|
21
|
+
gem "refills"
|
|
14
22
|
gem "sass-rails", "~> 5.0"
|
|
15
23
|
gem "simple_form", "~> 3.0.3"
|
|
16
24
|
gem "title"
|
|
17
25
|
gem "uglifier"
|
|
18
|
-
gem 'mandrill_dm', '1.1.0'
|
|
19
26
|
|
|
20
27
|
group :development do
|
|
21
28
|
gem "spring"
|
|
@@ -37,6 +44,7 @@ end
|
|
|
37
44
|
group :test do
|
|
38
45
|
gem "capybara-webkit", ">= 1.2.0"
|
|
39
46
|
gem "database_cleaner"
|
|
47
|
+
gem "formulaic"
|
|
40
48
|
gem "launchy"
|
|
41
49
|
gem "shoulda-matchers", require: false
|
|
42
50
|
gem "simplecov", require: false
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
-web: bundle exec rails s -p $PORT
|
data/templates/README.md.erb
CHANGED
|
@@ -12,9 +12,9 @@ your machine with [this script].
|
|
|
12
12
|
|
|
13
13
|
[this script]: https://github.com/thoughtbot/laptop
|
|
14
14
|
|
|
15
|
-
After setting up, you can run the application using [foreman]:
|
|
15
|
+
After setting up, you can run the application in development using [foreman]:
|
|
16
16
|
|
|
17
|
-
% foreman start
|
|
17
|
+
% foreman start -f Procfile.development
|
|
18
18
|
|
|
19
19
|
If you don't have `foreman`, see [Foreman's install instructions][foreman]. It
|
|
20
20
|
is [purposefully excluded from the project's `Gemfile`][exclude].
|
|
File without changes
|
data/templates/bin_setup.erb
CHANGED
|
@@ -31,6 +31,10 @@ if ! command -v foreman > /dev/null; then
|
|
|
31
31
|
printf 'See https://github.com/ddollar/foreman for install instructions.\n'
|
|
32
32
|
fi
|
|
33
33
|
|
|
34
|
+
# generate refills template files here - fails if you do
|
|
35
|
+
# it in the hitfox app generator
|
|
36
|
+
rails generate refills:import flashes --only-stylesheets
|
|
37
|
+
|
|
34
38
|
# Only if this isn't CI
|
|
35
39
|
# if [ -z "$CI" ]; then
|
|
36
40
|
# fi
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hitfox-suspenders
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0
|
|
4
|
+
version: 1.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- thoughtbot
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2015-
|
|
12
|
+
date: 2015-05-06 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bitters
|
|
@@ -126,11 +126,12 @@ files:
|
|
|
126
126
|
- spec/support/suspenders.rb
|
|
127
127
|
- suspenders.gemspec
|
|
128
128
|
- templates/Gemfile.erb
|
|
129
|
+
- templates/Procfile.development
|
|
129
130
|
- templates/README.md.erb
|
|
130
131
|
- templates/_flashes.html.erb
|
|
131
132
|
- templates/_javascript.html.erb
|
|
132
133
|
- templates/action_mailer.rb
|
|
133
|
-
- templates/application.
|
|
134
|
+
- templates/application.scss
|
|
134
135
|
- templates/bin_setup.erb
|
|
135
136
|
- templates/browserslist
|
|
136
137
|
- templates/bundler_audit.rake
|