appscrolls 0.9.0 → 0.10.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.
@@ -1,8 +1,12 @@
1
1
  # ChangeLog
2
2
 
3
+ ## v0.10
4
+
5
+ * `puma` - added basic support for Puma; also Cloud Foundry will use Puma automatically
6
+
3
7
  ## v0.9
4
8
 
5
- * `cloudfoundry` - added support for uploading to cloudfoundry
9
+ * `Cloud Foundry` - added support for uploading to Cloud Foundry
6
10
  * `github` - now uses `hub` project instead of `github` gem
7
11
  * `postgresql` - database.yml includes "host: localhost" for each env
8
12
 
@@ -0,0 +1,23 @@
1
+ gem 'puma'
2
+
3
+ after_bundler do
4
+ gsub_file "config/environments/production.rb", "# config.threadsafe!", "config.threadsafe!"
5
+
6
+ gsub_file "script/rails", "require 'rails/commands'", <<-RUBY
7
+
8
+ require 'rack/handler'
9
+ Rack::Handler::WEBrick = Rack::Handler.get(:puma)
10
+
11
+ require 'rails/commands'
12
+ RUBY
13
+ end
14
+
15
+ __END__
16
+
17
+ name: Puma
18
+ description: Ruby web server built for speed & concurrency
19
+ author: drnic
20
+ website: http://puma.io
21
+
22
+ category: deployment
23
+ exclusive: appserver
data/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module AppScrollsScrolls
2
- VERSION = "0.9.0"
2
+ VERSION = "0.10.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appscrolls
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.10.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2012-12-05 00:00:00.000000000 Z
13
+ date: 2013-03-27 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: activesupport
@@ -224,6 +224,7 @@ files:
224
224
  - scrolls/passenger.rb
225
225
  - scrolls/postgresql.rb
226
226
  - scrolls/prototype.rb
227
+ - scrolls/puma.rb
227
228
  - scrolls/rails_admin.rb
228
229
  - scrolls/rails_basics.rb
229
230
  - scrolls/redis.rb
@@ -266,7 +267,6 @@ files:
266
267
  - scrolls/untested/omniauth.rb
267
268
  - scrolls/untested/paper_trail.rb
268
269
  - scrolls/untested/pow.rb
269
- - scrolls/untested/puma.rb
270
270
  - scrolls/untested/rails_dev_tweaks.rb
271
271
  - scrolls/untested/rails_erd.rb
272
272
  - scrolls/untested/rails_footnotes.rb
@@ -314,7 +314,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
314
314
  version: '0'
315
315
  requirements: []
316
316
  rubyforge_project:
317
- rubygems_version: 1.8.24
317
+ rubygems_version: 1.8.25
318
318
  signing_key:
319
319
  specification_version: 3
320
320
  summary: The App Scrolls is a magical tool to generate new Rails and modify existing
@@ -331,3 +331,4 @@ test_files:
331
331
  - spec/spec_helper.rb
332
332
  - spec/support/rails_directory.rb
333
333
  - spec/support/template_runner.rb
334
+ has_rdoc:
@@ -1,11 +0,0 @@
1
- gem 'puma'
2
-
3
- __END__
4
-
5
- name: Puma
6
- description: Ruby web server built for speed & concurrency
7
- author: drnic
8
- website: http://puma.io
9
-
10
- category: deployment
11
- exclusive: appserver