brace 0.0.1

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