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