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