orats 5.0.2 → 5.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0d7e5aa5200d6a82f91f806a1b51e71686d0b2fd
4
- data.tar.gz: 97bcc8ad2a1d4ec87a6e70766fb4235f64105b95
3
+ metadata.gz: c7c876d02dca8517be317f10f0112a67dda8129d
4
+ data.tar.gz: c94d98c498563ecc3498e39f7680600342e9392f
5
5
  SHA512:
6
- metadata.gz: 2ea921eeeaee98d57d92f785539b9da667dda72a31637b2c7a670785c55a25c6b53b7b4fa8cff2fa075aa334b51290f909a4f082e9838083c7bdb1ed986b796b
7
- data.tar.gz: e2c5a730adaa3e5cba7d8e65f4f86e5d7828f555392c7058400830a23436434cea20149617faa7c3a985c632761cfc56f0cdb75b225ce609a6c4f92c749b14ef
6
+ metadata.gz: 0b1105a104c18de32733948292b1629c71d8981f38ef63648cc7867002b05d7b520c97bd73459a0315c16ac713d2eaaa7c864eb51f4478798609d310a04cd45a
7
+ data.tar.gz: b4bf8bd14171a0b0b867d20d48caa6f956d95371e9376c28f776310b16b04aacfb047e8c02b9416f8f5856fe45a4eead186f4e100c87059fc5767f1787cbe098
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## orats 5.0.3 (December 21, 2016)
2
+
3
+ - Update Rails to `5.0.1`
4
+ - Update Sidekiq to `4.2.x`
5
+ - Update Font Awesome to `4.7.x`
6
+
1
7
  ## orats 5.0.2 (July 11, 2016)
2
8
 
3
9
  - Fix `Dockerfile` to use orats_base not my_dockerized_app
data/README.md CHANGED
@@ -178,7 +178,7 @@ cp -r /tmp/orats/lib/orats/templates/base /tmp/foo_bar
178
178
  # Swap a few custom values into the base project.
179
179
  find /tmp/foo_bar -type f -exec sed -i -e 's/OratsBase/FooBar/g' {} \;
180
180
  find /tmp/foo_bar -type f -exec sed -i -e 's/orats_base/foo_bar/g' {} \;
181
- find /tmp/foo_bar -type f -exec sed -i -e 's/VERSION/5.0.0/g' {} \;
181
+ find /tmp/foo_bar -type f -exec sed -i -e 's/VERSION/5.0.3/g' {} \;
182
182
 
183
183
  # Rename the example .env file since `.env` is git ignored.
184
184
  mv /tmp/orats/.env.example /tmp/orats/.env
@@ -1,7 +1,7 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  # Looking to use the Edge version? gem 'rails', github: 'rails/rails'
4
- gem 'rails', '~> 5.0.0'
4
+ gem 'rails', '~> 5.0.1'
5
5
 
6
6
  # Use Puma as the app server
7
7
  gem 'puma', '~> 3.0'
@@ -19,7 +19,7 @@ gem 'pg', '~> 0.18'
19
19
  gem 'redis-rails', '~> 5.0.0.pre'
20
20
 
21
21
  # Use Sidekiq as a background job processor through Active Job
22
- gem 'sidekiq', '~> 4.1'
22
+ gem 'sidekiq', '~> 4.2'
23
23
 
24
24
  # Use Clockwork for recurring background tasks without needing cron
25
25
  # gem 'clockwork', '~> 2.0'
@@ -43,7 +43,7 @@ gem 'turbolinks', '~> 5'
43
43
  gem 'bootstrap-sass', '~> 3.3'
44
44
 
45
45
  # Use Font Awesome Rails for Font Awesome icons
46
- gem 'font-awesome-rails', '~> 4.6'
46
+ gem 'font-awesome-rails', '~> 4.7'
47
47
 
48
48
  group :development, :test do
49
49
  # Call 'byebug' anywhere in your code to drop into a debugger console
@@ -55,7 +55,7 @@ group :development do
55
55
  gem 'rack-mini-profiler', '~> 0.10'
56
56
 
57
57
  # Access an IRB console on exception pages or by using <%= console %>
58
- gem 'web-console'
58
+ gem 'web-console', '~> 3.3.0'
59
59
 
60
60
  # Get notified of file changes. Read more: https://github.com/guard/listen
61
61
  gem 'listen', '~> 3.0.5'
@@ -1,66 +1,66 @@
1
1
  GEM
2
2
  remote: https://rubygems.org/
3
3
  specs:
4
- actioncable (5.0.0)
5
- actionpack (= 5.0.0)
4
+ actioncable (5.0.1)
5
+ actionpack (= 5.0.1)
6
6
  nio4r (~> 1.2)
7
7
  websocket-driver (~> 0.6.1)
8
- actionmailer (5.0.0)
9
- actionpack (= 5.0.0)
10
- actionview (= 5.0.0)
11
- activejob (= 5.0.0)
8
+ actionmailer (5.0.1)
9
+ actionpack (= 5.0.1)
10
+ actionview (= 5.0.1)
11
+ activejob (= 5.0.1)
12
12
  mail (~> 2.5, >= 2.5.4)
13
13
  rails-dom-testing (~> 2.0)
14
- actionpack (5.0.0)
15
- actionview (= 5.0.0)
16
- activesupport (= 5.0.0)
14
+ actionpack (5.0.1)
15
+ actionview (= 5.0.1)
16
+ activesupport (= 5.0.1)
17
17
  rack (~> 2.0)
18
18
  rack-test (~> 0.6.3)
19
19
  rails-dom-testing (~> 2.0)
20
20
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
21
- actionview (5.0.0)
22
- activesupport (= 5.0.0)
21
+ actionview (5.0.1)
22
+ activesupport (= 5.0.1)
23
23
  builder (~> 3.1)
24
24
  erubis (~> 2.7.0)
25
25
  rails-dom-testing (~> 2.0)
26
26
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
27
- activejob (5.0.0)
28
- activesupport (= 5.0.0)
27
+ activejob (5.0.1)
28
+ activesupport (= 5.0.1)
29
29
  globalid (>= 0.3.6)
30
- activemodel (5.0.0)
31
- activesupport (= 5.0.0)
32
- activerecord (5.0.0)
33
- activemodel (= 5.0.0)
34
- activesupport (= 5.0.0)
30
+ activemodel (5.0.1)
31
+ activesupport (= 5.0.1)
32
+ activerecord (5.0.1)
33
+ activemodel (= 5.0.1)
34
+ activesupport (= 5.0.1)
35
35
  arel (~> 7.0)
36
- activesupport (5.0.0)
36
+ activesupport (5.0.1)
37
37
  concurrent-ruby (~> 1.0, >= 1.0.2)
38
38
  i18n (~> 0.7)
39
39
  minitest (~> 5.1)
40
40
  tzinfo (~> 1.1)
41
- arel (7.0.0)
42
- autoprefixer-rails (6.3.7)
41
+ arel (7.1.4)
42
+ autoprefixer-rails (6.5.4)
43
43
  execjs
44
- bootstrap-sass (3.3.6)
44
+ bootstrap-sass (3.3.7)
45
45
  autoprefixer-rails (>= 5.2.1)
46
46
  sass (>= 3.3.4)
47
47
  builder (3.2.2)
48
- byebug (9.0.5)
49
- concurrent-ruby (1.0.2)
50
- connection_pool (2.2.0)
48
+ byebug (9.0.6)
49
+ concurrent-ruby (1.0.3)
50
+ connection_pool (2.2.1)
51
51
  debug_inspector (0.0.2)
52
52
  erubis (2.7.0)
53
53
  execjs (2.7.0)
54
- ffi (1.9.12)
55
- font-awesome-rails (4.6.3.1)
54
+ ffi (1.9.14)
55
+ font-awesome-rails (4.7.0.1)
56
56
  railties (>= 3.2, < 5.1)
57
- globalid (0.3.6)
57
+ globalid (0.3.7)
58
58
  activesupport (>= 4.1.0)
59
59
  i18n (0.7.0)
60
- jbuilder (2.5.0)
60
+ jbuilder (2.6.1)
61
61
  activesupport (>= 3.0.0, < 5.1)
62
62
  multi_json (~> 1.2)
63
- jquery-rails (4.1.1)
63
+ jquery-rails (4.2.1)
64
64
  rails-dom-testing (>= 1, < 3)
65
65
  railties (>= 4.2.0)
66
66
  thor (>= 0.14, < 2.0)
@@ -76,96 +76,98 @@ GEM
76
76
  mime-types-data (~> 3.2015)
77
77
  mime-types-data (3.2016.0521)
78
78
  mini_portile2 (2.1.0)
79
- minitest (5.9.0)
79
+ minitest (5.10.1)
80
80
  multi_json (1.12.1)
81
81
  nio4r (1.2.1)
82
- nokogiri (1.6.8)
82
+ nokogiri (1.6.8.1)
83
83
  mini_portile2 (~> 2.1.0)
84
- pkg-config (~> 1.1.7)
85
- pg (0.18.4)
86
- pkg-config (1.1.7)
87
- puma (3.4.0)
84
+ pg (0.19.0)
85
+ puma (3.6.2)
88
86
  rack (2.0.1)
89
87
  rack-mini-profiler (0.10.1)
90
88
  rack (>= 1.2.0)
89
+ rack-protection (1.5.3)
90
+ rack
91
91
  rack-test (0.6.3)
92
92
  rack (>= 1.0)
93
93
  rack-timeout (0.4.2)
94
- rails (5.0.0)
95
- actioncable (= 5.0.0)
96
- actionmailer (= 5.0.0)
97
- actionpack (= 5.0.0)
98
- actionview (= 5.0.0)
99
- activejob (= 5.0.0)
100
- activemodel (= 5.0.0)
101
- activerecord (= 5.0.0)
102
- activesupport (= 5.0.0)
94
+ rails (5.0.1)
95
+ actioncable (= 5.0.1)
96
+ actionmailer (= 5.0.1)
97
+ actionpack (= 5.0.1)
98
+ actionview (= 5.0.1)
99
+ activejob (= 5.0.1)
100
+ activemodel (= 5.0.1)
101
+ activerecord (= 5.0.1)
102
+ activesupport (= 5.0.1)
103
103
  bundler (>= 1.3.0, < 2.0)
104
- railties (= 5.0.0)
104
+ railties (= 5.0.1)
105
105
  sprockets-rails (>= 2.0.0)
106
106
  rails-dom-testing (2.0.1)
107
107
  activesupport (>= 4.2.0, < 6.0)
108
108
  nokogiri (~> 1.6.0)
109
109
  rails-html-sanitizer (1.0.3)
110
110
  loofah (~> 2.0)
111
- railties (5.0.0)
112
- actionpack (= 5.0.0)
113
- activesupport (= 5.0.0)
111
+ railties (5.0.1)
112
+ actionpack (= 5.0.1)
113
+ activesupport (= 5.0.1)
114
114
  method_source
115
115
  rake (>= 0.8.7)
116
116
  thor (>= 0.18.1, < 2.0)
117
- rake (11.2.2)
118
- rb-fsevent (0.9.7)
117
+ rake (12.0.0)
118
+ rb-fsevent (0.9.8)
119
119
  rb-inotify (0.9.7)
120
120
  ffi (>= 0.5.0)
121
- redis (3.3.0)
122
- redis-actionpack (5.0.0)
123
- actionpack (>= 4.0.0, < 6)
124
- redis-rack (~> 2.0.0.pre)
125
- redis-store (~> 1.2.0.pre)
121
+ redis (3.3.2)
122
+ redis-actionpack (5.0.1)
123
+ actionpack (>= 4.0, < 6)
124
+ redis-rack (>= 1, < 3)
125
+ redis-store (>= 1.1.0, < 1.4.0)
126
126
  redis-activesupport (5.0.1)
127
127
  activesupport (>= 3, < 6)
128
128
  redis-store (~> 1.2.0)
129
- redis-rack (2.0.0.pre)
130
- rack (> 1.5, < 3)
131
- redis-store (~> 1.2.0.pre)
129
+ redis-rack (2.0.0)
130
+ rack (~> 2.0)
131
+ redis-store (~> 1.2.0)
132
132
  redis-rails (5.0.1)
133
133
  redis-actionpack (~> 5.0.0)
134
134
  redis-activesupport (~> 5.0.0)
135
135
  redis-store (~> 1.2.0)
136
136
  redis-store (1.2.0)
137
137
  redis (>= 2.2)
138
- sass (3.4.22)
139
- sass-rails (5.0.5)
138
+ sass (3.4.23)
139
+ sass-rails (5.0.6)
140
140
  railties (>= 4.0.0, < 6)
141
141
  sass (~> 3.1)
142
142
  sprockets (>= 2.8, < 4.0)
143
143
  sprockets-rails (>= 2.0, < 4.0)
144
144
  tilt (>= 1.1, < 3)
145
- sidekiq (4.1.2)
145
+ sidekiq (4.2.7)
146
146
  concurrent-ruby (~> 1.0)
147
147
  connection_pool (~> 2.2, >= 2.2.0)
148
+ rack-protection (>= 1.5.0)
148
149
  redis (~> 3.2, >= 3.2.1)
149
- spring (1.7.2)
150
- spring-watcher-listen (2.0.0)
150
+ spring (2.0.0)
151
+ activesupport (>= 4.2)
152
+ spring-watcher-listen (2.0.1)
151
153
  listen (>= 2.7, < 4.0)
152
- spring (~> 1.2)
153
- sprockets (3.6.3)
154
+ spring (>= 1.2, < 3.0)
155
+ sprockets (3.7.1)
154
156
  concurrent-ruby (~> 1.0)
155
157
  rack (> 1, < 3)
156
- sprockets-rails (3.1.1)
158
+ sprockets-rails (3.2.0)
157
159
  actionpack (>= 4.0)
158
160
  activesupport (>= 4.0)
159
161
  sprockets (>= 3.0.0)
160
- thor (0.19.1)
162
+ thor (0.19.4)
161
163
  thread_safe (0.3.5)
162
164
  tilt (2.0.5)
163
- turbolinks (5.0.0)
165
+ turbolinks (5.0.1)
164
166
  turbolinks-source (~> 5)
165
167
  turbolinks-source (5.0.0)
166
168
  tzinfo (1.2.2)
167
169
  thread_safe (~> 0.1)
168
- uglifier (3.0.0)
170
+ uglifier (3.0.4)
169
171
  execjs (>= 0.3.0, < 3)
170
172
  web-console (3.3.1)
171
173
  actionview (>= 5.0)
@@ -182,7 +184,7 @@ PLATFORMS
182
184
  DEPENDENCIES
183
185
  bootstrap-sass (~> 3.3)
184
186
  byebug
185
- font-awesome-rails (~> 4.6)
187
+ font-awesome-rails (~> 4.7)
186
188
  jbuilder (~> 2.5)
187
189
  jquery-rails
188
190
  listen (~> 3.0.5)
@@ -190,16 +192,16 @@ DEPENDENCIES
190
192
  puma (~> 3.0)
191
193
  rack-mini-profiler (~> 0.10)
192
194
  rack-timeout (~> 0.4)
193
- rails (~> 5.0.0)
195
+ rails (~> 5.0.1)
194
196
  redis-rails (~> 5.0.0.pre)
195
197
  sass-rails (~> 5.0)
196
- sidekiq (~> 4.1)
198
+ sidekiq (~> 4.2)
197
199
  spring
198
200
  spring-watcher-listen (~> 2.0.0)
199
201
  turbolinks (~> 5)
200
202
  tzinfo-data
201
203
  uglifier (>= 1.3.0)
202
- web-console
204
+ web-console (~> 3.3.0)
203
205
 
204
206
  BUNDLED WITH
205
207
  1.12.5
data/lib/orats/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  # set the version of this gem
2
2
  module Orats
3
- VERSION = '5.0.2'.freeze
3
+ VERSION = '5.0.3'.freeze
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: orats
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.2
4
+ version: 5.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nick Janetakis
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-07-12 00:00:00.000000000 Z
11
+ date: 2016-12-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor