ajmalafif-suspenders 1.18.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (62) 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/CONTRIBUTING.md +36 -0
  6. data/Gemfile +3 -0
  7. data/Gemfile.lock +135 -0
  8. data/LICENSE +21 -0
  9. data/NEWS.md +292 -0
  10. data/README.md +190 -0
  11. data/Rakefile +8 -0
  12. data/bin/rake +16 -0
  13. data/bin/rspec +16 -0
  14. data/bin/setup +13 -0
  15. data/bin/suspenders +18 -0
  16. data/lib/suspenders.rb +4 -0
  17. data/lib/suspenders/actions.rb +25 -0
  18. data/lib/suspenders/app_builder.rb +398 -0
  19. data/lib/suspenders/generators/app_generator.rb +215 -0
  20. data/lib/suspenders/version.rb +5 -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 +19 -0
  25. data/spec/features/new_project_spec.rb +117 -0
  26. data/spec/spec_helper.rb +24 -0
  27. data/spec/support/fake_github.rb +21 -0
  28. data/spec/support/fake_heroku.rb +38 -0
  29. data/spec/support/suspenders.rb +49 -0
  30. data/suspenders.gemspec +38 -0
  31. data/templates/Gemfile.erb +52 -0
  32. data/templates/Procfile +2 -0
  33. data/templates/README.md.erb +35 -0
  34. data/templates/_analytics.html.erb +7 -0
  35. data/templates/_flashes.html.erb +7 -0
  36. data/templates/_javascript.html.erb +12 -0
  37. data/templates/action_mailer.rb +5 -0
  38. data/templates/application.css.scss +7 -0
  39. data/templates/background_jobs_rspec.rb +19 -0
  40. data/templates/bin_setup.erb +34 -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/development_seeds.rb +12 -0
  45. data/templates/disable_xml_params.rb +3 -0
  46. data/templates/errors.rb +34 -0
  47. data/templates/factory_girl_rspec.rb +3 -0
  48. data/templates/i18n.rb +3 -0
  49. data/templates/newrelic.yml.erb +34 -0
  50. data/templates/postgresql_database.yml.erb +12 -0
  51. data/templates/rack_timeout.rb +1 -0
  52. data/templates/rails_helper.rb +23 -0
  53. data/templates/sample.env +3 -0
  54. data/templates/secrets.yml +14 -0
  55. data/templates/smtp.rb +9 -0
  56. data/templates/spec_helper.rb +16 -0
  57. data/templates/staging.rb +5 -0
  58. data/templates/suspenders_gitignore +17 -0
  59. data/templates/suspenders_layout.html.erb.erb +16 -0
  60. data/templates/travis.yml.erb +24 -0
  61. data/templates/unicorn.rb +30 -0
  62. metadata +223 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 8d9474835c40e632c63c1a89532c201b5a620f9c
4
+ data.tar.gz: 817cad283f9189f15f9cb04064329a8ba0297faa
5
+ SHA512:
6
+ metadata.gz: 1680b30a66d3da88d02be70dd434a11d482d5ff4b89141550b92a21fa767bad13be97a615bbed720daa8433bc8c21bf635f5252edb3df15833008a9fa3f2d659
7
+ data.tar.gz: dd4097925764f06d25ca8cf987de5328606cf051194b9b713a08f27252285204924bc4e3427473a04d8126db0404d2f57bc8b5c94164361e19f1b7fd2ca77166
data/.gitignore ADDED
@@ -0,0 +1,4 @@
1
+ *.gem
2
+ *.swp
3
+ /.bundle
4
+ /tmp
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 2.1.4
data/.travis.yml ADDED
@@ -0,0 +1,11 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.1.4
4
+ before_install:
5
+ - "echo '--colour' > ~/.rspec"
6
+ - git config --global user.name 'Travis CI'
7
+ - git config --global user.email 'travis-ci@example.com'
8
+ install:
9
+ - bundle install
10
+ notifications:
11
+ email: false
data/CONTRIBUTING.md ADDED
@@ -0,0 +1,36 @@
1
+ # Contributing
2
+
3
+ We love pull requests. Here's a quick guide.
4
+
5
+ Fork the repo:
6
+
7
+ git clone git@github.com:thoughtbot/suspenders.git
8
+
9
+ Set up your machine:
10
+
11
+ ./bin/setup
12
+
13
+ Make sure the tests pass:
14
+
15
+ rake
16
+
17
+ Make your change. Add tests for your change. Make the tests pass:
18
+
19
+ rake
20
+
21
+ Push to your fork and [submit a pull request][pr].
22
+
23
+ [pr]: https://github.com/thoughtbot/suspenders/compare/
24
+
25
+ At this point you're waiting on us. We like to at least comment on pull requests
26
+ within three business days (and, typically, one business day). We may suggest
27
+ some changes or improvements or alternatives.
28
+
29
+ Some things that will increase the chance that your pull request is accepted:
30
+
31
+ * Write tests.
32
+ * Follow our [style guide][style].
33
+ * Write a [good commit message][commit].
34
+
35
+ [style]: https://github.com/thoughtbot/guides/tree/master/style
36
+ [commit]: http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,135 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ suspenders (1.18.0)
5
+ bitters (~> 0.10.0)
6
+ bundler (~> 1.3)
7
+ rails (= 4.1.7)
8
+
9
+ GEM
10
+ remote: https://rubygems.org/
11
+ specs:
12
+ actionmailer (4.1.7)
13
+ actionpack (= 4.1.7)
14
+ actionview (= 4.1.7)
15
+ mail (~> 2.5, >= 2.5.4)
16
+ actionpack (4.1.7)
17
+ actionview (= 4.1.7)
18
+ activesupport (= 4.1.7)
19
+ rack (~> 1.5.2)
20
+ rack-test (~> 0.6.2)
21
+ actionview (4.1.7)
22
+ activesupport (= 4.1.7)
23
+ builder (~> 3.1)
24
+ erubis (~> 2.7.0)
25
+ activemodel (4.1.7)
26
+ activesupport (= 4.1.7)
27
+ builder (~> 3.1)
28
+ activerecord (4.1.7)
29
+ activemodel (= 4.1.7)
30
+ activesupport (= 4.1.7)
31
+ arel (~> 5.0.0)
32
+ activesupport (4.1.7)
33
+ i18n (~> 0.6, >= 0.6.9)
34
+ json (~> 1.7, >= 1.7.7)
35
+ minitest (~> 5.1)
36
+ thread_safe (~> 0.1)
37
+ tzinfo (~> 1.1)
38
+ arel (5.0.1.20140414130214)
39
+ aruba (0.5.4)
40
+ childprocess (>= 0.3.6)
41
+ cucumber (>= 1.1.1)
42
+ rspec-expectations (>= 2.7.0)
43
+ bitters (0.10.1)
44
+ bourbon (>= 3.2)
45
+ sass (>= 3.2)
46
+ thor
47
+ bourbon (4.0.2)
48
+ sass (~> 3.3)
49
+ thor
50
+ builder (3.2.2)
51
+ capybara (2.3.0)
52
+ mime-types (>= 1.16)
53
+ nokogiri (>= 1.3.3)
54
+ rack (>= 1.0.0)
55
+ rack-test (>= 0.5.4)
56
+ xpath (~> 2.0)
57
+ childprocess (0.5.3)
58
+ ffi (~> 1.0, >= 1.0.11)
59
+ cucumber (1.3.15)
60
+ builder (>= 2.1.2)
61
+ diff-lcs (>= 1.1.3)
62
+ gherkin (~> 2.12)
63
+ multi_json (>= 1.7.5, < 2.0)
64
+ multi_test (>= 0.1.1)
65
+ diff-lcs (1.2.5)
66
+ erubis (2.7.0)
67
+ ffi (1.9.3)
68
+ gherkin (2.12.2)
69
+ multi_json (~> 1.3)
70
+ hike (1.2.3)
71
+ i18n (0.6.11)
72
+ json (1.8.1)
73
+ mail (2.6.1)
74
+ mime-types (>= 1.16, < 3)
75
+ mime-types (1.25.1)
76
+ mini_portile (0.6.0)
77
+ minitest (5.4.2)
78
+ multi_json (1.10.1)
79
+ multi_test (0.1.1)
80
+ nokogiri (1.6.2.1)
81
+ mini_portile (= 0.6.0)
82
+ rack (1.5.2)
83
+ rack-test (0.6.2)
84
+ rack (>= 1.0)
85
+ rails (4.1.7)
86
+ actionmailer (= 4.1.7)
87
+ actionpack (= 4.1.7)
88
+ actionview (= 4.1.7)
89
+ activemodel (= 4.1.7)
90
+ activerecord (= 4.1.7)
91
+ activesupport (= 4.1.7)
92
+ bundler (>= 1.3.0, < 2.0)
93
+ railties (= 4.1.7)
94
+ sprockets-rails (~> 2.0)
95
+ railties (4.1.7)
96
+ actionpack (= 4.1.7)
97
+ activesupport (= 4.1.7)
98
+ rake (>= 0.8.7)
99
+ thor (>= 0.18.1, < 2.0)
100
+ rake (10.3.2)
101
+ rspec (2.99.0)
102
+ rspec-core (~> 2.99.0)
103
+ rspec-expectations (~> 2.99.0)
104
+ rspec-mocks (~> 2.99.0)
105
+ rspec-core (2.99.0)
106
+ rspec-expectations (2.99.0)
107
+ diff-lcs (>= 1.1.3, < 2.0)
108
+ rspec-mocks (2.99.0)
109
+ sass (3.4.6)
110
+ sprockets (2.12.3)
111
+ hike (~> 1.2)
112
+ multi_json (~> 1.0)
113
+ rack (~> 1.0)
114
+ tilt (~> 1.1, != 1.3.0)
115
+ sprockets-rails (2.2.0)
116
+ actionpack (>= 3.0)
117
+ activesupport (>= 3.0)
118
+ sprockets (>= 2.8, < 4.0)
119
+ thor (0.19.1)
120
+ thread_safe (0.3.4)
121
+ tilt (1.4.1)
122
+ tzinfo (1.2.2)
123
+ thread_safe (~> 0.1)
124
+ xpath (2.0.0)
125
+ nokogiri (~> 1.3)
126
+
127
+ PLATFORMS
128
+ ruby
129
+
130
+ DEPENDENCIES
131
+ aruba (~> 0.5)
132
+ capybara (~> 2.2, >= 2.2.0)
133
+ cucumber (~> 1.2)
134
+ rspec (~> 2.0)
135
+ suspenders!
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,292 @@
1
+ 1.18.0 (October 23, 2014)
2
+
3
+ * Use Ruby 2.1.3.
4
+ * Move New Relic to all gem groups to more easily
5
+ [debug Rails performance in development][debug-performance].
6
+ * Make `bin/setup` idempotent, failing fast with install messages.
7
+ * Fix unevaluated app name in generated `en.yml` locale file.
8
+ * Change `File.exists?` to `File.exist?` to fix Ruby warning.
9
+ * Don't include port 6000 as an option for Foreman; Chome considers it unsafe.
10
+ * Git ignore the entire /tmp directory.
11
+
12
+ [debug-performance]: https://upcase.com/improving-rails-performance
13
+
14
+ 1.17.0 (September 30, 2014)
15
+
16
+ * Use Rails 4.1.6.
17
+ * Generate a `spec/rails_helper.rb` and `spec/spec_helper.rb` following
18
+ RSpec 3.x's example, but using our defaults.
19
+ * Raise on missing i18n translations in test environment.
20
+ * Raise on unpermitted parameters in test environment.
21
+ * Provide example for using Title gem for internationalizing page title text.
22
+
23
+ 1.16.0 (August 16, 2014)
24
+
25
+ * Use the 3.x series of RSpec.
26
+ * Use the 0.10.x series of Bitters.
27
+ * Improve documentation in generated README for machine setup via `bin/setup`
28
+ and https://github.com/thoughtbot/laptop script.
29
+ * Remove Foreman from `Gemfile`.
30
+ * Use i18n-tasks for missing or unused translations.
31
+ * Raise on missing translations in development environment. Fail fast!
32
+ * Prevent empty div when there are no flashes.
33
+ * Pick random port when generating Rails app so multiple apps can be run via
34
+ Foreman on a development machine at the same time.
35
+ * Add `normalize-rails` gem for resetting browser styles.
36
+
37
+ 1.15.0 (July 9, 2014)
38
+
39
+ * Use Rails 4.1.4.
40
+ * Use latest thoughtbot style guidelines in generated code so that
41
+ https://houndci.com will approve the initial commit.
42
+ * Remove Campfire in favor of Slack.
43
+ * Remove Pow in bin/setup.
44
+ * Upgrade Capybara Webkit to support Capybara 2.3 API.
45
+ * Add byebug.
46
+
47
+ 1.14.0 (June 11, 2014)
48
+
49
+ * Set up Bitters during Suspenders setup. http://bitters.bourbon.io/
50
+ * Remove SimpleCov.
51
+ * Force Suspenders to use a particular Rails version (4.1.1).
52
+ * Use RSpec 2.x until Travis/Capybara issues resolve.
53
+ * Set `viewport` to `initial-scale=1`.
54
+
55
+ 1.13.0 (May 29, 2014)
56
+
57
+ * Remove `FactoryGirl.lint` in `before(:suite)` in order to avoid paying and
58
+ estimated extra ~300ms load time on a typical thoughtbot app.
59
+ * Automatically join Heroku app in `bin/setup` if using Heroku organizations.
60
+
61
+ 1.12.0 (May 26, 2014)
62
+
63
+ * Fix `rake dev:prime` now that Suspenders-generated apps require some `ENV`
64
+ variables to be set.
65
+ * Ensure `EMAIL_RECIPIENTS` is set on staging.
66
+ * Clear `ActionMailer` deliveries before every test.
67
+ * Include New Relic configuration file.
68
+ * Add Formulaic gem for integration testing HTML forms.
69
+ * Set up the Segment.io adapter for analytics and event tracking through
70
+ services such as Google Analytics and Intercom.
71
+ * Prepare staging and production environments to serve static assets through a
72
+ CDN.
73
+
74
+ 1.11.0 (May 17, 2014)
75
+
76
+ * Generate a Rails 4.1.1 app and implement fixes for compatibility.
77
+ * Escape ERb in secrets.yml
78
+ * Maintain ActiveRecord test schema.
79
+ * Make Shoulda Matchers work with Spring.
80
+ * Unify Ruby version for gem and suspended apps.
81
+ * Move SMTP variable settings out of initializer.
82
+ * Connect to Postgres on localhost.
83
+ * Add `bin/setup` for contributors.
84
+ * Improve and document TravisCI configuration.
85
+
86
+ 1.10.2 (April 28, 2014)
87
+
88
+ * Fix bundling Bourbon and Neat.
89
+
90
+ 1.10.1 (April 25, 2014)
91
+
92
+ * Fix bundling sass-rails.
93
+
94
+ 1.10.0 (April 21, 2014)
95
+
96
+ * Generate a Rails 4.1 app.
97
+ * Generate a working .ruby-version for Ruby >= 2.1.0.
98
+ * Update Unicorn template to version now preferred by Heroku.
99
+
100
+ 1.9.3 (April 13, 2014)
101
+
102
+ * Use FactoryGirl.lint instead of custom-generated factory-testing code.
103
+ * Fix Delayed::Job <-> Rails 4.1 dependency conflict.
104
+
105
+ 1.9.2 (April 10, 2014)
106
+
107
+ * Join Heroku apps in bin/setup.
108
+ * Enable SMTP/TLS in SMTP settings.
109
+ * Silence an RSpec warning.
110
+
111
+ 1.9.1 (April 7, 2014)
112
+
113
+ * Fix sass-rails environment NilClass error.
114
+
115
+ 1.9.0 (March 24, 2014)
116
+
117
+ * Add `awesome_print` gem.
118
+ * Add `dev:prime` task placeholder for bootstrapping local dev data.
119
+ * Add fix for I18n deprecation warning from `enforce_available_locales`.
120
+ * Add generated `.travis.yml`.
121
+ * Remove `better_errors` because of issues with Unicorn.
122
+ * Remove fast-failing for RSpec; respect user's `~/.rspec` instead.
123
+ * Update New Relic agent.
124
+ * Update Rails to 4.0.3.
125
+
126
+ 1.8.1 (February 19, 2014)
127
+
128
+ * Don't distribute rspec binstub with gem.
129
+
130
+ 1.8.0 (February 18, 2014)
131
+
132
+ * Make the .git/safe directory in bin/setup.
133
+ * Require `rails_12factor` gem only on Heroku.
134
+ * Require mailer config on staging and production.
135
+ * Add rspec binstub.
136
+ * Fix .ruby-version on Ruby 2.1.0.
137
+ * Replace Flutie's `page_title` with `title` gem.
138
+ * Don't run factory specs twice.
139
+ * Inherit staging config from production.
140
+ * Internal: convert tests from Cucumber to RSpec.
141
+ * Don't include `prefilled_input.js`.
142
+ * Fix Rack class name - Deflater instead of Timeout.
143
+ * Add Pry Rails.
144
+ * Add Spring.
145
+ * Add Dotenv to development and test environments to load environment variables
146
+ from the `.env` file.
147
+ * Reduce ActiveRecord connection pool from 5 to 2.
148
+
149
+ 1.7.0 (December 6, 2013)
150
+
151
+ * Keep `db/schema.rb` under version control.
152
+ * Fast-fail if any part of `bin/setup` fails.
153
+ * Move secret key out of version control.
154
+ * Create `.ruby-version` in generated applications.
155
+ * Add placeholder modules and directories for feature specs.
156
+ * Improve README to include setup instructions.
157
+
158
+ 1.6.0 (November 28, 2013)
159
+
160
+ * Do not create `.rspec` file as the settings are not project-specific.
161
+ * Generate RSpec binstub at `bin/rspec`.
162
+ * Fix stylesheet error on 500, 404, and 422 static pages.
163
+ * Add `--skip-git` option.
164
+ * Disable jQuery animations in Rails integration tests that execute JavaScript.
165
+ * Fix git remote bug.
166
+ * Add `Rack::Deflater` to compress responses with Gzip.
167
+
168
+ 1.5.1 (September 10, 2013)
169
+
170
+ * Remove Turbolinks.
171
+ * Don't use Bundler's binstubs in `bin/setup`.
172
+ * Remove `--drb` now that we aren't using Spork.
173
+ * Set up DNS via Pow for development.
174
+ * Update gem versions.
175
+
176
+ 1.5.0 (August 3, 2013)
177
+
178
+ * Add Neat.
179
+ * Replace Bourne with RSpec Mocks.
180
+ * Replace Sham Rack with WebMock.
181
+ * Remove dependency on `hub` gem.
182
+ * Clean up leftover Rails 3 conventions.
183
+
184
+ 1.4.0 (July 21, 2013)
185
+
186
+ * Support Rails 4.
187
+ * Support Ruby 2.
188
+ * Remove jQuery UI.
189
+ * Factories spec works for non-ActiveRecord objects.
190
+ * Use New Relic RPM gem >= 3.5.7 for Heroku request queue accuracy.
191
+ * Abort RSpec runs on first failure.
192
+ * Replace custom email validator with gem.
193
+
194
+ 1.3.0 (May 13, 2013)
195
+
196
+ * Switch web server from Thin to Unicorn
197
+ * Set up database before setting up RSpec so that the rspec:install task works
198
+ * Add Delayed::Job
199
+ * Clean up cruft from ActionMailer delivery configuration
200
+ * strong_parameters now raises an error in development
201
+ * Enforce Ruby 1.9.2+ in the gemspec
202
+
203
+ 1.2.2 (March 14, 2013)
204
+
205
+ * Fix Syntax error in staging/production environment config files.
206
+ * Make Factory Girl available to development environment for generators and
207
+ `rails console`.
208
+
209
+ 1.2.1 (February 28, 2013)
210
+
211
+ * Use Ruby 1.9.3 and 2.0
212
+ * Update staging and production email delivery
213
+ * Remove Spork and Guard
214
+ * Add better_errors and binding_of_caller gems
215
+ * Fix ActiveRecord attributes' blacklist
216
+ * Add Flutie to Gemfile
217
+
218
+ 1.2.0 (February 13, 2013)
219
+
220
+ * Upgrade Rails from 3.2.8 to 3.2.12 to keep pace with security patches.
221
+ * Improve staging environment on Heroku with staging `ENV` variables and
222
+ overriding the recipient in staging email delivery.
223
+ * Remove Flutie, use Bourbon.
224
+ * Wrap all HTTP requests in a 5 second timeout.
225
+ * Don't use `attr_accessible` whitelists. Instead, configure Strong Parameters.
226
+ * Provide a `bin/setup` script.
227
+ * Force RSpec's `expect` syntax.
228
+ * Remove remaining references to Cucumber, complete RSpec + Capybara conversion.
229
+ * Improve Foreman/`.env`/`Procfile` interactions.
230
+
231
+ 1.1.5 (October 22, 2012)
232
+
233
+ * Ignore `.env`.
234
+ * Link to thoughtbot/guides in generated README.
235
+ * Remove Cucumber in favor of RSpec + Capybara.
236
+ * Deliver emails in staging environment to an overriden email or set of emails.
237
+ * Encode database as UTF8.
238
+ * Bundle with binstubs using 37signals' directory convention.
239
+ * Configure time formats using localization.
240
+ * Add Ruby version to Gemfile.
241
+ * Add fast-failing spec that tests validity of factories.
242
+ * Use SimpleCov for C0 coverage.
243
+ * Configure RSpec with `--profile` flag to find slow-running specs.
244
+
245
+ 1.1.4 (September 4, 2012)
246
+
247
+ * Always store UTC in the DB.
248
+ * Use Rails 3.2.8.
249
+
250
+ 1.1.3 (August 7, 2012)
251
+
252
+ * Fix broken Gemfile additions where capybara stole cucumber's `require: false`
253
+
254
+ 1.1.2 (August 6, 2012)
255
+
256
+ * Fix broken rake.
257
+ * Use Heroku-compliant asset pipeline settings.
258
+
259
+ 1.1.1 (August 3, 2012)
260
+
261
+ * Fix broken newline interpolation
262
+
263
+ 1.1.0 (August 3, 2012)
264
+
265
+ * Add --github option.
266
+ * Add --webkit option.
267
+ * Remove cruft when generating controllers.
268
+ * Add Spork and Guard.
269
+
270
+ 1.0.1 (August 2, 2012)
271
+
272
+ * Fix broken install on Ruby 1.8.
273
+ * Remove db/schema.rb from .gitignore.
274
+ * Remove Factory Girl step definitions.
275
+
276
+ 1.0.0 (June 29, 2012)
277
+
278
+ * Ignore `bin/`, `.rake_tasks`, `.bundle/`, and `.gem/`.
279
+ * Create a root route only with `--clearance`.
280
+ * Do not autocommit after generate.
281
+ * Style static error pages.
282
+ * Cucumber requires everything under `features/`, regardless of pwd.
283
+ * Added gems:
284
+ * `foreman`
285
+ * `therubyracer`
286
+ * Removed gems:
287
+ * `copycopter_client`
288
+ * `heroku`
289
+ * `ruby-debug`
290
+ * `sass`
291
+ * `sprockets-redirect`
292
+ * `email_spec`