rails_apps_composer 3.0.42 → 3.0.43
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.
- checksums.yaml +4 -4
- data/README.textile +3 -6
- data/recipes/gems.rb +1 -1
- data/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2c917eac39f4867b168a098e8bb305321a18f83a
|
|
4
|
+
data.tar.gz: 0fea79cf961277f8ce257af3d517df83af388560
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e34668fb5d4a5f62d68fc07fc4340f145c7b7d671104a437285a2c06776eda9462d15e6c2c507aa5383da3c1e66257c1752c64da8ffb4c9cae064b941b6f11b3
|
|
7
|
+
data.tar.gz: fe1217083e9dc8a206a58e4cba8f65cb4f79801fa2cc3846d58c7d99f301cedd1008fd86474134649d7b81dabda2190037fbc3aa6374ceb7ee345e5e168c7a80
|
data/README.textile
CHANGED
|
@@ -47,8 +47,8 @@ h2. Dependencies
|
|
|
47
47
|
|
|
48
48
|
Before using the rails_apps_composer gem, you will need:
|
|
49
49
|
|
|
50
|
-
* The Ruby language (version 2.
|
|
51
|
-
* Rails (versions 4.
|
|
50
|
+
* The Ruby language (version 2.2)
|
|
51
|
+
* Rails (versions 4.2)
|
|
52
52
|
|
|
53
53
|
The rails_apps_composer program uses the version of Rails that is currently installed when you launch the program. If you want to use the newest Rails version, upgrade before running rails_apps_composer.
|
|
54
54
|
|
|
@@ -387,8 +387,7 @@ h2. Application Template Default
|
|
|
387
387
|
The @rails new@ command creates a new Rails application. If you want to use an application template for every Rails application you build, you can set options for the @rails new@ command in a *.railsrc* file in your home directory. Here's how to set up a *.railsrc* file to use the Rails Composer template when you create a new Rails application:
|
|
388
388
|
|
|
389
389
|
<pre>
|
|
390
|
-
|
|
391
|
-
-m https://raw.github.com/RailsApps/rails-composer/master/composer.rb
|
|
390
|
+
echo '-m https://raw.github.com/RailsApps/rails-composer/master/composer.rb' > ~/.railsrc
|
|
392
391
|
</pre>
|
|
393
392
|
|
|
394
393
|
h2. Hacking the Gem
|
|
@@ -435,5 +434,3 @@ h2. Useful Links
|
|
|
435
434
|
| "Rails Composer":http://railsapps.github.io/rails-composer/ | "Rails Application Templates":http://railsapps.github.io/rails-application-templates.html |
|
|
436
435
|
| "Rails Examples":http://railsapps.github.io/ | "Rails Product Planning":http://railsapps.github.io/rails-product-planning.html |
|
|
437
436
|
| "Rails Starter Apps":http://railsapps.github.io/rails-examples-tutorials.html | "Rails Project Management":http://railsapps.github.io/rails-project-management.html |
|
|
438
|
-
|
|
439
|
-
!https://cruel-carlota.pagodabox.com/1f4f51c551cd90489a558e5fe4d91fff(githalytics.com alpha)!
|
data/recipes/gems.rb
CHANGED
|
@@ -41,7 +41,7 @@ end
|
|
|
41
41
|
gsub_file 'Gemfile', /gem 'pg'.*/, ''
|
|
42
42
|
add_gem 'pg' if prefer :database, 'postgresql'
|
|
43
43
|
gsub_file 'Gemfile', /gem 'mysql2'.*/, ''
|
|
44
|
-
add_gem 'mysql2' if prefer :database, 'mysql'
|
|
44
|
+
add_gem 'mysql2', '~> 0.3.18' if prefer :database, 'mysql'
|
|
45
45
|
|
|
46
46
|
## Gem to set up controllers, views, and routing in the 'apps4' recipe
|
|
47
47
|
add_gem 'rails_apps_pages', :group => :development if prefs[:apps4]
|
data/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rails_apps_composer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.43
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Daniel Kehoe
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-10-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: i18n
|