rack-logstash-writer 1.0.3
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 +20 -0
- data/.rvmrc +1 -0
- data/.travis.yml +3 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +35 -0
- data/LICENSE.txt +22 -0
- data/README.md +47 -0
- data/Rakefile +16 -0
- data/examples/rails-project/Gemfile +46 -0
- data/examples/rails-project/Gemfile.lock +155 -0
- data/examples/rails-project/README.rdoc +28 -0
- data/examples/rails-project/Rakefile +6 -0
- data/examples/rails-project/app/assets/images/.keep +0 -0
- data/examples/rails-project/app/assets/javascripts/application.js +16 -0
- data/examples/rails-project/app/assets/stylesheets/application.css +15 -0
- data/examples/rails-project/app/controllers/application_controller.rb +5 -0
- data/examples/rails-project/app/controllers/concerns/.keep +0 -0
- data/examples/rails-project/app/helpers/application_helper.rb +2 -0
- data/examples/rails-project/app/mailers/.keep +0 -0
- data/examples/rails-project/app/models/.keep +0 -0
- data/examples/rails-project/app/models/concerns/.keep +0 -0
- data/examples/rails-project/app/views/layouts/application.html.erb +14 -0
- data/examples/rails-project/bin/bundle +3 -0
- data/examples/rails-project/bin/rails +8 -0
- data/examples/rails-project/bin/rake +8 -0
- data/examples/rails-project/bin/setup +29 -0
- data/examples/rails-project/bin/spring +15 -0
- data/examples/rails-project/config/application.rb +26 -0
- data/examples/rails-project/config/boot.rb +3 -0
- data/examples/rails-project/config/database.yml +25 -0
- data/examples/rails-project/config/environment.rb +5 -0
- data/examples/rails-project/config/environments/development.rb +41 -0
- data/examples/rails-project/config/environments/production.rb +79 -0
- data/examples/rails-project/config/environments/test.rb +42 -0
- data/examples/rails-project/config/initializers/assets.rb +11 -0
- data/examples/rails-project/config/initializers/backtrace_silencers.rb +7 -0
- data/examples/rails-project/config/initializers/cookies_serializer.rb +3 -0
- data/examples/rails-project/config/initializers/filter_parameter_logging.rb +4 -0
- data/examples/rails-project/config/initializers/inflections.rb +16 -0
- data/examples/rails-project/config/initializers/mime_types.rb +4 -0
- data/examples/rails-project/config/initializers/session_store.rb +3 -0
- data/examples/rails-project/config/initializers/wrap_parameters.rb +14 -0
- data/examples/rails-project/config/locales/en.yml +23 -0
- data/examples/rails-project/config/routes.rb +56 -0
- data/examples/rails-project/config/secrets.yml +22 -0
- data/examples/rails-project/config.ru +8 -0
- data/examples/rails-project/db/development.sqlite3 +0 -0
- data/examples/rails-project/db/seeds.rb +7 -0
- data/examples/rails-project/lib/assets/.keep +0 -0
- data/examples/rails-project/lib/tasks/.keep +0 -0
- data/examples/rails-project/log/.keep +0 -0
- data/examples/rails-project/log/development.log +78 -0
- data/examples/rails-project/public/404.html +67 -0
- data/examples/rails-project/public/422.html +67 -0
- data/examples/rails-project/public/500.html +66 -0
- data/examples/rails-project/public/favicon.ico +0 -0
- data/examples/rails-project/public/robots.txt +5 -0
- data/examples/rails-project/test/controllers/.keep +0 -0
- data/examples/rails-project/test/fixtures/.keep +0 -0
- data/examples/rails-project/test/helpers/.keep +0 -0
- data/examples/rails-project/test/integration/.keep +0 -0
- data/examples/rails-project/test/mailers/.keep +0 -0
- data/examples/rails-project/test/models/.keep +0 -0
- data/examples/rails-project/test/test_helper.rb +10 -0
- data/examples/rails-project/vendor/assets/javascripts/.keep +0 -0
- data/examples/rails-project/vendor/assets/stylesheets/.keep +0 -0
- data/examples/regular rack file/config.ru +31 -0
- data/examples/sinatra-project/Gemfile +7 -0
- data/examples/sinatra-project/Gemfile.lock +24 -0
- data/examples/sinatra-project/config.ru +10 -0
- data/examples/sinatra-project/lib/sinatra.rb +15 -0
- data/lib/rack/logstash-writer/version.rb +5 -0
- data/lib/rack/logstash-writer.rb +100 -0
- data/rack-logstash-writer.gemspec +23 -0
- data/test/unit/logstash_writer_tests.rb +47 -0
- data/test/units_helper.rb +12 -0
- metadata +138 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 743b790742046eaf637e2a60b3e9a637dd643e5d
|
4
|
+
data.tar.gz: 01d40e7442abf11bf844c027c8166da8219d7355
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: e975018d476ece10bb89fe9d6ea9f1a556f088c2c043deb2989e6c6ae511fc22098ee95374a78ff73b9fb7e3d56757ff90e1dbdedac748b84eaef15bb274ddae
|
7
|
+
data.tar.gz: 079268552f5b112aa17947a96fb9af853c98bc812ddfe431efc2e0dbe1356e192a069559346b7e773830369b18b49ee6ce591d5199562a3c21b3725f3de07e0d
|
data/.gitignore
ADDED
data/.rvmrc
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
rvm use ruby
|
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
GEM
|
2
|
+
remote: https://rubygems.org/
|
3
|
+
specs:
|
4
|
+
builder (3.2.2)
|
5
|
+
faraday (0.9.1)
|
6
|
+
multipart-post (>= 1.2, < 3)
|
7
|
+
geminabox (0.12.4)
|
8
|
+
builder
|
9
|
+
faraday
|
10
|
+
httpclient (>= 2.2.7)
|
11
|
+
nesty
|
12
|
+
sinatra (>= 1.2.7)
|
13
|
+
httpclient (2.6.0.1)
|
14
|
+
minitest (5.6.1)
|
15
|
+
multipart-post (2.0.0)
|
16
|
+
nesty (1.0.2)
|
17
|
+
rack (1.6.1)
|
18
|
+
rack-protection (1.5.3)
|
19
|
+
rack
|
20
|
+
rake (10.4.2)
|
21
|
+
sinatra (1.4.6)
|
22
|
+
rack (~> 1.4)
|
23
|
+
rack-protection (~> 1.4)
|
24
|
+
tilt (>= 1.3, < 3)
|
25
|
+
tilt (2.0.1)
|
26
|
+
|
27
|
+
PLATFORMS
|
28
|
+
java
|
29
|
+
ruby
|
30
|
+
|
31
|
+
DEPENDENCIES
|
32
|
+
geminabox
|
33
|
+
minitest
|
34
|
+
rack
|
35
|
+
rake
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2015 orgar
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,47 @@
|
|
1
|
+
# Rack::Logstashwriter
|
2
|
+
|
3
|
+
[](https://travis-ci.org/kontera-technologies/rack-logstash-writer)
|
4
|
+
|
5
|
+
Rack adapter for sending events to logstash server.
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'rack-logstash-writer'
|
13
|
+
```
|
14
|
+
And then execute:
|
15
|
+
|
16
|
+
$ bundle
|
17
|
+
|
18
|
+
Or install it yourself as:
|
19
|
+
|
20
|
+
$ gem install rack-logstash-writer
|
21
|
+
|
22
|
+
## Usage
|
23
|
+
##### You can find it all in the examples directory
|
24
|
+
|
25
|
+
Add to the config.ru
|
26
|
+
|
27
|
+
```ruby
|
28
|
+
require 'rack/logstash-writer'
|
29
|
+
|
30
|
+
use Rack::LogstashWriter,{url: "tcp://localhost:5228"} # udp and files schemes are also avaliable.
|
31
|
+
|
32
|
+
use Rack::LogstashWriter , {url: "file:///home/org/Desktop/logsample", # required, udp and files schemes are also avaliable. no default values.
|
33
|
+
request_headers: {'head1'=>'head1'}, # optional, parameters to add to the report from the request headers. default nil
|
34
|
+
response_headers: {'head1'=>'head1'}, # optional, parameters to add to the report from the responce headers. default nil
|
35
|
+
statuses: [*(500..600)], # optional, send events to log stash only for those statuses. default [*(500..600)]
|
36
|
+
body_len: 50 # optional, include the first given chars from the body. default 1000
|
37
|
+
}
|
38
|
+
|
39
|
+
run Proc.new {[200, {"Content-Type" => "application/json"}, ['{ "message" : "Hello!" }']]}
|
40
|
+
```
|
41
|
+
## Contributing
|
42
|
+
|
43
|
+
1. Fork it ( https://github.com/[my-github-username]/rack-logstashwriter/fork )
|
44
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
45
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
46
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
47
|
+
5. Create a new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
require "rake/testtask"
|
2
|
+
|
3
|
+
Rake::TestTask.new do |t|
|
4
|
+
t.test_files = FileList['test/unit/*_tests.rb']
|
5
|
+
end
|
6
|
+
|
7
|
+
task default: [:test]
|
8
|
+
|
9
|
+
task :test do
|
10
|
+
"ruby test/unit/*.rb"
|
11
|
+
end
|
12
|
+
|
13
|
+
task :install do
|
14
|
+
system "gem build rack-logstash-writer.gemspec"
|
15
|
+
end
|
16
|
+
|
@@ -0,0 +1,46 @@
|
|
1
|
+
source 'https://rubygems.org'
|
2
|
+
|
3
|
+
gem "rack-logstash-writer"
|
4
|
+
|
5
|
+
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
6
|
+
gem 'rails', '4.2.1'
|
7
|
+
# Use sqlite3 as the database for Active Record
|
8
|
+
gem 'sqlite3'
|
9
|
+
# Use SCSS for stylesheets
|
10
|
+
gem 'sass-rails', '~> 5.0'
|
11
|
+
# Use Uglifier as compressor for JavaScript assets
|
12
|
+
gem 'uglifier', '>= 1.3.0'
|
13
|
+
# Use CoffeeScript for .coffee assets and views
|
14
|
+
gem 'coffee-rails', '~> 4.1.0'
|
15
|
+
# See https://github.com/rails/execjs#readme for more supported runtimes
|
16
|
+
# gem 'therubyracer', platforms: :ruby
|
17
|
+
|
18
|
+
# Use jquery as the JavaScript library
|
19
|
+
gem 'jquery-rails'
|
20
|
+
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
|
21
|
+
gem 'turbolinks'
|
22
|
+
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
|
23
|
+
gem 'jbuilder', '~> 2.0'
|
24
|
+
# bundle exec rake doc:rails generates the API under doc/api.
|
25
|
+
gem 'sdoc', '~> 0.4.0', group: :doc
|
26
|
+
|
27
|
+
# Use ActiveModel has_secure_password
|
28
|
+
# gem 'bcrypt', '~> 3.1.7'
|
29
|
+
|
30
|
+
# Use Unicorn as the app server
|
31
|
+
# gem 'unicorn'
|
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'
|
39
|
+
|
40
|
+
# Access an IRB console on exception pages or by using <%= console %> in views
|
41
|
+
gem 'web-console', '~> 2.0'
|
42
|
+
|
43
|
+
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
44
|
+
gem 'spring'
|
45
|
+
end
|
46
|
+
|
@@ -0,0 +1,155 @@
|
|
1
|
+
GEM
|
2
|
+
remote: https://rubygems.org/
|
3
|
+
specs:
|
4
|
+
actionmailer (4.2.1)
|
5
|
+
actionpack (= 4.2.1)
|
6
|
+
actionview (= 4.2.1)
|
7
|
+
activejob (= 4.2.1)
|
8
|
+
mail (~> 2.5, >= 2.5.4)
|
9
|
+
rails-dom-testing (~> 1.0, >= 1.0.5)
|
10
|
+
actionpack (4.2.1)
|
11
|
+
actionview (= 4.2.1)
|
12
|
+
activesupport (= 4.2.1)
|
13
|
+
rack (~> 1.6)
|
14
|
+
rack-test (~> 0.6.2)
|
15
|
+
rails-dom-testing (~> 1.0, >= 1.0.5)
|
16
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.1)
|
17
|
+
actionview (4.2.1)
|
18
|
+
activesupport (= 4.2.1)
|
19
|
+
builder (~> 3.1)
|
20
|
+
erubis (~> 2.7.0)
|
21
|
+
rails-dom-testing (~> 1.0, >= 1.0.5)
|
22
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.1)
|
23
|
+
activejob (4.2.1)
|
24
|
+
activesupport (= 4.2.1)
|
25
|
+
globalid (>= 0.3.0)
|
26
|
+
activemodel (4.2.1)
|
27
|
+
activesupport (= 4.2.1)
|
28
|
+
builder (~> 3.1)
|
29
|
+
activerecord (4.2.1)
|
30
|
+
activemodel (= 4.2.1)
|
31
|
+
activesupport (= 4.2.1)
|
32
|
+
arel (~> 6.0)
|
33
|
+
activesupport (4.2.1)
|
34
|
+
i18n (~> 0.7)
|
35
|
+
json (~> 1.7, >= 1.7.7)
|
36
|
+
minitest (~> 5.1)
|
37
|
+
thread_safe (~> 0.3, >= 0.3.4)
|
38
|
+
tzinfo (~> 1.1)
|
39
|
+
arel (6.0.0)
|
40
|
+
binding_of_caller (0.7.2)
|
41
|
+
debug_inspector (>= 0.0.1)
|
42
|
+
builder (3.2.2)
|
43
|
+
byebug (5.0.0)
|
44
|
+
columnize (= 0.9.0)
|
45
|
+
coffee-rails (4.1.0)
|
46
|
+
coffee-script (>= 2.2.0)
|
47
|
+
railties (>= 4.0.0, < 5.0)
|
48
|
+
coffee-script (2.4.1)
|
49
|
+
coffee-script-source
|
50
|
+
execjs
|
51
|
+
coffee-script-source (1.9.1.1)
|
52
|
+
columnize (0.9.0)
|
53
|
+
debug_inspector (0.0.2)
|
54
|
+
erubis (2.7.0)
|
55
|
+
execjs (2.5.2)
|
56
|
+
globalid (0.3.5)
|
57
|
+
activesupport (>= 4.1.0)
|
58
|
+
i18n (0.7.0)
|
59
|
+
jbuilder (2.2.16)
|
60
|
+
activesupport (>= 3.0.0, < 5)
|
61
|
+
multi_json (~> 1.2)
|
62
|
+
jquery-rails (4.0.3)
|
63
|
+
rails-dom-testing (~> 1.0)
|
64
|
+
railties (>= 4.2.0)
|
65
|
+
thor (>= 0.14, < 2.0)
|
66
|
+
json (1.8.2)
|
67
|
+
loofah (2.0.2)
|
68
|
+
nokogiri (>= 1.5.9)
|
69
|
+
mail (2.6.3)
|
70
|
+
mime-types (>= 1.16, < 3)
|
71
|
+
mime-types (2.6.1)
|
72
|
+
mini_portile (0.6.2)
|
73
|
+
minitest (5.7.0)
|
74
|
+
multi_json (1.11.0)
|
75
|
+
nokogiri (1.6.6.2)
|
76
|
+
mini_portile (~> 0.6.0)
|
77
|
+
rack (1.6.1)
|
78
|
+
rack-test (0.6.3)
|
79
|
+
rack (>= 1.0)
|
80
|
+
rails (4.2.1)
|
81
|
+
actionmailer (= 4.2.1)
|
82
|
+
actionpack (= 4.2.1)
|
83
|
+
actionview (= 4.2.1)
|
84
|
+
activejob (= 4.2.1)
|
85
|
+
activemodel (= 4.2.1)
|
86
|
+
activerecord (= 4.2.1)
|
87
|
+
activesupport (= 4.2.1)
|
88
|
+
bundler (>= 1.3.0, < 2.0)
|
89
|
+
railties (= 4.2.1)
|
90
|
+
sprockets-rails
|
91
|
+
rails-deprecated_sanitizer (1.0.3)
|
92
|
+
activesupport (>= 4.2.0.alpha)
|
93
|
+
rails-dom-testing (1.0.6)
|
94
|
+
activesupport (>= 4.2.0.beta, < 5.0)
|
95
|
+
nokogiri (~> 1.6.0)
|
96
|
+
rails-deprecated_sanitizer (>= 1.0.1)
|
97
|
+
rails-html-sanitizer (1.0.2)
|
98
|
+
loofah (~> 2.0)
|
99
|
+
railties (4.2.1)
|
100
|
+
actionpack (= 4.2.1)
|
101
|
+
activesupport (= 4.2.1)
|
102
|
+
rake (>= 0.8.7)
|
103
|
+
thor (>= 0.18.1, < 2.0)
|
104
|
+
rake (10.4.2)
|
105
|
+
rdoc (4.2.0)
|
106
|
+
sass (3.4.14)
|
107
|
+
sass-rails (5.0.3)
|
108
|
+
railties (>= 4.0.0, < 5.0)
|
109
|
+
sass (~> 3.1)
|
110
|
+
sprockets (>= 2.8, < 4.0)
|
111
|
+
sprockets-rails (>= 2.0, < 4.0)
|
112
|
+
tilt (~> 1.1)
|
113
|
+
sdoc (0.4.1)
|
114
|
+
json (~> 1.7, >= 1.7.7)
|
115
|
+
rdoc (~> 4.0)
|
116
|
+
spring (1.3.6)
|
117
|
+
sprockets (3.1.0)
|
118
|
+
rack (~> 1.0)
|
119
|
+
sprockets-rails (2.3.1)
|
120
|
+
actionpack (>= 3.0)
|
121
|
+
activesupport (>= 3.0)
|
122
|
+
sprockets (>= 2.8, < 4.0)
|
123
|
+
sqlite3 (1.3.10)
|
124
|
+
thor (0.19.1)
|
125
|
+
thread_safe (0.3.5)
|
126
|
+
tilt (1.4.1)
|
127
|
+
turbolinks (2.5.3)
|
128
|
+
coffee-rails
|
129
|
+
tzinfo (1.2.2)
|
130
|
+
thread_safe (~> 0.1)
|
131
|
+
uglifier (2.7.1)
|
132
|
+
execjs (>= 0.3.0)
|
133
|
+
json (>= 1.8.0)
|
134
|
+
web-console (2.1.2)
|
135
|
+
activemodel (>= 4.0)
|
136
|
+
binding_of_caller (>= 0.7.2)
|
137
|
+
railties (>= 4.0)
|
138
|
+
sprockets-rails (>= 2.0, < 4.0)
|
139
|
+
|
140
|
+
PLATFORMS
|
141
|
+
ruby
|
142
|
+
|
143
|
+
DEPENDENCIES
|
144
|
+
byebug
|
145
|
+
coffee-rails (~> 4.1.0)
|
146
|
+
jbuilder (~> 2.0)
|
147
|
+
jquery-rails
|
148
|
+
rails (= 4.2.1)
|
149
|
+
sass-rails (~> 5.0)
|
150
|
+
sdoc (~> 0.4.0)
|
151
|
+
spring
|
152
|
+
sqlite3
|
153
|
+
turbolinks
|
154
|
+
uglifier (>= 1.3.0)
|
155
|
+
web-console (~> 2.0)
|
@@ -0,0 +1,28 @@
|
|
1
|
+
== README
|
2
|
+
|
3
|
+
This README would normally document whatever steps are necessary to get the
|
4
|
+
application up and running.
|
5
|
+
|
6
|
+
Things you may want to cover:
|
7
|
+
|
8
|
+
* Ruby version
|
9
|
+
|
10
|
+
* System dependencies
|
11
|
+
|
12
|
+
* Configuration
|
13
|
+
|
14
|
+
* Database creation
|
15
|
+
|
16
|
+
* Database initialization
|
17
|
+
|
18
|
+
* How to run the test suite
|
19
|
+
|
20
|
+
* Services (job queues, cache servers, search engines, etc.)
|
21
|
+
|
22
|
+
* Deployment instructions
|
23
|
+
|
24
|
+
* ...
|
25
|
+
|
26
|
+
|
27
|
+
Please feel free to use a different markup language if you do not plan to run
|
28
|
+
<tt>rake doc:app</tt>.
|
File without changes
|
@@ -0,0 +1,16 @@
|
|
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, vendor/assets/javascripts,
|
5
|
+
// or any plugin's 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.
|
9
|
+
//
|
10
|
+
// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
|
11
|
+
// about supported directives.
|
12
|
+
//
|
13
|
+
//= require jquery
|
14
|
+
//= require jquery_ujs
|
15
|
+
//= require turbolinks
|
16
|
+
//= require_tree .
|
@@ -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, vendor/assets/stylesheets,
|
6
|
+
* or any plugin's 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 styles
|
10
|
+
* defined in the other CSS/SCSS files in this directory. It is generally better to create a new
|
11
|
+
* file per style scope.
|
12
|
+
*
|
13
|
+
*= require_tree .
|
14
|
+
*= require_self
|
15
|
+
*/
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,14 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>Blog</title>
|
5
|
+
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
|
6
|
+
<%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
|
7
|
+
<%= csrf_meta_tags %>
|
8
|
+
</head>
|
9
|
+
<body>
|
10
|
+
|
11
|
+
<%= yield %>
|
12
|
+
|
13
|
+
</body>
|
14
|
+
</html>
|
@@ -0,0 +1,29 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
require 'pathname'
|
3
|
+
|
4
|
+
# path to your application root.
|
5
|
+
APP_ROOT = Pathname.new File.expand_path('../../', __FILE__)
|
6
|
+
|
7
|
+
Dir.chdir APP_ROOT do
|
8
|
+
# This script is a starting point to setup your application.
|
9
|
+
# Add necessary setup steps to this file:
|
10
|
+
|
11
|
+
puts "== Installing dependencies =="
|
12
|
+
system "gem install bundler --conservative"
|
13
|
+
system "bundle check || bundle install"
|
14
|
+
|
15
|
+
# puts "\n== Copying sample files =="
|
16
|
+
# unless File.exist?("config/database.yml")
|
17
|
+
# system "cp config/database.yml.sample config/database.yml"
|
18
|
+
# end
|
19
|
+
|
20
|
+
puts "\n== Preparing database =="
|
21
|
+
system "bin/rake db:setup"
|
22
|
+
|
23
|
+
puts "\n== Removing old logs and tempfiles =="
|
24
|
+
system "rm -f log/*"
|
25
|
+
system "rm -rf tmp/cache"
|
26
|
+
|
27
|
+
puts "\n== Restarting application server =="
|
28
|
+
system "touch tmp/restart.txt"
|
29
|
+
end
|
@@ -0,0 +1,15 @@
|
|
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
|
+
if match = Bundler.default_lockfile.read.match(/^GEM$.*?^ (?: )*spring \((.*?)\)$.*?^$/m)
|
11
|
+
Gem.paths = { "GEM_PATH" => [Bundler.bundle_path.to_s, *Gem.path].uniq }
|
12
|
+
gem "spring", match[1]
|
13
|
+
require "spring/binstub"
|
14
|
+
end
|
15
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
require File.expand_path('../boot', __FILE__)
|
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
|
+
# Settings in config/environments/* take precedence over those specified here.
|
12
|
+
# Application configuration should go into files in config/initializers
|
13
|
+
# -- all .rb files in that directory are automatically loaded.
|
14
|
+
|
15
|
+
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
|
16
|
+
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
|
17
|
+
# config.time_zone = 'Central Time (US & Canada)'
|
18
|
+
|
19
|
+
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
20
|
+
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
21
|
+
# config.i18n.default_locale = :de
|
22
|
+
|
23
|
+
# Do not swallow errors in after_commit/after_rollback callbacks.
|
24
|
+
config.active_record.raise_in_transactional_callbacks = true
|
25
|
+
end
|
26
|
+
end
|
@@ -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: 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
|
@@ -0,0 +1,41 @@
|
|
1
|
+
Rails.application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb.
|
3
|
+
|
4
|
+
# In the development environment your application's code is reloaded on
|
5
|
+
# every request. This slows down response time but is perfect for development
|
6
|
+
# since you don't have to restart the web server when you make code changes.
|
7
|
+
config.cache_classes = false
|
8
|
+
|
9
|
+
# Do not eager load code on boot.
|
10
|
+
config.eager_load = false
|
11
|
+
|
12
|
+
# Show full error reports and disable caching.
|
13
|
+
config.consider_all_requests_local = true
|
14
|
+
config.action_controller.perform_caching = false
|
15
|
+
|
16
|
+
# Don't care if the mailer can't send.
|
17
|
+
config.action_mailer.raise_delivery_errors = false
|
18
|
+
|
19
|
+
# Print deprecation notices to the Rails logger.
|
20
|
+
config.active_support.deprecation = :log
|
21
|
+
|
22
|
+
# Raise an error on page load if there are pending migrations.
|
23
|
+
config.active_record.migration_error = :page_load
|
24
|
+
|
25
|
+
# Debug mode disables concatenation and preprocessing of assets.
|
26
|
+
# This option may cause significant delays in view rendering with a large
|
27
|
+
# number of complex assets.
|
28
|
+
config.assets.debug = true
|
29
|
+
|
30
|
+
# Asset digests allow you to set far-future HTTP expiration dates on all assets,
|
31
|
+
# yet still be able to expire them through the digest params.
|
32
|
+
config.assets.digest = true
|
33
|
+
|
34
|
+
# Adds additional error checking when serving assets at runtime.
|
35
|
+
# Checks for improperly declared sprockets dependencies.
|
36
|
+
# Raises helpful error messages.
|
37
|
+
config.assets.raise_runtime_errors = true
|
38
|
+
|
39
|
+
# Raises error for missing translations
|
40
|
+
# config.action_view.raise_on_missing_translations = true
|
41
|
+
end
|