philosophies-suspenders 2.0.0

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