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
@@ -0,0 +1,19 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
# Run this script to set up a review app's database and worker dyno
|
4
|
+
|
5
|
+
set -e
|
6
|
+
|
7
|
+
if [ -z "$1" ]; then
|
8
|
+
printf "You must provide a review app (same as the pull request) id.\n"
|
9
|
+
exit 64
|
10
|
+
fi
|
11
|
+
|
12
|
+
heroku pg:backups restore \
|
13
|
+
`heroku pg:backups public-url -a <%= app_name.dasherize %>-staging` \
|
14
|
+
DATABASE_URL \
|
15
|
+
--confirm <%= app_name.dasherize %>-staging-pr-$1 \
|
16
|
+
--app <%= app_name.dasherize %>-staging-pr-$1
|
17
|
+
heroku run rake db:migrate --app <%= app_name.dasherize %>-staging-pr-$1
|
18
|
+
heroku ps:scale worker=1 --app <%= app_name.dasherize %>-staging-pr-$1
|
19
|
+
heroku restart --app <%= app_name.dasherize %>-staging-pr-$1
|
@@ -0,0 +1,12 @@
|
|
1
|
+
if Rails.env.development? || Rails.env.test?
|
2
|
+
require "bundler/audit/cli"
|
3
|
+
|
4
|
+
namespace :bundler do
|
5
|
+
desc "Updates the ruby-advisory-db and runs audit"
|
6
|
+
task :audit do
|
7
|
+
%w(update check).each do |command|
|
8
|
+
Bundler::Audit::CLI.start [command]
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
RSpec.configure do |config|
|
2
|
+
config.before(:suite) do
|
3
|
+
DatabaseCleaner.clean_with(:deletion)
|
4
|
+
end
|
5
|
+
|
6
|
+
config.before(:each) do
|
7
|
+
DatabaseCleaner.strategy = :transaction
|
8
|
+
end
|
9
|
+
|
10
|
+
config.before(:each, js: true) do
|
11
|
+
DatabaseCleaner.strategy = :deletion
|
12
|
+
end
|
13
|
+
|
14
|
+
config.before(:each) do
|
15
|
+
DatabaseCleaner.start
|
16
|
+
end
|
17
|
+
|
18
|
+
config.after(:each) do
|
19
|
+
DatabaseCleaner.clean
|
20
|
+
end
|
21
|
+
end
|
data/templates/dev.rake
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
if Rails.env.development? || Rails.env.test?
|
2
|
+
require "factory_girl"
|
3
|
+
|
4
|
+
namespace :dev do
|
5
|
+
desc "Sample data for local development environment"
|
6
|
+
task prime: "db:setup" do
|
7
|
+
include FactoryGirl::Syntax::Methods
|
8
|
+
|
9
|
+
# create(:user, email: "user@example.com", password: "password")
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
ActionDispatch::ParamsParser::DEFAULT_PARSERS.delete(Mime::XML)
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# https://github.com/ddollar/forego
|
2
|
+
ASSET_HOST=localhost:3000
|
3
|
+
APPLICATION_HOST=localhost:3000
|
4
|
+
PORT=3000
|
5
|
+
RACK_ENV=development
|
6
|
+
RACK_MINI_PROFILER=0
|
7
|
+
SECRET_KEY_BASE=development_secret
|
8
|
+
EXECJS_RUNTIME=Node
|
9
|
+
SMTP_ADDRESS=smtp.example.com
|
10
|
+
SMTP_DOMAIN=example.com
|
11
|
+
SMTP_PASSWORD=password
|
12
|
+
SMTP_USERNAME=username
|
13
|
+
WEB_CONCURRENCY=1
|
data/templates/errors.rb
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
require "net/http"
|
2
|
+
require "net/smtp"
|
3
|
+
|
4
|
+
# Example:
|
5
|
+
# begin
|
6
|
+
# some http call
|
7
|
+
# rescue *HTTP_ERRORS => error
|
8
|
+
# notify_hoptoad error
|
9
|
+
# end
|
10
|
+
|
11
|
+
HTTP_ERRORS = [
|
12
|
+
EOFError,
|
13
|
+
Errno::ECONNRESET,
|
14
|
+
Errno::EINVAL,
|
15
|
+
Net::HTTPBadResponse,
|
16
|
+
Net::HTTPHeaderSyntaxError,
|
17
|
+
Net::ProtocolError,
|
18
|
+
Timeout::Error,
|
19
|
+
]
|
20
|
+
|
21
|
+
SMTP_SERVER_ERRORS = [
|
22
|
+
IOError,
|
23
|
+
Net::SMTPAuthenticationError,
|
24
|
+
Net::SMTPServerBusy,
|
25
|
+
Net::SMTPUnknownError,
|
26
|
+
Timeout::Error,
|
27
|
+
]
|
28
|
+
|
29
|
+
SMTP_CLIENT_ERRORS = [
|
30
|
+
Net::SMTPFatalError,
|
31
|
+
Net::SMTPSyntaxError,
|
32
|
+
]
|
33
|
+
|
34
|
+
SMTP_ERRORS = SMTP_SERVER_ERRORS + SMTP_CLIENT_ERRORS
|
data/templates/hound.yml
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
# See https://houndci.com/configuration for help.
|
2
|
+
haml:
|
3
|
+
# config_file: .haml-style.yml
|
4
|
+
enabled: true
|
5
|
+
javascript:
|
6
|
+
# config_file: .javascript-style.json
|
7
|
+
enabled: true
|
8
|
+
# ignore_file: .javascript_ignore
|
9
|
+
ruby:
|
10
|
+
# config_file: .ruby-style.yml
|
11
|
+
enabled: true
|
12
|
+
scss:
|
13
|
+
# config_file: .scss-style.yml
|
14
|
+
enabled: true
|
data/templates/i18n.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
ActiveSupport::JSON::Encoding.time_precision = 0
|
@@ -0,0 +1,34 @@
|
|
1
|
+
common: &default_settings
|
2
|
+
app_name: "<%= app_name %>"
|
3
|
+
audit_log:
|
4
|
+
enabled: false
|
5
|
+
browser_monitoring:
|
6
|
+
auto_instrument: true
|
7
|
+
capture_params: false
|
8
|
+
developer_mode: false
|
9
|
+
error_collector:
|
10
|
+
capture_source: true
|
11
|
+
enabled: true
|
12
|
+
ignore_errors: "ActionController::RoutingError,Sinatra::NotFound"
|
13
|
+
license_key: "<%%= ENV["NEW_RELIC_LICENSE_KEY"] %>"
|
14
|
+
log_level: info
|
15
|
+
monitor_mode: true
|
16
|
+
transaction_tracer:
|
17
|
+
enabled: true
|
18
|
+
record_sql: obfuscated
|
19
|
+
stack_trace_threshold: 0.500
|
20
|
+
transaction_threshold: apdex_f
|
21
|
+
development:
|
22
|
+
<<: *default_settings
|
23
|
+
monitor_mode: false
|
24
|
+
developer_mode: true
|
25
|
+
test:
|
26
|
+
<<: *default_settings
|
27
|
+
monitor_mode: false
|
28
|
+
production:
|
29
|
+
<<: *default_settings
|
30
|
+
monitor_mode: true
|
31
|
+
staging:
|
32
|
+
<<: *default_settings
|
33
|
+
app_name: "<%= app_name %> (Staging)"
|
34
|
+
monitor_mode: true
|
@@ -0,0 +1,21 @@
|
|
1
|
+
development: &default
|
2
|
+
adapter: postgresql
|
3
|
+
database: <%= app_name %>_development
|
4
|
+
encoding: utf8
|
5
|
+
min_messages: warning
|
6
|
+
pool: <%%= Integer(ENV.fetch("DB_POOL", 5)) %>
|
7
|
+
reaping_frequency: <%%= Integer(ENV.fetch("DB_REAPING_FREQUENCY", 10)) %>
|
8
|
+
timeout: 5000
|
9
|
+
|
10
|
+
test:
|
11
|
+
<<: *default
|
12
|
+
database: <%= app_name %>_test
|
13
|
+
|
14
|
+
production: &deploy
|
15
|
+
encoding: utf8
|
16
|
+
min_messages: warning
|
17
|
+
pool: <%%= [Integer(ENV.fetch("MAX_THREADS", 5)), Integer(ENV.fetch("DB_POOL", 5))].max %>
|
18
|
+
timeout: 5000
|
19
|
+
url: <%%= ENV.fetch("DATABASE_URL", "") %>
|
20
|
+
|
21
|
+
staging: *deploy
|
@@ -0,0 +1,22 @@
|
|
1
|
+
ENV["RACK_ENV"] = "test"
|
2
|
+
|
3
|
+
require File.expand_path("../../config/environment", __FILE__)
|
4
|
+
abort("DATABASE_URL environment variable is set") if ENV["DATABASE_URL"]
|
5
|
+
|
6
|
+
require "rspec/rails"
|
7
|
+
|
8
|
+
Dir[Rails.root.join("spec/support/**/*.rb")].sort.each { |file| require file }
|
9
|
+
|
10
|
+
module Features
|
11
|
+
# Extend this module in spec/support/features/*.rb
|
12
|
+
include Formulaic::Dsl
|
13
|
+
end
|
14
|
+
|
15
|
+
RSpec.configure do |config|
|
16
|
+
config.include Features, type: :feature
|
17
|
+
config.infer_base_class_for_anonymous_controllers = false
|
18
|
+
config.infer_spec_type_from_file_location!
|
19
|
+
config.use_transactional_fixtures = false
|
20
|
+
end
|
21
|
+
|
22
|
+
ActiveRecord::Migration.maintain_test_schema!
|
data/templates/smtp.rb
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
SMTP_SETTINGS = {
|
2
|
+
address: ENV.fetch("SMTP_ADDRESS"), # example: "smtp.sendgrid.net"
|
3
|
+
authentication: :plain,
|
4
|
+
domain: ENV.fetch("SMTP_DOMAIN"), # example: "heroku.com"
|
5
|
+
enable_starttls_auto: true,
|
6
|
+
password: ENV.fetch("SMTP_PASSWORD"),
|
7
|
+
port: "587",
|
8
|
+
user_name: ENV.fetch("SMTP_USERNAME")
|
9
|
+
}
|
@@ -0,0 +1,29 @@
|
|
1
|
+
if ENV.fetch("COVERAGE", false)
|
2
|
+
require "simplecov"
|
3
|
+
|
4
|
+
if ENV["CIRCLE_ARTIFACTS"]
|
5
|
+
dir = File.join(ENV["CIRCLE_ARTIFACTS"], "coverage")
|
6
|
+
SimpleCov.coverage_dir(dir)
|
7
|
+
end
|
8
|
+
|
9
|
+
SimpleCov.start "rails"
|
10
|
+
end
|
11
|
+
|
12
|
+
require "webmock/rspec"
|
13
|
+
|
14
|
+
# http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
15
|
+
RSpec.configure do |config|
|
16
|
+
config.expect_with :rspec do |expectations|
|
17
|
+
expectations.syntax = :expect
|
18
|
+
end
|
19
|
+
|
20
|
+
config.mock_with :rspec do |mocks|
|
21
|
+
mocks.syntax = :expect
|
22
|
+
mocks.verify_partial_doubles = true
|
23
|
+
end
|
24
|
+
|
25
|
+
config.example_status_persistence_file_path = "tmp/rspec_examples.txt"
|
26
|
+
config.order = :random
|
27
|
+
end
|
28
|
+
|
29
|
+
WebMock.disable_net_connect!(allow_localhost: true)
|
@@ -0,0 +1,24 @@
|
|
1
|
+
doctype 5
|
2
|
+
html
|
3
|
+
head
|
4
|
+
meta[charset="utf-8"]
|
5
|
+
/[if lt IE 9]
|
6
|
+
meta[content="text/html; charset=utf-8" http-equiv="Content-Type"]
|
7
|
+
= javascript_include_tag "//html5shiv.googlecode.com/svn/trunk/html5.js"
|
8
|
+
meta[name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"]
|
9
|
+
/ ===== Default Google meta tags
|
10
|
+
meta name="robots" content="index, follow"
|
11
|
+
meta name="google" content="notranslate"
|
12
|
+
= display_meta_tags
|
13
|
+
= stylesheet_link_tag 'application', media: 'all'
|
14
|
+
= csrf_meta_tags
|
15
|
+
= favicon_link_tag 'favicon.png'
|
16
|
+
|
17
|
+
body.site
|
18
|
+
= initjs_tag app_name.camelize
|
19
|
+
= render 'layouts/flash'
|
20
|
+
= render 'partials/header'
|
21
|
+
.site-content
|
22
|
+
= yield
|
23
|
+
= render 'partials/footer'
|
24
|
+
= render 'partials/javascripts'
|
metadata
ADDED
@@ -0,0 +1,213 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: cosmit-suspenders
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.36.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- COSMIT
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-05-31 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.3'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.3'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rails
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 4.2.0
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 4.2.0
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.2'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.2'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: simple_form
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '3.2'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '3.2'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: quiet_assets
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '1.1'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '1.1'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: capybara-webkit
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '1.8'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '1.8'
|
97
|
+
description: |
|
98
|
+
Suspenders is a base Rails project that you can upgrade. It is used by
|
99
|
+
cosmit to get a jump start on a working app. Use Suspenders if you're in a
|
100
|
+
rush to build something amazing; don't use it if you like missing deadlines.
|
101
|
+
email: contato@cosmit.com.br
|
102
|
+
executables:
|
103
|
+
- suspenders
|
104
|
+
extensions: []
|
105
|
+
extra_rdoc_files:
|
106
|
+
- README.md
|
107
|
+
- LICENSE
|
108
|
+
files:
|
109
|
+
- ".gitignore"
|
110
|
+
- ".ruby-version"
|
111
|
+
- ".travis.yml"
|
112
|
+
- CONTRIBUTING.md
|
113
|
+
- Gemfile
|
114
|
+
- LICENSE
|
115
|
+
- NEWS.md
|
116
|
+
- README.md
|
117
|
+
- RELEASING.md
|
118
|
+
- Rakefile
|
119
|
+
- bin/rake
|
120
|
+
- bin/rspec
|
121
|
+
- bin/setup
|
122
|
+
- bin/suspenders
|
123
|
+
- lib/suspenders.rb
|
124
|
+
- lib/suspenders/actions.rb
|
125
|
+
- lib/suspenders/adapters/heroku.rb
|
126
|
+
- lib/suspenders/app_builder.rb
|
127
|
+
- lib/suspenders/generators/app_generator.rb
|
128
|
+
- lib/suspenders/version.rb
|
129
|
+
- spec/adapters/heroku_spec.rb
|
130
|
+
- spec/fakes/bin/heroku
|
131
|
+
- spec/fakes/bin/hub
|
132
|
+
- spec/features/github_spec.rb
|
133
|
+
- spec/features/heroku_spec.rb
|
134
|
+
- spec/features/new_project_spec.rb
|
135
|
+
- spec/spec_helper.rb
|
136
|
+
- spec/support/fake_github.rb
|
137
|
+
- spec/support/fake_heroku.rb
|
138
|
+
- spec/support/suspenders.rb
|
139
|
+
- suspenders.gemspec
|
140
|
+
- templates/Gemfile.erb
|
141
|
+
- templates/Procfile
|
142
|
+
- templates/README.md.erb
|
143
|
+
- templates/_flash.html.slim
|
144
|
+
- templates/_javascript.html.slim
|
145
|
+
- templates/action_mailer.rb
|
146
|
+
- templates/app.json.erb
|
147
|
+
- templates/application.scss
|
148
|
+
- templates/bin_deploy
|
149
|
+
- templates/bin_setup
|
150
|
+
- templates/bin_setup_review_app.erb
|
151
|
+
- templates/browserslist
|
152
|
+
- templates/bundler_audit.rake
|
153
|
+
- templates/capybara_webkit.rb
|
154
|
+
- templates/circle.yml.erb
|
155
|
+
- templates/config_locales_en.yml.erb
|
156
|
+
- templates/database_cleaner_rspec.rb
|
157
|
+
- templates/dev.rake
|
158
|
+
- templates/disable_xml_params.rb
|
159
|
+
- templates/dotfiles/.ctags
|
160
|
+
- templates/dotfiles/.env
|
161
|
+
- templates/errors.rb
|
162
|
+
- templates/factories.rb
|
163
|
+
- templates/factory_girl_rspec.rb
|
164
|
+
- templates/hound.yml
|
165
|
+
- templates/i18n.rb
|
166
|
+
- templates/json_encoding.rb
|
167
|
+
- templates/newrelic.yml.erb
|
168
|
+
- templates/postgresql_database.yml.erb
|
169
|
+
- templates/rack_mini_profiler.rb
|
170
|
+
- templates/rails_helper.rb
|
171
|
+
- templates/secrets.yml
|
172
|
+
- templates/shoulda_matchers_config_rspec.rb
|
173
|
+
- templates/smtp.rb
|
174
|
+
- templates/spec_helper.rb
|
175
|
+
- templates/staging.rb
|
176
|
+
- templates/suspenders_gitignore
|
177
|
+
- templates/suspenders_layout.html.slim.erb
|
178
|
+
homepage: https://github.com/COSMITdev/suspenders
|
179
|
+
licenses:
|
180
|
+
- MIT
|
181
|
+
metadata: {}
|
182
|
+
post_install_message:
|
183
|
+
rdoc_options:
|
184
|
+
- "--charset=UTF-8"
|
185
|
+
require_paths:
|
186
|
+
- lib
|
187
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
188
|
+
requirements:
|
189
|
+
- - ">="
|
190
|
+
- !ruby/object:Gem::Version
|
191
|
+
version: 2.3.1
|
192
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
193
|
+
requirements:
|
194
|
+
- - ">="
|
195
|
+
- !ruby/object:Gem::Version
|
196
|
+
version: '0'
|
197
|
+
requirements: []
|
198
|
+
rubyforge_project:
|
199
|
+
rubygems_version: 2.5.1
|
200
|
+
signing_key:
|
201
|
+
specification_version: 4
|
202
|
+
summary: Generate a Rails app using cosmit's best practices.
|
203
|
+
test_files:
|
204
|
+
- spec/adapters/heroku_spec.rb
|
205
|
+
- spec/fakes/bin/heroku
|
206
|
+
- spec/fakes/bin/hub
|
207
|
+
- spec/features/github_spec.rb
|
208
|
+
- spec/features/heroku_spec.rb
|
209
|
+
- spec/features/new_project_spec.rb
|
210
|
+
- spec/spec_helper.rb
|
211
|
+
- spec/support/fake_github.rb
|
212
|
+
- spec/support/fake_heroku.rb
|
213
|
+
- spec/support/suspenders.rb
|