bretelline 0.1.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.
- checksums.yaml +7 -0
- data/.gitignore +12 -0
- data/Gemfile +4 -0
- data/README.md +36 -0
- data/Rakefile +1 -0
- data/blog/.gitignore +23 -0
- data/blog/Gemfile +54 -0
- data/blog/Gemfile.lock +191 -0
- data/blog/README.md +1 -0
- data/blog/Rakefile +6 -0
- data/blog/app/assets/config/manifest.js +3 -0
- data/blog/app/assets/images/.keep +0 -0
- data/blog/app/assets/javascripts/application.js +15 -0
- data/blog/app/assets/javascripts/cable.js +13 -0
- data/blog/app/assets/javascripts/channels/.keep +0 -0
- data/blog/app/assets/stylesheets/application.css +15 -0
- data/blog/app/channels/application_cable/channel.rb +4 -0
- data/blog/app/channels/application_cable/connection.rb +4 -0
- data/blog/app/controllers/application_controller.rb +3 -0
- data/blog/app/controllers/concerns/.keep +0 -0
- data/blog/app/helpers/application_helper.rb +2 -0
- data/blog/app/jobs/application_job.rb +2 -0
- data/blog/app/mailers/application_mailer.rb +4 -0
- data/blog/app/models/application_record.rb +3 -0
- data/blog/app/models/concerns/.keep +0 -0
- data/blog/app/views/layouts/application.html.erb +14 -0
- data/blog/app/views/layouts/mailer.html.erb +13 -0
- data/blog/app/views/layouts/mailer.text.erb +1 -0
- data/blog/bin/bundle +3 -0
- data/blog/bin/rails +9 -0
- data/blog/bin/rake +9 -0
- data/blog/bin/setup +38 -0
- data/blog/bin/spring +17 -0
- data/blog/bin/update +29 -0
- data/blog/bin/yarn +11 -0
- data/blog/config/application.rb +18 -0
- data/blog/config/boot.rb +3 -0
- data/blog/config/cable.yml +10 -0
- data/blog/config/database.yml +25 -0
- data/blog/config/environment.rb +5 -0
- data/blog/config/environments/development.rb +54 -0
- data/blog/config/environments/production.rb +91 -0
- data/blog/config/environments/test.rb +42 -0
- data/blog/config/initializers/application_controller_renderer.rb +6 -0
- data/blog/config/initializers/assets.rb +14 -0
- data/blog/config/initializers/backtrace_silencers.rb +7 -0
- data/blog/config/initializers/cookies_serializer.rb +5 -0
- data/blog/config/initializers/filter_parameter_logging.rb +4 -0
- data/blog/config/initializers/inflections.rb +16 -0
- data/blog/config/initializers/mime_types.rb +4 -0
- data/blog/config/initializers/wrap_parameters.rb +14 -0
- data/blog/config/locales/en.yml +33 -0
- data/blog/config/puma.rb +56 -0
- data/blog/config/routes.rb +3 -0
- data/blog/config/secrets.yml +32 -0
- data/blog/config/spring.rb +6 -0
- data/blog/config.ru +5 -0
- data/blog/db/seeds.rb +7 -0
- data/blog/lib/assets/.keep +0 -0
- data/blog/lib/tasks/.keep +0 -0
- data/blog/log/.keep +0 -0
- data/blog/package.json +5 -0
- data/blog/public/404.html +67 -0
- data/blog/public/422.html +67 -0
- data/blog/public/500.html +66 -0
- data/blog/public/apple-touch-icon-precomposed.png +0 -0
- data/blog/public/apple-touch-icon.png +0 -0
- data/blog/public/favicon.ico +0 -0
- data/blog/public/robots.txt +1 -0
- data/blog/test/application_system_test_case.rb +5 -0
- data/blog/test/controllers/.keep +0 -0
- data/blog/test/fixtures/.keep +0 -0
- data/blog/test/fixtures/files/.keep +0 -0
- data/blog/test/helpers/.keep +0 -0
- data/blog/test/integration/.keep +0 -0
- data/blog/test/mailers/.keep +0 -0
- data/blog/test/models/.keep +0 -0
- data/blog/test/system/.keep +0 -0
- data/blog/test/test_helper.rb +9 -0
- data/blog/tmp/.keep +0 -0
- data/blog/vendor/.keep +0 -0
- data/bretelline.gemspec +28 -0
- data/exe/bretelline +5 -0
- data/lib/bretelline/app_generator.rb +55 -0
- data/lib/bretelline/builders/solidus.rb +19 -0
- data/lib/bretelline/templates/README.md.erb +1 -0
- data/lib/bretelline/templates/solidus_gemfile.erb +69 -0
- data/lib/bretelline/version.rb +4 -0
- data/lib/bretelline.rb +5 -0
- metadata +174 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 3e04097487a7d9751b99b24fdb8e2e1fbd018c62
|
|
4
|
+
data.tar.gz: c4d186d68e9d226964d663989293e41d608e2b89
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: e7b8aba7217f0a0ff5148d61d7b5f02d0b61ac74e3c1afa4d650b1a40e1e7300603fad5c37c659e7af0a077ca74aabbc83bcf881abcdce8f019e048f6b75449a
|
|
7
|
+
data.tar.gz: 0a3a6ce506e1fa18735ea76066334f40e154fc4a8a506619c2977339f058dfef1da395dd4d75742f1654191ad0b48d74f30c5b273a725ee3f8d7a1ef54fbc6bb
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/README.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# Bretelline
|
|
2
|
+
|
|
3
|
+
This is [Nebulab][nebulab]'s own Rails (mainly Solidus) application template.
|
|
4
|
+
|
|
5
|
+
The strange name actually Italian for *little suspenders*. The idea for this gem
|
|
6
|
+
came up because we need something like [Suspenders][suspenders].
|
|
7
|
+
|
|
8
|
+
## Installation
|
|
9
|
+
|
|
10
|
+
Install it as a standalone gem:
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
$ gem install bretelline
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## Usage
|
|
17
|
+
|
|
18
|
+
Run the gem as you would with `rails new <app_name>`:
|
|
19
|
+
|
|
20
|
+
```
|
|
21
|
+
$ bretelline <app_name>
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## About
|
|
25
|
+
|
|
26
|
+
[![Nebulab][nebulab-logo]][nebulab]
|
|
27
|
+
|
|
28
|
+
Bretelline is funded and maintained by the [Nebulab][nebulab] team.
|
|
29
|
+
|
|
30
|
+
We firmly believe in the power of open-source. [Contact us][contact-us] if you
|
|
31
|
+
like our work and you need help with your project design or development.
|
|
32
|
+
|
|
33
|
+
[nebulab]: http://nebulab.it/
|
|
34
|
+
[nebulab-logo]: http://nebulab.it/assets/images/public/logo.svg
|
|
35
|
+
[contact-us]: http://nebulab.it/contact-us/
|
|
36
|
+
[suspenders]: https://github.com/thoughtbot/suspenders
|
data/Rakefile
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require "bundler/gem_tasks"
|
data/blog/.gitignore
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
|
|
2
|
+
#
|
|
3
|
+
# If you find yourself ignoring temporary files generated by your text editor
|
|
4
|
+
# or operating system, you probably want to add a global ignore instead:
|
|
5
|
+
# git config --global core.excludesfile '~/.gitignore_global'
|
|
6
|
+
|
|
7
|
+
# Ignore bundler config.
|
|
8
|
+
/.bundle
|
|
9
|
+
|
|
10
|
+
# Ignore the default SQLite database.
|
|
11
|
+
/db/*.sqlite3
|
|
12
|
+
/db/*.sqlite3-journal
|
|
13
|
+
|
|
14
|
+
# Ignore all logfiles and tempfiles.
|
|
15
|
+
/log/*
|
|
16
|
+
/tmp/*
|
|
17
|
+
!/log/.keep
|
|
18
|
+
!/tmp/.keep
|
|
19
|
+
|
|
20
|
+
/node_modules
|
|
21
|
+
/yarn-error.log
|
|
22
|
+
|
|
23
|
+
.byebug_history
|
data/blog/Gemfile
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
source 'https://rubygems.org'
|
|
2
|
+
|
|
3
|
+
git_source(:github) do |repo_name|
|
|
4
|
+
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
|
|
5
|
+
"https://github.com/#{repo_name}.git"
|
|
6
|
+
end
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
|
10
|
+
gem 'rails', '~> 5.1.2'
|
|
11
|
+
# Use sqlite3 as the database for Active Record
|
|
12
|
+
gem 'sqlite3'
|
|
13
|
+
# Use Puma as the app server
|
|
14
|
+
gem 'puma', '~> 3.7'
|
|
15
|
+
# Use SCSS for stylesheets
|
|
16
|
+
gem 'sass-rails', '~> 5.0'
|
|
17
|
+
# Use Uglifier as compressor for JavaScript assets
|
|
18
|
+
gem 'uglifier', '>= 1.3.0'
|
|
19
|
+
# See https://github.com/rails/execjs#readme for more supported runtimes
|
|
20
|
+
# gem 'therubyracer', platforms: :ruby
|
|
21
|
+
|
|
22
|
+
# Use CoffeeScript for .coffee assets and views
|
|
23
|
+
gem 'coffee-rails', '~> 4.2'
|
|
24
|
+
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
|
|
25
|
+
gem 'turbolinks', '~> 5'
|
|
26
|
+
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
|
|
27
|
+
gem 'jbuilder', '~> 2.5'
|
|
28
|
+
# Use Redis adapter to run Action Cable in production
|
|
29
|
+
# gem 'redis', '~> 3.0'
|
|
30
|
+
# Use ActiveModel has_secure_password
|
|
31
|
+
# gem 'bcrypt', '~> 3.1.7'
|
|
32
|
+
|
|
33
|
+
# Use Capistrano for deployment
|
|
34
|
+
# gem 'capistrano-rails', group: :development
|
|
35
|
+
|
|
36
|
+
group :development, :test do
|
|
37
|
+
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
|
|
38
|
+
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
|
|
39
|
+
# Adds support for Capybara system testing and selenium driver
|
|
40
|
+
gem 'capybara', '~> 2.13'
|
|
41
|
+
gem 'selenium-webdriver'
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
group :development do
|
|
45
|
+
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
|
|
46
|
+
gem 'web-console', '>= 3.3.0'
|
|
47
|
+
gem 'listen', '>= 3.0.5', '< 3.2'
|
|
48
|
+
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
|
49
|
+
gem 'spring'
|
|
50
|
+
gem 'spring-watcher-listen', '~> 2.0.0'
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
|
54
|
+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|
data/blog/Gemfile.lock
ADDED
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
GEM
|
|
2
|
+
remote: https://rubygems.org/
|
|
3
|
+
specs:
|
|
4
|
+
actioncable (5.1.2)
|
|
5
|
+
actionpack (= 5.1.2)
|
|
6
|
+
nio4r (~> 2.0)
|
|
7
|
+
websocket-driver (~> 0.6.1)
|
|
8
|
+
actionmailer (5.1.2)
|
|
9
|
+
actionpack (= 5.1.2)
|
|
10
|
+
actionview (= 5.1.2)
|
|
11
|
+
activejob (= 5.1.2)
|
|
12
|
+
mail (~> 2.5, >= 2.5.4)
|
|
13
|
+
rails-dom-testing (~> 2.0)
|
|
14
|
+
actionpack (5.1.2)
|
|
15
|
+
actionview (= 5.1.2)
|
|
16
|
+
activesupport (= 5.1.2)
|
|
17
|
+
rack (~> 2.0)
|
|
18
|
+
rack-test (~> 0.6.3)
|
|
19
|
+
rails-dom-testing (~> 2.0)
|
|
20
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
|
21
|
+
actionview (5.1.2)
|
|
22
|
+
activesupport (= 5.1.2)
|
|
23
|
+
builder (~> 3.1)
|
|
24
|
+
erubi (~> 1.4)
|
|
25
|
+
rails-dom-testing (~> 2.0)
|
|
26
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
|
27
|
+
activejob (5.1.2)
|
|
28
|
+
activesupport (= 5.1.2)
|
|
29
|
+
globalid (>= 0.3.6)
|
|
30
|
+
activemodel (5.1.2)
|
|
31
|
+
activesupport (= 5.1.2)
|
|
32
|
+
activerecord (5.1.2)
|
|
33
|
+
activemodel (= 5.1.2)
|
|
34
|
+
activesupport (= 5.1.2)
|
|
35
|
+
arel (~> 8.0)
|
|
36
|
+
activesupport (5.1.2)
|
|
37
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
38
|
+
i18n (~> 0.7)
|
|
39
|
+
minitest (~> 5.1)
|
|
40
|
+
tzinfo (~> 1.1)
|
|
41
|
+
addressable (2.5.1)
|
|
42
|
+
public_suffix (~> 2.0, >= 2.0.2)
|
|
43
|
+
arel (8.0.0)
|
|
44
|
+
bindex (0.5.0)
|
|
45
|
+
builder (3.2.3)
|
|
46
|
+
byebug (9.0.6)
|
|
47
|
+
capybara (2.14.4)
|
|
48
|
+
addressable
|
|
49
|
+
mime-types (>= 1.16)
|
|
50
|
+
nokogiri (>= 1.3.3)
|
|
51
|
+
rack (>= 1.0.0)
|
|
52
|
+
rack-test (>= 0.5.4)
|
|
53
|
+
xpath (~> 2.0)
|
|
54
|
+
childprocess (0.7.1)
|
|
55
|
+
ffi (~> 1.0, >= 1.0.11)
|
|
56
|
+
coffee-rails (4.2.2)
|
|
57
|
+
coffee-script (>= 2.2.0)
|
|
58
|
+
railties (>= 4.0.0)
|
|
59
|
+
coffee-script (2.4.1)
|
|
60
|
+
coffee-script-source
|
|
61
|
+
execjs
|
|
62
|
+
coffee-script-source (1.12.2)
|
|
63
|
+
concurrent-ruby (1.0.5)
|
|
64
|
+
erubi (1.6.1)
|
|
65
|
+
execjs (2.7.0)
|
|
66
|
+
ffi (1.9.18)
|
|
67
|
+
globalid (0.4.0)
|
|
68
|
+
activesupport (>= 4.2.0)
|
|
69
|
+
i18n (0.8.6)
|
|
70
|
+
jbuilder (2.7.0)
|
|
71
|
+
activesupport (>= 4.2.0)
|
|
72
|
+
multi_json (>= 1.2)
|
|
73
|
+
listen (3.1.5)
|
|
74
|
+
rb-fsevent (~> 0.9, >= 0.9.4)
|
|
75
|
+
rb-inotify (~> 0.9, >= 0.9.7)
|
|
76
|
+
ruby_dep (~> 1.2)
|
|
77
|
+
loofah (2.0.3)
|
|
78
|
+
nokogiri (>= 1.5.9)
|
|
79
|
+
mail (2.6.6)
|
|
80
|
+
mime-types (>= 1.16, < 4)
|
|
81
|
+
method_source (0.8.2)
|
|
82
|
+
mime-types (3.1)
|
|
83
|
+
mime-types-data (~> 3.2015)
|
|
84
|
+
mime-types-data (3.2016.0521)
|
|
85
|
+
mini_portile2 (2.2.0)
|
|
86
|
+
minitest (5.10.2)
|
|
87
|
+
multi_json (1.12.1)
|
|
88
|
+
nio4r (2.1.0)
|
|
89
|
+
nokogiri (1.8.0)
|
|
90
|
+
mini_portile2 (~> 2.2.0)
|
|
91
|
+
public_suffix (2.0.5)
|
|
92
|
+
puma (3.9.1)
|
|
93
|
+
rack (2.0.3)
|
|
94
|
+
rack-test (0.6.3)
|
|
95
|
+
rack (>= 1.0)
|
|
96
|
+
rails (5.1.2)
|
|
97
|
+
actioncable (= 5.1.2)
|
|
98
|
+
actionmailer (= 5.1.2)
|
|
99
|
+
actionpack (= 5.1.2)
|
|
100
|
+
actionview (= 5.1.2)
|
|
101
|
+
activejob (= 5.1.2)
|
|
102
|
+
activemodel (= 5.1.2)
|
|
103
|
+
activerecord (= 5.1.2)
|
|
104
|
+
activesupport (= 5.1.2)
|
|
105
|
+
bundler (>= 1.3.0, < 2.0)
|
|
106
|
+
railties (= 5.1.2)
|
|
107
|
+
sprockets-rails (>= 2.0.0)
|
|
108
|
+
rails-dom-testing (2.0.3)
|
|
109
|
+
activesupport (>= 4.2.0)
|
|
110
|
+
nokogiri (>= 1.6)
|
|
111
|
+
rails-html-sanitizer (1.0.3)
|
|
112
|
+
loofah (~> 2.0)
|
|
113
|
+
railties (5.1.2)
|
|
114
|
+
actionpack (= 5.1.2)
|
|
115
|
+
activesupport (= 5.1.2)
|
|
116
|
+
method_source
|
|
117
|
+
rake (>= 0.8.7)
|
|
118
|
+
thor (>= 0.18.1, < 2.0)
|
|
119
|
+
rake (12.0.0)
|
|
120
|
+
rb-fsevent (0.10.2)
|
|
121
|
+
rb-inotify (0.9.10)
|
|
122
|
+
ffi (>= 0.5.0, < 2)
|
|
123
|
+
ruby_dep (1.5.0)
|
|
124
|
+
rubyzip (1.2.1)
|
|
125
|
+
sass (3.4.25)
|
|
126
|
+
sass-rails (5.0.6)
|
|
127
|
+
railties (>= 4.0.0, < 6)
|
|
128
|
+
sass (~> 3.1)
|
|
129
|
+
sprockets (>= 2.8, < 4.0)
|
|
130
|
+
sprockets-rails (>= 2.0, < 4.0)
|
|
131
|
+
tilt (>= 1.1, < 3)
|
|
132
|
+
selenium-webdriver (3.4.3)
|
|
133
|
+
childprocess (~> 0.5)
|
|
134
|
+
rubyzip (~> 1.0)
|
|
135
|
+
spring (2.0.2)
|
|
136
|
+
activesupport (>= 4.2)
|
|
137
|
+
spring-watcher-listen (2.0.1)
|
|
138
|
+
listen (>= 2.7, < 4.0)
|
|
139
|
+
spring (>= 1.2, < 3.0)
|
|
140
|
+
sprockets (3.7.1)
|
|
141
|
+
concurrent-ruby (~> 1.0)
|
|
142
|
+
rack (> 1, < 3)
|
|
143
|
+
sprockets-rails (3.2.0)
|
|
144
|
+
actionpack (>= 4.0)
|
|
145
|
+
activesupport (>= 4.0)
|
|
146
|
+
sprockets (>= 3.0.0)
|
|
147
|
+
sqlite3 (1.3.13)
|
|
148
|
+
thor (0.19.4)
|
|
149
|
+
thread_safe (0.3.6)
|
|
150
|
+
tilt (2.0.7)
|
|
151
|
+
turbolinks (5.0.1)
|
|
152
|
+
turbolinks-source (~> 5)
|
|
153
|
+
turbolinks-source (5.0.3)
|
|
154
|
+
tzinfo (1.2.3)
|
|
155
|
+
thread_safe (~> 0.1)
|
|
156
|
+
uglifier (3.2.0)
|
|
157
|
+
execjs (>= 0.3.0, < 3)
|
|
158
|
+
web-console (3.5.1)
|
|
159
|
+
actionview (>= 5.0)
|
|
160
|
+
activemodel (>= 5.0)
|
|
161
|
+
bindex (>= 0.4.0)
|
|
162
|
+
railties (>= 5.0)
|
|
163
|
+
websocket-driver (0.6.5)
|
|
164
|
+
websocket-extensions (>= 0.1.0)
|
|
165
|
+
websocket-extensions (0.1.2)
|
|
166
|
+
xpath (2.1.0)
|
|
167
|
+
nokogiri (~> 1.3)
|
|
168
|
+
|
|
169
|
+
PLATFORMS
|
|
170
|
+
ruby
|
|
171
|
+
|
|
172
|
+
DEPENDENCIES
|
|
173
|
+
byebug
|
|
174
|
+
capybara (~> 2.13)
|
|
175
|
+
coffee-rails (~> 4.2)
|
|
176
|
+
jbuilder (~> 2.5)
|
|
177
|
+
listen (>= 3.0.5, < 3.2)
|
|
178
|
+
puma (~> 3.7)
|
|
179
|
+
rails (~> 5.1.2)
|
|
180
|
+
sass-rails (~> 5.0)
|
|
181
|
+
selenium-webdriver
|
|
182
|
+
spring
|
|
183
|
+
spring-watcher-listen (~> 2.0.0)
|
|
184
|
+
sqlite3
|
|
185
|
+
turbolinks (~> 5)
|
|
186
|
+
tzinfo-data
|
|
187
|
+
uglifier (>= 1.3.0)
|
|
188
|
+
web-console (>= 3.3.0)
|
|
189
|
+
|
|
190
|
+
BUNDLED WITH
|
|
191
|
+
1.15.1
|
data/blog/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
#Blog
|
data/blog/Rakefile
ADDED
|
File without changes
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// This is a manifest file that'll be compiled into application.js, which will include all the files
|
|
2
|
+
// listed below.
|
|
3
|
+
//
|
|
4
|
+
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, or any plugin's
|
|
5
|
+
// vendor/assets/javascripts directory can be referenced here using a relative path.
|
|
6
|
+
//
|
|
7
|
+
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
|
|
8
|
+
// compiled file. JavaScript code in this file should be added after the last require_* statement.
|
|
9
|
+
//
|
|
10
|
+
// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
|
|
11
|
+
// about supported directives.
|
|
12
|
+
//
|
|
13
|
+
//= require rails-ujs
|
|
14
|
+
//= require turbolinks
|
|
15
|
+
//= require_tree .
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// Action Cable provides the framework to deal with WebSockets in Rails.
|
|
2
|
+
// You can generate new channels where WebSocket features live using the `rails generate channel` command.
|
|
3
|
+
//
|
|
4
|
+
//= require action_cable
|
|
5
|
+
//= require_self
|
|
6
|
+
//= require_tree ./channels
|
|
7
|
+
|
|
8
|
+
(function() {
|
|
9
|
+
this.App || (this.App = {});
|
|
10
|
+
|
|
11
|
+
App.cable = ActionCable.createConsumer();
|
|
12
|
+
|
|
13
|
+
}).call(this);
|
|
File without changes
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
|
3
|
+
* listed below.
|
|
4
|
+
*
|
|
5
|
+
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
|
|
6
|
+
* vendor/assets/stylesheets directory can be referenced here using a relative path.
|
|
7
|
+
*
|
|
8
|
+
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
|
|
9
|
+
* compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
|
|
10
|
+
* files in this directory. Styles in this file should be added after the last require_* statement.
|
|
11
|
+
* It is generally better to create a new file per style scope.
|
|
12
|
+
*
|
|
13
|
+
*= require_tree .
|
|
14
|
+
*= require_self
|
|
15
|
+
*/
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<title>Blog</title>
|
|
5
|
+
<%= csrf_meta_tags %>
|
|
6
|
+
|
|
7
|
+
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %>
|
|
8
|
+
<%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %>
|
|
9
|
+
</head>
|
|
10
|
+
|
|
11
|
+
<body>
|
|
12
|
+
<%= yield %>
|
|
13
|
+
</body>
|
|
14
|
+
</html>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<%= yield %>
|
data/blog/bin/bundle
ADDED
data/blog/bin/rails
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
begin
|
|
3
|
+
load File.expand_path('../spring', __FILE__)
|
|
4
|
+
rescue LoadError => e
|
|
5
|
+
raise unless e.message.include?('spring')
|
|
6
|
+
end
|
|
7
|
+
APP_PATH = File.expand_path('../config/application', __dir__)
|
|
8
|
+
require_relative '../config/boot'
|
|
9
|
+
require 'rails/commands'
|
data/blog/bin/rake
ADDED
data/blog/bin/setup
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
require 'pathname'
|
|
3
|
+
require 'fileutils'
|
|
4
|
+
include FileUtils
|
|
5
|
+
|
|
6
|
+
# path to your application root.
|
|
7
|
+
APP_ROOT = Pathname.new File.expand_path('../../', __FILE__)
|
|
8
|
+
|
|
9
|
+
def system!(*args)
|
|
10
|
+
system(*args) || abort("\n== Command #{args} failed ==")
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
chdir APP_ROOT do
|
|
14
|
+
# This script is a starting point to setup your application.
|
|
15
|
+
# Add necessary setup steps to this file.
|
|
16
|
+
|
|
17
|
+
puts '== Installing dependencies =='
|
|
18
|
+
system! 'gem install bundler --conservative'
|
|
19
|
+
system('bundle check') || system!('bundle install')
|
|
20
|
+
|
|
21
|
+
# Install JavaScript dependencies if using Yarn
|
|
22
|
+
# system('bin/yarn')
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# puts "\n== Copying sample files =="
|
|
26
|
+
# unless File.exist?('config/database.yml')
|
|
27
|
+
# cp 'config/database.yml.sample', 'config/database.yml'
|
|
28
|
+
# end
|
|
29
|
+
|
|
30
|
+
puts "\n== Preparing database =="
|
|
31
|
+
system! 'bin/rails db:setup'
|
|
32
|
+
|
|
33
|
+
puts "\n== Removing old logs and tempfiles =="
|
|
34
|
+
system! 'bin/rails log:clear tmp:clear'
|
|
35
|
+
|
|
36
|
+
puts "\n== Restarting application server =="
|
|
37
|
+
system! 'bin/rails restart'
|
|
38
|
+
end
|
data/blog/bin/spring
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
|
|
3
|
+
# This file loads spring without using Bundler, in order to be fast.
|
|
4
|
+
# It gets overwritten when you run the `spring binstub` command.
|
|
5
|
+
|
|
6
|
+
unless defined?(Spring)
|
|
7
|
+
require 'rubygems'
|
|
8
|
+
require 'bundler'
|
|
9
|
+
|
|
10
|
+
lockfile = Bundler::LockfileParser.new(Bundler.default_lockfile.read)
|
|
11
|
+
spring = lockfile.specs.detect { |spec| spec.name == "spring" }
|
|
12
|
+
if spring
|
|
13
|
+
Gem.use_paths Gem.dir, Bundler.bundle_path.to_s, *Gem.path
|
|
14
|
+
gem 'spring', spring.version
|
|
15
|
+
require 'spring/binstub'
|
|
16
|
+
end
|
|
17
|
+
end
|
data/blog/bin/update
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
require 'pathname'
|
|
3
|
+
require 'fileutils'
|
|
4
|
+
include FileUtils
|
|
5
|
+
|
|
6
|
+
# path to your application root.
|
|
7
|
+
APP_ROOT = Pathname.new File.expand_path('../../', __FILE__)
|
|
8
|
+
|
|
9
|
+
def system!(*args)
|
|
10
|
+
system(*args) || abort("\n== Command #{args} failed ==")
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
chdir APP_ROOT do
|
|
14
|
+
# This script is a way to update your development environment automatically.
|
|
15
|
+
# Add necessary update steps to this file.
|
|
16
|
+
|
|
17
|
+
puts '== Installing dependencies =='
|
|
18
|
+
system! 'gem install bundler --conservative'
|
|
19
|
+
system('bundle check') || system!('bundle install')
|
|
20
|
+
|
|
21
|
+
puts "\n== Updating database =="
|
|
22
|
+
system! 'bin/rails db:migrate'
|
|
23
|
+
|
|
24
|
+
puts "\n== Removing old logs and tempfiles =="
|
|
25
|
+
system! 'bin/rails log:clear tmp:clear'
|
|
26
|
+
|
|
27
|
+
puts "\n== Restarting application server =="
|
|
28
|
+
system! 'bin/rails restart'
|
|
29
|
+
end
|
data/blog/bin/yarn
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
VENDOR_PATH = File.expand_path('..', __dir__)
|
|
3
|
+
Dir.chdir(VENDOR_PATH) do
|
|
4
|
+
begin
|
|
5
|
+
exec "yarnpkg #{ARGV.join(" ")}"
|
|
6
|
+
rescue Errno::ENOENT
|
|
7
|
+
$stderr.puts "Yarn executable was not detected in the system."
|
|
8
|
+
$stderr.puts "Download Yarn at https://yarnpkg.com/en/docs/install"
|
|
9
|
+
exit 1
|
|
10
|
+
end
|
|
11
|
+
end
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
require_relative 'boot'
|
|
2
|
+
|
|
3
|
+
require 'rails/all'
|
|
4
|
+
|
|
5
|
+
# Require the gems listed in Gemfile, including any gems
|
|
6
|
+
# you've limited to :test, :development, or :production.
|
|
7
|
+
Bundler.require(*Rails.groups)
|
|
8
|
+
|
|
9
|
+
module Blog
|
|
10
|
+
class Application < Rails::Application
|
|
11
|
+
# Initialize configuration defaults for originally generated Rails version.
|
|
12
|
+
config.load_defaults 5.1
|
|
13
|
+
|
|
14
|
+
# Settings in config/environments/* take precedence over those specified here.
|
|
15
|
+
# Application configuration should go into files in config/initializers
|
|
16
|
+
# -- all .rb files in that directory are automatically loaded.
|
|
17
|
+
end
|
|
18
|
+
end
|
data/blog/config/boot.rb
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# SQLite version 3.x
|
|
2
|
+
# gem install sqlite3
|
|
3
|
+
#
|
|
4
|
+
# Ensure the SQLite 3 gem is defined in your Gemfile
|
|
5
|
+
# gem 'sqlite3'
|
|
6
|
+
#
|
|
7
|
+
default: &default
|
|
8
|
+
adapter: sqlite3
|
|
9
|
+
pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
|
|
10
|
+
timeout: 5000
|
|
11
|
+
|
|
12
|
+
development:
|
|
13
|
+
<<: *default
|
|
14
|
+
database: db/development.sqlite3
|
|
15
|
+
|
|
16
|
+
# Warning: The database defined as "test" will be erased and
|
|
17
|
+
# re-generated from your development database when you run "rake".
|
|
18
|
+
# Do not set this db to the same as development or production.
|
|
19
|
+
test:
|
|
20
|
+
<<: *default
|
|
21
|
+
database: db/test.sqlite3
|
|
22
|
+
|
|
23
|
+
production:
|
|
24
|
+
<<: *default
|
|
25
|
+
database: db/production.sqlite3
|