initiate 0.1.0

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