hosentrager 1.39.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (75) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +5 -0
  3. data/.ruby-version +1 -0
  4. data/.travis.yml +11 -0
  5. data/CONTRIBUTING.md +51 -0
  6. data/Gemfile +3 -0
  7. data/LICENSE +21 -0
  8. data/NEWS.md +496 -0
  9. data/README.md +233 -0
  10. data/RELEASING.md +19 -0
  11. data/Rakefile +8 -0
  12. data/bin/rake +16 -0
  13. data/bin/rspec +16 -0
  14. data/bin/setup +13 -0
  15. data/bin/suspenders +23 -0
  16. data/lib/suspenders.rb +5 -0
  17. data/lib/suspenders/actions.rb +33 -0
  18. data/lib/suspenders/adapters/heroku.rb +135 -0
  19. data/lib/suspenders/app_builder.rb +522 -0
  20. data/lib/suspenders/generators/app_generator.rb +265 -0
  21. data/lib/suspenders/version.rb +5 -0
  22. data/spec/adapters/heroku_spec.rb +67 -0
  23. data/spec/fakes/bin/heroku +5 -0
  24. data/spec/fakes/bin/hub +5 -0
  25. data/spec/features/github_spec.rb +16 -0
  26. data/spec/features/heroku_spec.rb +103 -0
  27. data/spec/features/new_project_spec.rb +245 -0
  28. data/spec/spec_helper.rb +20 -0
  29. data/spec/support/fake_github.rb +21 -0
  30. data/spec/support/fake_heroku.rb +53 -0
  31. data/spec/support/suspenders.rb +68 -0
  32. data/suspenders.gemspec +35 -0
  33. data/templates/.bowerrc +3 -0
  34. data/templates/Gemfile.erb +63 -0
  35. data/templates/Procfile +2 -0
  36. data/templates/README.md.erb +28 -0
  37. data/templates/_analytics.html.erb +7 -0
  38. data/templates/_css_overrides.html.erb +7 -0
  39. data/templates/_flashes.html.erb +7 -0
  40. data/templates/_javascript.html.erb +12 -0
  41. data/templates/action_mailer.rb +5 -0
  42. data/templates/app.json.erb +42 -0
  43. data/templates/application.scss +9 -0
  44. data/templates/bin_deploy +12 -0
  45. data/templates/bin_setup +21 -0
  46. data/templates/bin_setup_review_app.erb +19 -0
  47. data/templates/browserslist +3 -0
  48. data/templates/bundler_audit.rake +12 -0
  49. data/templates/capybara_webkit.rb +5 -0
  50. data/templates/circle.yml.erb +6 -0
  51. data/templates/config_locales_en.yml.erb +19 -0
  52. data/templates/database_cleaner_rspec.rb +21 -0
  53. data/templates/dev.rake +12 -0
  54. data/templates/disable_xml_params.rb +1 -0
  55. data/templates/dotfiles/.ctags +2 -0
  56. data/templates/dotfiles/.env +13 -0
  57. data/templates/errors.rb +34 -0
  58. data/templates/factories.rb +2 -0
  59. data/templates/factory_girl_rspec.rb +3 -0
  60. data/templates/flashes_helper.rb +5 -0
  61. data/templates/hound.yml +14 -0
  62. data/templates/i18n.rb +3 -0
  63. data/templates/json_encoding.rb +1 -0
  64. data/templates/newrelic.yml.erb +34 -0
  65. data/templates/postgresql_database.yml.erb +21 -0
  66. data/templates/puma.rb +28 -0
  67. data/templates/rack_mini_profiler.rb +5 -0
  68. data/templates/rails_helper.rb +22 -0
  69. data/templates/secrets.yml +14 -0
  70. data/templates/shoulda_matchers_config_rspec.rb +6 -0
  71. data/templates/smtp.rb +13 -0
  72. data/templates/spec_helper.rb +29 -0
  73. data/templates/suspenders_gitignore +13 -0
  74. data/templates/suspenders_layout.html.erb.erb +22 -0
  75. metadata +190 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: ed72351004ad0eaacf4195bf47a2fd4cad19675c
4
+ data.tar.gz: 9a2d83b17ed5c21f811836ad9efd516964ebf7bf
5
+ SHA512:
6
+ metadata.gz: 8709b861134a435e0f29ee14db7e29c3ab4fe62545f2509227839008b8ab5d39b79d0340f17426c195d002de46e27fdc4a61448600808f1d2a8db2cb7b245cc4
7
+ data.tar.gz: fb4728571d0e1a090763985b88a5307b0c6e8faf4612b1ac05fc258759865deed799b28cdbf06c8cee4b723e97174435f8073f4777e8d51bcc885c4208abc093
data/.gitignore ADDED
@@ -0,0 +1,5 @@
1
+ *.gem
2
+ *.swp
3
+ Gemfile.lock
4
+ /.bundle
5
+ /tmp
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 2.3.0
data/.travis.yml ADDED
@@ -0,0 +1,11 @@
1
+ language: ruby
2
+ rvm: 2.3.0
3
+ cache: bundler
4
+ sudo: false
5
+ before_install:
6
+ - "echo '--colour' > ~/.rspec"
7
+ - git config --global user.name 'Travis CI'
8
+ - git config --global user.email 'travis-ci@example.com'
9
+ install: bundle install
10
+ notifications:
11
+ email: false
data/CONTRIBUTING.md ADDED
@@ -0,0 +1,51 @@
1
+ # Contributing
2
+
3
+ We love pull requests from everyone. By participating in this project, you agree
4
+ to abide by the thoughtbot [code of conduct].
5
+
6
+ [code of conduct]: https://thoughtbot.com/open-source-code-of-conduct
7
+
8
+ Fork the repo:
9
+
10
+ git clone git@github.com:thoughtbot/suspenders.git
11
+
12
+ Set up your machine:
13
+
14
+ ./bin/setup
15
+
16
+ If you're having trouble installing `capybara-webkit` check their [installation
17
+ instructions](https://github.com/thoughtbot/capybara-webkit#qt-dependency-and-installation-issues).
18
+
19
+ Make sure the tests pass:
20
+
21
+ rake
22
+
23
+ Make your change.
24
+ Write tests.
25
+ Follow our [style guide][style].
26
+ Make the tests pass:
27
+
28
+ [style]: https://github.com/thoughtbot/guides/tree/master/style
29
+
30
+ rake
31
+
32
+ Write a [good commit message][commit].
33
+ Push to your fork.
34
+ [Submit a pull request][pr].
35
+
36
+ [commit]: http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html
37
+ [pr]: https://github.com/thoughtbot/suspenders/compare/
38
+
39
+ If [Hound] catches style violations,
40
+ fix them.
41
+
42
+ [hound]: https://houndci.com
43
+
44
+ Wait for us.
45
+ We try to at least comment on pull requests within one business day.
46
+ We may suggest changes.
47
+
48
+ ## Versions
49
+
50
+ To update the Ruby version,
51
+ change `.ruby-version` and `.travis.yml`.
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License
2
+
3
+ Copyright (c) 2008-2016 thoughtbot, inc.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/NEWS.md ADDED
@@ -0,0 +1,496 @@
1
+ 1.38.1 (April 20, 2016)
2
+
3
+ * Bugfix: add bitters as suspenders’ dependency back.
4
+
5
+ 1.38.0 (April 15, 2016)
6
+
7
+ * Update bourbon to `v5.0.0.beta.5`
8
+ * Drops staging environment in favor of configuration through env variables
9
+ * Bugfix: failing migrations were not making Heroku deploys fail
10
+
11
+ 1.37.0 (March 13, 2016)
12
+
13
+ * Remove `RAILS_ENV` definitions
14
+ * Set development `action_mailer.delivery_method` to `:file`
15
+ so that mails are copied to `./tmp/mails/` directory for easy development
16
+ access.
17
+ * Update Bourbon to v5.0.0.beta.3
18
+ * Update Bitters to v1.3
19
+ * Update Autoprefixer config, drop support for IE 9, IE 10 and iOS 7
20
+ * Better db support in linux environments
21
+ * Replaces coffeescript with babel
22
+ * Update CSS tests to ignore transitions
23
+
24
+ 1.36.0 (February 26, 2016)
25
+
26
+ * Update Bitters to v1.2
27
+ * Remove deprecated `fix_i18n_deprecation_warning` method
28
+ * Switch from Airbrake to Honeybadger
29
+ * Generate applications with `rack_mini_profiler` (disabled by default, enabled
30
+ by setting `RACK_MINI_PROFILER=1`)
31
+ * Heroku Pipelines bug fixes
32
+
33
+ 1.35.0 (December 30, 2015)
34
+
35
+ * Introduce Heroku Pipelines support
36
+ * Update to Ruby 2.3.0
37
+ * Heroku commands run on staging by default
38
+ * Git ignore `.env.local` instead of `.env`
39
+ * Add ability to use byebug navigation commands inside of Pry using the
40
+ `pry-byebug` gem
41
+ * Remove `i18n-tasks` from generated Gemfile
42
+ * Accessibility: Add `lang` attribute to `html` element in layout
43
+
44
+ 1.34.0 (November 15, 2015)
45
+
46
+ * Fix `block_unknown_urls` deprecation warning with capybara_webkit when running
47
+ Javascript tests
48
+ * Inherit staging's `action_mailer_host` config from production
49
+ * Suspenders command line responds to `-v` and `--version` options
50
+ * Clean up `bin/rake`
51
+ * Remove `email_validator` gem from generated Gemfile
52
+ * Fix Circle deploys by removing redundant remote
53
+ * Add `bullet` as development dependency
54
+ * Use Heroku Local (Forego) instead of Foreman
55
+ * Raise on missing Sprockets assets in test environment
56
+
57
+ 1.33.0 (October 23, 2015)
58
+
59
+ * Add `quiet_assets` as development dependency
60
+ * Reduce number of Puma processes and threads to reduce memory usage
61
+ * Move non-runtime-dependency i18n-tasks to development and test Gemfile groups
62
+ * Move non-runtime-dependency refills to the development Gemfile group
63
+ * Generate empty `spec/factories.rb` file in accordance with thoughtbot’s
64
+ styleguide
65
+ * Shoulda Matchers 3.0 configuration
66
+
67
+ 1.32.0 (October 9, 2015)
68
+
69
+ * Install Foreman automatically during setup script
70
+ * Port always defaults to 3000
71
+ * Provide shoulda-matchers config
72
+ * Set CI auto-deploy for Heroku suspended apps
73
+ * Configure capybara-webkit to block unknown URLs
74
+ * Add mandatory environment variables to .sample.env
75
+ * Other bugfixes
76
+
77
+ 1.31.0 (September 3, 2015)
78
+
79
+ * Update to Ruby 2.2.3
80
+ * Add ctags configuration dotfile
81
+ * Rename `$HOST` to `$APPLICATION_HOST` for zsh compatibility
82
+ * Update Bitters to 1.1
83
+ * Remove comments and newlines in config files
84
+ * Abort tests run if `DATABASE_URL` env variable is set
85
+
86
+ 1.30.0 (July 30, 2015)
87
+
88
+ * Update to RSpec 3.3
89
+ * Replace TravisCI with CircleCI
90
+ * Rename development data concept to avoid confusion with db/seeds
91
+ * Remove Unicorn in favor of Puma, as [recommended by Heroku]
92
+
93
+ [recommended by Heroku]: https://devcenter.heroku.com/changelog-items/594
94
+
95
+ 1.29.0 (June 16, 2015)
96
+
97
+ * Generate rake, rails and rspec binstubs with Spring
98
+ * Remove Capybara and use RSpec 3.2 for development
99
+ * Improves suspenders' test suite speed
100
+ * Refills `flashes.scss` bugfix
101
+
102
+ 1.28.0 (May 9, 2015)
103
+
104
+ * Require spec/support files in a certain order
105
+ * Use rack-canonical-host
106
+ * Swap `id="flash"` for `class="flashes"` in `_flashes.html.erb`
107
+ * Provide EXECJS_RUNTIME env variable (Node, as in Heroku)
108
+ * Removes .css file suffix from application stylesheet
109
+ * Add mention of Autoprefixer Rails gem to readme
110
+ * Use ruby 2.2.2
111
+ * Update gems
112
+
113
+ 1.27.0 (April 10, 2015)
114
+
115
+ * Add Autoprefixer and browserslist config file
116
+ * Only display user-facing flashes
117
+ * Add code of conduct to CONTRIBUTING document
118
+ * Only use rack-timeout in staging and production
119
+ * Add SimpleCov
120
+ * Avoid generation of extra _flashes view
121
+ * Fix Travis CI install step
122
+ * Cache bundle in Travis CI runs
123
+
124
+ 1.26.0 (March 23, 2015)
125
+
126
+ * Update Rails to 4.2.1
127
+ * Update Bitters to 1.0
128
+ * Fix .ruby-version (should have been 2.1.1)
129
+ * Enable `verify_partial_doubles`
130
+ * Renames Segment.io to Segment
131
+ * Removes New Relic unnecessary configuration setting
132
+
133
+ 1.25.0 (March 7, 2015)
134
+
135
+ * Configure Active Job queue adapter for test env
136
+ * Use Ruby 2.2.1 (bug: `.ruby-version` wasn’t updated in the package)
137
+ * Dasherize heroku app names
138
+ * Update Bourbon to 4.2.0
139
+ * Add ASSET_HOST to sample.env (defaults to HOST)
140
+ * Set bin/deploy script as executable
141
+ * Set email deliver method to :test for development
142
+ * Include missing word in the Flutie description in README.
143
+ * Remove unused dev gems: aruba & cucumber
144
+ * Use skip_bundle class_option (rather than defining an empty run_bundle method)
145
+
146
+ 1.24.0 (February 3, 2015)
147
+
148
+ * Remove things in Suspenders that Rails does for us now.
149
+ * Document how to use the `title` view helper.
150
+ * Improve speed of bundling in `bin/setup` script.
151
+ * Set ENV variable to make out-of-the-box Heroku static asset experience better.
152
+
153
+ 1.23.0 (January 19, 2015)
154
+
155
+ * Use Bourbon 4.1.0.
156
+ * Use Neat 1.7.0.
157
+ * Remove [parameter wrapping] for every format, including JSON.
158
+ * Turn off TravisCI email notifications for Suspended apps.
159
+ * Run `rake dev:prime` on CI in order to test
160
+ whether `bin/setup` has any regressions.
161
+ * Fix `config.action_mailer.default_url_options`'s value.
162
+ It now correctly uses `ENV.fetch("HOST")` in staging
163
+ and production.
164
+
165
+ [parameter wrapping]: http://api.rubyonrails.org/classes/ActionController/ParamsWrapper.html
166
+
167
+ 1.22.0 (January 11, 2015)
168
+
169
+ * Allow additional
170
+ [Heroku flags](https://github.com/thoughtbot/suspenders#heroku)
171
+ such as `--addons` and `--region`.
172
+ * Use RSpec 3.1.0.
173
+ * Use Travis' new Docker container infrastructure
174
+ for builds that start sooner and run faster.
175
+ * Improve SMTP and ActionMailer default settings.
176
+
177
+ 1.21.0 (January 4, 2015)
178
+
179
+ * Use Ruby 2.2.0.
180
+ * Use Rails 4.2.0.
181
+ * Install [Refills] and Refills' "flashes" component.
182
+ * Add `bin/deploy` script.
183
+
184
+ [Refills]: http://refills.bourbon.io/components/#flashes
185
+
186
+ 1.20.0 (November 25, 2014)
187
+
188
+ * Use Ruby 2.1.5.
189
+ * Use bin/setup from TravisCI to test executable documentation.
190
+ * Default JSON time format to use ISO8601 to match Heroku API Design Guide.
191
+ * Add Bundler Audit to scan Gemfile for insecure dependencies per CVEs.
192
+
193
+ 1.19.0 (November 23, 2014)
194
+
195
+ * Use Ruby 2.1.4.
196
+ * Use Rails 4.1.8.
197
+ * Add Bundler Audit gem for scanning the Gemfile
198
+ for insecure dependencies based on published CVEs.
199
+ * Use Heroku-recommended timeout numbers.
200
+ * [Improve memory] of app on Heroku with New Relic.
201
+ * Turn off RSpec verbose mode by default.
202
+
203
+ [Improve memory]: http://forum.upcase.com/t/how-to-free-up-swap-space-heroku/3017/13?u=croaky
204
+
205
+ 1.18.0 (October 23, 2014)
206
+
207
+ * Use Ruby 2.1.3.
208
+ * Move New Relic to all gem groups to more easily
209
+ [debug Rails performance in development][debug-performance].
210
+ * Make `bin/setup` idempotent, failing fast with install messages.
211
+ * Fix unevaluated app name in generated `en.yml` locale file.
212
+ * Change `File.exists?` to `File.exist?` to fix Ruby warning.
213
+ * Don't include port 6000 as an option for Foreman; Chome considers it unsafe.
214
+ * Git ignore the entire /tmp directory.
215
+
216
+ [debug-performance]: https://upcase.com/improving-rails-performance
217
+
218
+ 1.17.0 (September 30, 2014)
219
+
220
+ * Use Rails 4.1.6.
221
+ * Generate a `spec/rails_helper.rb` and `spec/spec_helper.rb` following
222
+ RSpec 3.x's example, but using our defaults.
223
+ * Raise on missing i18n translations in test environment.
224
+ * Raise on unpermitted parameters in test environment.
225
+ * Provide example for using Title gem for internationalizing page title text.
226
+
227
+ 1.16.0 (August 16, 2014)
228
+
229
+ * Use the 3.x series of RSpec.
230
+ * Use the 0.10.x series of Bitters.
231
+ * Improve documentation in generated README for machine setup via `bin/setup`
232
+ and https://github.com/thoughtbot/laptop script.
233
+ * Remove Foreman from `Gemfile`.
234
+ * Use i18n-tasks for missing or unused translations.
235
+ * Raise on missing translations in development environment. Fail fast!
236
+ * Prevent empty div when there are no flashes.
237
+ * Pick random port when generating Rails app so multiple apps can be run via
238
+ Foreman on a development machine at the same time.
239
+ * Add `normalize-rails` gem for resetting browser styles.
240
+
241
+ 1.15.0 (July 9, 2014)
242
+
243
+ * Use Rails 4.1.4.
244
+ * Use latest thoughtbot style guidelines in generated code so that
245
+ https://houndci.com will approve the initial commit.
246
+ * Remove Campfire in favor of Slack.
247
+ * Remove Pow in bin/setup.
248
+ * Upgrade Capybara Webkit to support Capybara 2.3 API.
249
+ * Add byebug.
250
+
251
+ 1.14.0 (June 11, 2014)
252
+
253
+ * Set up Bitters during Suspenders setup. http://bitters.bourbon.io/
254
+ * Remove SimpleCov.
255
+ * Force Suspenders to use a particular Rails version (4.1.1).
256
+ * Use RSpec 2.x until Travis/Capybara issues resolve.
257
+ * Set `viewport` to `initial-scale=1`.
258
+
259
+ 1.13.0 (May 29, 2014)
260
+
261
+ * Remove `FactoryGirl.lint` in `before(:suite)` in order to avoid paying and
262
+ estimated extra ~300ms load time on a typical thoughtbot app.
263
+ * Automatically join Heroku app in `bin/setup` if using Heroku organizations.
264
+
265
+ 1.12.0 (May 26, 2014)
266
+
267
+ * Fix `rake dev:prime` now that Suspenders-generated apps require some `ENV`
268
+ variables to be set.
269
+ * Ensure `EMAIL_RECIPIENTS` is set on staging.
270
+ * Clear `ActionMailer` deliveries before every test.
271
+ * Include New Relic configuration file.
272
+ * Add Formulaic gem for integration testing HTML forms.
273
+ * Set up the Segment.io adapter for analytics and event tracking through
274
+ services such as Google Analytics and Intercom.
275
+ * Prepare staging and production environments to serve static assets through a
276
+ CDN.
277
+
278
+ 1.11.0 (May 17, 2014)
279
+
280
+ * Generate a Rails 4.1.1 app and implement fixes for compatibility.
281
+ * Escape ERb in secrets.yml
282
+ * Maintain ActiveRecord test schema.
283
+ * Make Shoulda Matchers work with Spring.
284
+ * Unify Ruby version for gem and suspended apps.
285
+ * Move SMTP variable settings out of initializer.
286
+ * Connect to Postgres on localhost.
287
+ * Add `bin/setup` for contributors.
288
+ * Improve and document TravisCI configuration.
289
+
290
+ 1.10.2 (April 28, 2014)
291
+
292
+ * Fix bundling Bourbon and Neat.
293
+
294
+ 1.10.1 (April 25, 2014)
295
+
296
+ * Fix bundling sass-rails.
297
+
298
+ 1.10.0 (April 21, 2014)
299
+
300
+ * Generate a Rails 4.1 app.
301
+ * Generate a working .ruby-version for Ruby >= 2.1.0.
302
+ * Update Unicorn template to version now preferred by Heroku.
303
+
304
+ 1.9.3 (April 13, 2014)
305
+
306
+ * Use FactoryGirl.lint instead of custom-generated factory-testing code.
307
+ * Fix Delayed::Job <-> Rails 4.1 dependency conflict.
308
+
309
+ 1.9.2 (April 10, 2014)
310
+
311
+ * Join Heroku apps in bin/setup.
312
+ * Enable SMTP/TLS in SMTP settings.
313
+ * Silence an RSpec warning.
314
+
315
+ 1.9.1 (April 7, 2014)
316
+
317
+ * Fix sass-rails environment NilClass error.
318
+
319
+ 1.9.0 (March 24, 2014)
320
+
321
+ * Add `awesome_print` gem.
322
+ * Add `dev:prime` task placeholder for bootstrapping local dev data.
323
+ * Add fix for I18n deprecation warning from `enforce_available_locales`.
324
+ * Add generated `.travis.yml`.
325
+ * Remove `better_errors` because of issues with Unicorn.
326
+ * Remove fast-failing for RSpec; respect user's `~/.rspec` instead.
327
+ * Update New Relic agent.
328
+ * Update Rails to 4.0.3.
329
+
330
+ 1.8.1 (February 19, 2014)
331
+
332
+ * Don't distribute rspec binstub with gem.
333
+
334
+ 1.8.0 (February 18, 2014)
335
+
336
+ * Make the .git/safe directory in bin/setup.
337
+ * Require `rails_12factor` gem only on Heroku.
338
+ * Require mailer config on staging and production.
339
+ * Add rspec binstub.
340
+ * Fix .ruby-version on Ruby 2.1.0.
341
+ * Replace Flutie's `page_title` with `title` gem.
342
+ * Don't run factory specs twice.
343
+ * Inherit staging config from production.
344
+ * Internal: convert tests from Cucumber to RSpec.
345
+ * Don't include `prefilled_input.js`.
346
+ * Fix Rack class name - Deflater instead of Timeout.
347
+ * Add Pry Rails.
348
+ * Add Spring.
349
+ * Add Dotenv to development and test environments to load environment variables
350
+ from the `.env` file.
351
+ * Reduce ActiveRecord connection pool from 5 to 2.
352
+
353
+ 1.7.0 (December 6, 2013)
354
+
355
+ * Keep `db/schema.rb` under version control.
356
+ * Fast-fail if any part of `bin/setup` fails.
357
+ * Move secret key out of version control.
358
+ * Create `.ruby-version` in generated applications.
359
+ * Add placeholder modules and directories for feature specs.
360
+ * Improve README to include setup instructions.
361
+
362
+ 1.6.0 (November 28, 2013)
363
+
364
+ * Do not create `.rspec` file as the settings are not project-specific.
365
+ * Generate RSpec binstub at `bin/rspec`.
366
+ * Fix stylesheet error on 500, 404, and 422 static pages.
367
+ * Add `--skip-git` option.
368
+ * Disable jQuery animations in Rails integration tests that execute JavaScript.
369
+ * Fix git remote bug.
370
+ * Add `Rack::Deflater` to compress responses with Gzip.
371
+
372
+ 1.5.1 (September 10, 2013)
373
+
374
+ * Remove Turbolinks.
375
+ * Don't use Bundler's binstubs in `bin/setup`.
376
+ * Remove `--drb` now that we aren't using Spork.
377
+ * Set up DNS via Pow for development.
378
+ * Update gem versions.
379
+
380
+ 1.5.0 (August 3, 2013)
381
+
382
+ * Add Neat.
383
+ * Replace Bourne with RSpec Mocks.
384
+ * Replace Sham Rack with WebMock.
385
+ * Remove dependency on `hub` gem.
386
+ * Clean up leftover Rails 3 conventions.
387
+
388
+ 1.4.0 (July 21, 2013)
389
+
390
+ * Support Rails 4.
391
+ * Support Ruby 2.
392
+ * Remove jQuery UI.
393
+ * Factories spec works for non-ActiveRecord objects.
394
+ * Use New Relic RPM gem >= 3.5.7 for Heroku request queue accuracy.
395
+ * Abort RSpec runs on first failure.
396
+ * Replace custom email validator with gem.
397
+
398
+ 1.3.0 (May 13, 2013)
399
+
400
+ * Switch web server from Thin to Unicorn
401
+ * Set up database before setting up RSpec so that the rspec:install task works
402
+ * Add Delayed::Job
403
+ * Clean up cruft from ActionMailer delivery configuration
404
+ * strong_parameters now raises an error in development
405
+ * Enforce Ruby 1.9.2+ in the gemspec
406
+
407
+ 1.2.2 (March 14, 2013)
408
+
409
+ * Fix Syntax error in staging/production environment config files.
410
+ * Make Factory Girl available to development environment for generators and
411
+ `rails console`.
412
+
413
+ 1.2.1 (February 28, 2013)
414
+
415
+ * Use Ruby 1.9.3 and 2.0
416
+ * Update staging and production email delivery
417
+ * Remove Spork and Guard
418
+ * Add better_errors and binding_of_caller gems
419
+ * Fix ActiveRecord attributes' blacklist
420
+ * Add Flutie to Gemfile
421
+
422
+ 1.2.0 (February 13, 2013)
423
+
424
+ * Upgrade Rails from 3.2.8 to 3.2.12 to keep pace with security patches.
425
+ * Improve staging environment on Heroku with staging `ENV` variables and
426
+ overriding the recipient in staging email delivery.
427
+ * Remove Flutie, use Bourbon.
428
+ * Wrap all HTTP requests in a 5 second timeout.
429
+ * Don't use `attr_accessible` whitelists. Instead, configure Strong Parameters.
430
+ * Provide a `bin/setup` script.
431
+ * Force RSpec's `expect` syntax.
432
+ * Remove remaining references to Cucumber, complete RSpec + Capybara conversion.
433
+ * Improve Foreman/`.env`/`Procfile` interactions.
434
+
435
+ 1.1.5 (October 22, 2012)
436
+
437
+ * Ignore `.env`.
438
+ * Link to thoughtbot/guides in generated README.
439
+ * Remove Cucumber in favor of RSpec + Capybara.
440
+ * Deliver emails in staging environment to an overriden email or set of emails.
441
+ * Encode database as UTF8.
442
+ * Bundle with binstubs using 37signals' directory convention.
443
+ * Configure time formats using localization.
444
+ * Add Ruby version to Gemfile.
445
+ * Add fast-failing spec that tests validity of factories.
446
+ * Use SimpleCov for C0 coverage.
447
+ * Configure RSpec with `--profile` flag to find slow-running specs.
448
+
449
+ 1.1.4 (September 4, 2012)
450
+
451
+ * Always store UTC in the DB.
452
+ * Use Rails 3.2.8.
453
+
454
+ 1.1.3 (August 7, 2012)
455
+
456
+ * Fix broken Gemfile additions where capybara stole cucumber's `require: false`
457
+
458
+ 1.1.2 (August 6, 2012)
459
+
460
+ * Fix broken rake.
461
+ * Use Heroku-compliant asset pipeline settings.
462
+
463
+ 1.1.1 (August 3, 2012)
464
+
465
+ * Fix broken newline interpolation
466
+
467
+ 1.1.0 (August 3, 2012)
468
+
469
+ * Add --github option.
470
+ * Add --webkit option.
471
+ * Remove cruft when generating controllers.
472
+ * Add Spork and Guard.
473
+
474
+ 1.0.1 (August 2, 2012)
475
+
476
+ * Fix broken install on Ruby 1.8.
477
+ * Remove db/schema.rb from .gitignore.
478
+ * Remove Factory Girl step definitions.
479
+
480
+ 1.0.0 (June 29, 2012)
481
+
482
+ * Ignore `bin/`, `.rake_tasks`, `.bundle/`, and `.gem/`.
483
+ * Create a root route only with `--clearance`.
484
+ * Do not autocommit after generate.
485
+ * Style static error pages.
486
+ * Cucumber requires everything under `features/`, regardless of pwd.
487
+ * Added gems:
488
+ * `foreman`
489
+ * `therubyracer`
490
+ * Removed gems:
491
+ * `copycopter_client`
492
+ * `heroku`
493
+ * `ruby-debug`
494
+ * `sass`
495
+ * `sprockets-redirect`
496
+ * `email_spec`