rails_apps_composer 2.2.39 → 2.2.40
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 +1 -0
- data/recipes/gems.rb +1 -3
- data/recipes/prelaunch.rb +0 -7
- 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: 99542c5fa00fea4f88a2237284128b7796d3e7b9
|
|
4
|
+
data.tar.gz: a6d74b1037f8b1fc74c96a28874dab870bc578f6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 40f072a60337619f8c71ed1726bd49f87140ff997dd12bf1b23fc5ee3afc7332d90fcad586189f37c157871409f7ea87c7b11d038fe7ee8851efe7a542dab2e5
|
|
7
|
+
data.tar.gz: 607e460b81b10c7b9cbd7bda80b4505576c1e90bdbee294856a14ec60b87f68748ab4deaf9a5dded28674e35d3b5c4bfd1c03d91feafe94590f00ece5424fd41
|
data/README.textile
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
h1. !http://railsapps.github.com/images/rails-36x36.jpg(Rails Apps Composer Gem)! Rails Apps Composer
|
|
2
|
+
!https://badge.fury.io/rb/rails_apps_composer.png!:http://badge.fury.io/rb/rails_apps_composer !https://travis-ci.org/RailsApps/rails_apps_composer.png!:https://travis-ci.org/RailsApps/rails_apps_composer
|
|
2
3
|
|
|
3
4
|
The Rails Apps Composer gem installs a command line tool to assemble a Rails application from a collection of "recipes."
|
|
4
5
|
|
data/recipes/gems.rb
CHANGED
|
@@ -90,7 +90,6 @@ end
|
|
|
90
90
|
|
|
91
91
|
## Email
|
|
92
92
|
gem 'sendgrid', '>= 1.0.1' if prefer :email, 'sendgrid'
|
|
93
|
-
gem 'hominid', '>= 3.0.5' if prefer :email, 'mandrill'
|
|
94
93
|
|
|
95
94
|
## Authentication (Devise)
|
|
96
95
|
gem 'devise', '>= 2.2.3' if prefer :authentication, 'devise'
|
|
@@ -129,8 +128,7 @@ end
|
|
|
129
128
|
|
|
130
129
|
## Signup App
|
|
131
130
|
if prefer :railsapps, 'rails-prelaunch-signup'
|
|
132
|
-
gem '
|
|
133
|
-
gem 'jquery-datatables-rails', '>= 1.11.2'
|
|
131
|
+
gem 'gibbon', '>= 0.4.2'
|
|
134
132
|
end
|
|
135
133
|
|
|
136
134
|
## Gems from a defaults file or added interactively
|
data/recipes/prelaunch.rb
CHANGED
|
@@ -40,11 +40,6 @@ if prefer :railsapps, 'rails-prelaunch-signup'
|
|
|
40
40
|
end
|
|
41
41
|
end
|
|
42
42
|
|
|
43
|
-
# >-------------------------------[ Migrations ]--------------------------------<
|
|
44
|
-
generate 'migration AddOptinToUsers opt_in:boolean'
|
|
45
|
-
run 'bundle exec rake db:drop'
|
|
46
|
-
run 'bundle exec rake db:migrate'
|
|
47
|
-
|
|
48
43
|
# >-------------------------------[ Models ]--------------------------------<
|
|
49
44
|
|
|
50
45
|
copy_from_repo 'app/models/user.rb', :repo => repo
|
|
@@ -81,7 +76,6 @@ if prefer :railsapps, 'rails-prelaunch-signup'
|
|
|
81
76
|
copy_from_repo 'app/views/user_mailer/welcome_email.html.erb', :repo => repo
|
|
82
77
|
copy_from_repo 'app/views/user_mailer/welcome_email.text.erb', :repo => repo
|
|
83
78
|
copy_from_repo 'app/views/users/index.html.erb', :repo => repo
|
|
84
|
-
remove_file 'app/views/users/_user.html.erb'
|
|
85
79
|
copy_from_repo 'public/thankyou.html', :repo => repo
|
|
86
80
|
|
|
87
81
|
# >-------------------------------[ Routes ]--------------------------------<
|
|
@@ -93,7 +87,6 @@ if prefer :railsapps, 'rails-prelaunch-signup'
|
|
|
93
87
|
# >-------------------------------[ Assets ]--------------------------------<
|
|
94
88
|
|
|
95
89
|
copy_from_repo 'app/assets/javascripts/application.js', :repo => repo
|
|
96
|
-
copy_from_repo 'app/assets/javascripts/users.js.coffee', :repo => repo
|
|
97
90
|
copy_from_repo 'app/assets/stylesheets/application.css.scss', :repo => repo
|
|
98
91
|
|
|
99
92
|
# >-------------------------------[ Cucumber ]--------------------------------<
|
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: 2.2.
|
|
4
|
+
version: 2.2.40
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Daniel Kehoe
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-04-
|
|
11
|
+
date: 2013-04-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: i18n
|