hitfox-suspenders 1.0.2 → 1.1.0

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: 766be1a0ab233e1eb30a4fff6db1aa67d4fb3604
4
- data.tar.gz: 8cefb4d5c52697aaad0f1dbf94fc086a96eaaf5a
3
+ metadata.gz: 9659d4bc8a98f550daa3f25058c9597441ecdd47
4
+ data.tar.gz: 88b008290616f4a534371023aa129adacc9e16d3
5
5
  SHA512:
6
- metadata.gz: cec121666e39a929fd68a3543caf66248106db5a3dfcaf42744d0aa56b95791eaddb916bacc7362fb916b1fcea8f3726d623804a96b7a65a14cc8d22bb11a717
7
- data.tar.gz: 77502d870f4c12aaefe30525e46ed2894ac2bdc03b140355f26b14e31e9329310a9993834ec45f79a72e1736347383ffbdc1c40d2a60bc129d5670a1b03cb630
6
+ metadata.gz: 0f49ec91e815467448f1ef24e9fe5c6a4ffbe6d4efab492f54d01e7ae20889fcb8aaf3b3d0d4f32b176b2ed70133997aa340cd4c6b0417bc2928de3599243ab3
7
+ data.tar.gz: 81d0d5f518f20098272538d0ace21cd1f0268f3bdb95045634610966e42630d4f182e089ee47dd26c08a1e288bd3bf21b06c1a43b66ea430a165050a56e2cbe0
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- hitfox-suspenders (1.0.2)
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.1)
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.0)
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.2)
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 'app/assets/stylesheets/application.css'
231
- copy_file 'application.css.scss',
232
- 'app/assets/stylesheets/application.css.scss'
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
- @port ||= [3000, 4000, 5000, 7000, 8000, 9000].sample
336
+ 3000
336
337
  end
337
338
 
338
339
  def serve_static_files_line
@@ -1,5 +1,5 @@
1
1
  module Suspenders
2
2
  RAILS_VERSION = "4.2.1"
3
3
  RUBY_VERSION = IO.read("#{File.dirname(__FILE__)}/../../.ruby-version").strip
4
- VERSION = "1.0.2"
4
+ VERSION = "1.1.0"
5
5
  end
@@ -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
@@ -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].
@@ -2,8 +2,6 @@
2
2
 
3
3
  <%= yield :javascript %>
4
4
 
5
- <%= render "analytics" %>
6
-
7
5
  <% if Rails.env.test? %>
8
6
  <%= javascript_tag do %>
9
7
  $.fx.off = true;
@@ -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.2
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-04-23 00:00:00.000000000 Z
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.css.scss
134
+ - templates/application.scss
134
135
  - templates/bin_setup.erb
135
136
  - templates/browserslist
136
137
  - templates/bundler_audit.rake