helena_administration 0.3.4 → 1.0.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.
Files changed (52) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +14 -9
  3. data/.travis.yml +13 -3
  4. data/Gemfile +1 -1
  5. data/Gemfile.lock +175 -174
  6. data/MIT-LICENSE +1 -1
  7. data/README.md +21 -18
  8. data/Rakefile +1 -1
  9. data/app/assets/javascripts/helena_administration.js.coffee +0 -1
  10. data/app/assets/stylesheets/_layout.sass +3 -14
  11. data/app/assets/stylesheets/_variables.sass +13 -13
  12. data/app/assets/stylesheets/helena_administration.css.sass +1 -3
  13. data/app/controllers/helena_administration/application_controller.rb +1 -0
  14. data/app/controllers/helena_administration/question_groups_controller.rb +17 -11
  15. data/app/controllers/helena_administration/versions_controller.rb +10 -6
  16. data/app/views/helena_administration/application/{_flash_messages.html.haml → _flash_messages.html.slim} +1 -1
  17. data/app/views/helena_administration/application/_header.html.slim +11 -15
  18. data/app/views/helena_administration/layouts/application.html.slim +1 -1
  19. data/app/views/helena_administration/question_groups/show.html.slim +18 -18
  20. data/app/views/helena_administration/questions/_sub_questions.html.slim +1 -1
  21. data/app/views/helena_administration/questions/show.html.slim +14 -14
  22. data/app/views/helena_administration/surveys/index.html.slim +5 -5
  23. data/app/views/helena_administration/surveys/show.html.slim +29 -29
  24. data/app/views/helena_administration/versions/show.html.slim +24 -24
  25. data/app/views/layouts/helena_administration/application.html.slim +1 -1
  26. data/config/locales/en.yml +11 -0
  27. data/helena_administration.gemspec +7 -8
  28. data/lib/helena_administration/engine.rb +6 -5
  29. data/lib/helena_administration/version.rb +1 -1
  30. data/lib/helena_administration.rb +2 -2
  31. data/spec/controllers/sessions_controller_spec.rb +4 -4
  32. data/spec/dummy/Rakefile +1 -1
  33. data/spec/dummy/config/application.rb +1 -1
  34. data/spec/dummy/config/boot.rb +2 -2
  35. data/spec/dummy/config/environment.rb +1 -1
  36. data/spec/dummy/config/environments/test.rb +1 -1
  37. data/spec/dummy/config/initializers/assets.rb +1 -1
  38. data/spec/dummy/config.ru +1 -1
  39. data/spec/features/dashboard/index_spec.rb +1 -1
  40. data/spec/features/question_groups/manage_question_groups_spec.rb +1 -1
  41. data/spec/features/questions/manage_questions_spec.rb +2 -2
  42. data/spec/features/sessions/manage_sessions_spec.rb +1 -1
  43. data/spec/features/surveys/manage_survey_spec.rb +2 -2
  44. data/spec/features/versions/manage_version_spec.rb +33 -3
  45. data/spec/helpers/applicatin_helper_spec.rb +1 -1
  46. data/spec/spec_helper.rb +1 -1
  47. data/spec/support/rails_compatibility.rb +1 -1
  48. metadata +35 -53
  49. data/app/assets/javascripts/polyfills.js +0 -10
  50. data/spec/dummy/config/initializers/backtrace_silencers.rb +0 -7
  51. data/spec/dummy/config/initializers/inflections.rb +0 -16
  52. data/spec/dummy/config/initializers/mime_types.rb +0 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4c986ee5c0a3057f2fb4af474d37e1e503ed1647
4
- data.tar.gz: f21d2639d664d440c7f2ae3605205bc2a9d4f790
3
+ metadata.gz: 2e3a8a945f4915bef1178571c1d258b1d685d4c3
4
+ data.tar.gz: ed6457dcc62e066d1e1df7a138eea4298cbdf1a8
5
5
  SHA512:
6
- metadata.gz: 7a88c84af4b3e278e3df67d59927fdb3ebbeaf1e8f0aabf666d10122221c0cf594c153721bd3e854031f83fb0e4c00db484ede7a974b1da2375f03626f07e67e
7
- data.tar.gz: 3d9a3be512654b879c2cc2ccb54f75f3c2abbdb38c908309ef072b2e366300140d92629cff2b3c8c3a1938bd667f8b6bc78c32bc4dcc984e17d5319bb2f67bba
6
+ metadata.gz: 573280af18f3ea10a3eae7ed60576e35f4f8278fe4498ba7441f94c9e3bc7ab492ff4c6479ee2657ceebad2e652923dd83d3632cc1d7e2b999cc60e29d90d409
7
+ data.tar.gz: ee79246694e756eb146e3a5b0a8c8a09fcb3fccf9933398151ecde3e7c88e4d451bd08019a15812a24944f3a125859ba137be13b1eb63f195b50077b84310750
data/.rubocop.yml CHANGED
@@ -1,15 +1,9 @@
1
1
  AllCops:
2
- Include:
3
- - '**/Rakefile'
4
- - '**/config.ru'
5
- - '**/Gemfile'
6
2
  Exclude:
7
- - helena_administration.gemspec
8
3
  - bin/**
9
- - spec/**/*
10
- - db/migrate/**/*
11
- - db/seeds.rb
12
- - db/seeds/**/*
4
+ - spec/dummy/bin/**
5
+ - helena.gemspec
6
+ - spec/dummy/config/initializers/secret_token.rb
13
7
  Documentation:
14
8
  Enabled: false
15
9
  LineLength:
@@ -17,3 +11,14 @@ LineLength:
17
11
  Max: 160
18
12
  AbcSize:
19
13
  Enabled: false
14
+ FrozenStringLiteralComment:
15
+ Enabled: false
16
+ Metrics/BlockLength:
17
+ ExcludedMethods:
18
+ - describe
19
+ - context
20
+ - scenario
21
+ - it
22
+ - feature
23
+ Exclude:
24
+ - "*.gemspec"
data/.travis.yml CHANGED
@@ -1,11 +1,21 @@
1
+ env:
2
+ global:
3
+ - CC_TEST_REPORTER_ID=4d774aeb9d1846c9537d5c01ddf1a627976e9338d8de3588e0db9195eee62ab7
4
+
1
5
  language: ruby
2
6
  rvm:
3
- - 2.0
4
- - 2.1
5
- - 2.2
7
+ - 2.5.1
6
8
 
7
9
  services:
8
10
  - mongodb
9
11
 
10
12
  cache: bundler
11
13
  sudo: false
14
+
15
+ before_script:
16
+ - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
17
+ - chmod +x ./cc-test-reporter
18
+ - ./cc-test-reporter before-build
19
+
20
+ after_script:
21
+ - ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
data/Gemfile CHANGED
@@ -10,7 +10,6 @@ gemspec
10
10
  # Git. Remember to move these dependencies to your gemspec before releasing
11
11
  # your gem to rubygems.org.
12
12
 
13
- gem 'compass-h5bp', group: :assets
14
13
  group :development, :test do
15
14
  gem 'better_errors'
16
15
  gem 'binding_of_caller'
@@ -18,6 +17,7 @@ group :development, :test do
18
17
  gem 'dotenv-rails'
19
18
  gem 'factory_bot_rails'
20
19
  gem 'faker'
20
+ # gem 'helena', path: '../helena/' # git: 'https://github.com/gurix/helena.git'
21
21
  gem 'launchy'
22
22
  gem 'mongoid-rspec'
23
23
  gem 'pry'
data/Gemfile.lock CHANGED
@@ -1,95 +1,98 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- helena_administration (0.3.4)
5
- bootstrap-sass (~> 3.2)
4
+ helena_administration (1.0.0)
5
+ bootstrap (~> 4.1.3)
6
6
  breadcrumbs_on_rails (>= 3.0.1)
7
7
  codemirror-rails (>= 5)
8
8
  coffee-rails (~> 4.1)
9
- font-awesome-sass (~> 4.4)
9
+ font-awesome-sass
10
10
  haml-rails (>= 0.5)
11
- helena (~> 1.3)
12
- html5-rails (~> 0.1)
11
+ helena (~> 2.0)
13
12
  jquery-rails (~> 4)
14
13
  kaminari-actionview
15
14
  kaminari-mongoid
16
15
  mongoid (>= 4.0)
17
16
  mongoid-simple-tags (~> 0.1)
18
- mongoid_orderable (~> 4.1)
17
+ mongoid_orderable (~> 5.2)
19
18
  rails (>= 4.2)
20
19
  rails-i18n
21
20
  responders (~> 2.0)
22
21
  sass-rails (~> 5.0)
23
- simple_form (~> 3.2)
22
+ simple_form (~> 4)
24
23
  slim-rails (>= 3.0)
25
24
 
26
25
  GEM
27
26
  remote: https://rubygems.org/
28
27
  specs:
29
- actioncable (5.1.4)
30
- actionpack (= 5.1.4)
28
+ actioncable (5.2.2)
29
+ actionpack (= 5.2.2)
31
30
  nio4r (~> 2.0)
32
- websocket-driver (~> 0.6.1)
33
- actionmailer (5.1.4)
34
- actionpack (= 5.1.4)
35
- actionview (= 5.1.4)
36
- activejob (= 5.1.4)
31
+ websocket-driver (>= 0.6.1)
32
+ actionmailer (5.2.2)
33
+ actionpack (= 5.2.2)
34
+ actionview (= 5.2.2)
35
+ activejob (= 5.2.2)
37
36
  mail (~> 2.5, >= 2.5.4)
38
37
  rails-dom-testing (~> 2.0)
39
- actionpack (5.1.4)
40
- actionview (= 5.1.4)
41
- activesupport (= 5.1.4)
38
+ actionpack (5.2.2)
39
+ actionview (= 5.2.2)
40
+ activesupport (= 5.2.2)
42
41
  rack (~> 2.0)
43
42
  rack-test (>= 0.6.3)
44
43
  rails-dom-testing (~> 2.0)
45
44
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
46
- actionview (5.1.4)
47
- activesupport (= 5.1.4)
45
+ actionview (5.2.2)
46
+ activesupport (= 5.2.2)
48
47
  builder (~> 3.1)
49
48
  erubi (~> 1.4)
50
49
  rails-dom-testing (~> 2.0)
51
50
  rails-html-sanitizer (~> 1.0, >= 1.0.3)
52
- activejob (5.1.4)
53
- activesupport (= 5.1.4)
51
+ activejob (5.2.2)
52
+ activesupport (= 5.2.2)
54
53
  globalid (>= 0.3.6)
55
- activemodel (5.1.4)
56
- activesupport (= 5.1.4)
57
- activerecord (5.1.4)
58
- activemodel (= 5.1.4)
59
- activesupport (= 5.1.4)
60
- arel (~> 8.0)
61
- activesupport (5.1.4)
54
+ activemodel (5.2.2)
55
+ activesupport (= 5.2.2)
56
+ activerecord (5.2.2)
57
+ activemodel (= 5.2.2)
58
+ activesupport (= 5.2.2)
59
+ arel (>= 9.0)
60
+ activestorage (5.2.2)
61
+ actionpack (= 5.2.2)
62
+ activerecord (= 5.2.2)
63
+ marcel (~> 0.3.1)
64
+ activesupport (5.2.2)
62
65
  concurrent-ruby (~> 1.0, >= 1.0.2)
63
- i18n (~> 0.7)
66
+ i18n (>= 0.7, < 2)
64
67
  minitest (~> 5.1)
65
68
  tzinfo (~> 1.1)
66
69
  addressable (2.5.2)
67
70
  public_suffix (>= 2.0.2, < 4.0)
68
- arel (8.0.0)
69
- autoprefixer-rails (7.1.6)
71
+ arel (9.0.0)
72
+ autoprefixer-rails (9.4.4)
70
73
  execjs
71
- better_errors (2.4.0)
74
+ better_errors (2.5.0)
72
75
  coderay (>= 1.0.0)
73
76
  erubi (>= 1.0.0)
74
77
  rack (>= 0.9.0)
75
- binding_of_caller (0.7.3)
78
+ binding_of_caller (0.8.0)
76
79
  debug_inspector (>= 0.0.1)
77
- bootstrap-sass (3.3.7)
78
- autoprefixer-rails (>= 5.2.1)
79
- sass (>= 3.3.4)
80
+ bootstrap (4.1.3)
81
+ autoprefixer-rails (>= 6.0.3)
82
+ popper_js (>= 1.12.9, < 2)
83
+ sass (>= 3.5.2)
80
84
  breadcrumbs_on_rails (3.0.1)
81
- browser (2.5.2)
82
- bson (4.2.2)
85
+ bson (4.3.0)
83
86
  builder (3.2.3)
84
- byebug (9.1.0)
85
- capybara (2.15.4)
87
+ byebug (10.0.2)
88
+ capybara (3.11.1)
86
89
  addressable
87
90
  mini_mime (>= 0.1.3)
88
- nokogiri (>= 1.3.3)
89
- rack (>= 1.0.0)
90
- rack-test (>= 0.5.4)
91
- xpath (~> 2.0)
92
- chunky_png (1.3.8)
91
+ nokogiri (~> 1.8)
92
+ rack (>= 1.6.0)
93
+ rack-test (>= 0.6.3)
94
+ regexp_parser (~> 1.2)
95
+ xpath (~> 3.2)
93
96
  codemirror-rails (5.16.0)
94
97
  railties (>= 3.0, < 6.0)
95
98
  coderay (1.1.2)
@@ -100,35 +103,28 @@ GEM
100
103
  coffee-script-source
101
104
  execjs
102
105
  coffee-script-source (1.12.2)
103
- compass (0.12.2)
104
- chunky_png (~> 1.2)
105
- fssm (>= 0.2.7)
106
- sass (~> 3.1)
107
- compass-h5bp (0.1.2)
108
- compass
109
- concurrent-ruby (1.0.5)
110
- crass (1.0.2)
106
+ concurrent-ruby (1.1.4)
107
+ crass (1.0.4)
111
108
  debug_inspector (0.0.3)
112
109
  diff-lcs (1.3)
113
- docile (1.1.5)
114
- dotenv (2.2.1)
115
- dotenv-rails (2.2.1)
116
- dotenv (= 2.2.1)
117
- railties (>= 3.2, < 5.2)
118
- erubi (1.7.0)
110
+ docile (1.3.1)
111
+ dotenv (2.5.0)
112
+ dotenv-rails (2.5.0)
113
+ dotenv (= 2.5.0)
114
+ railties (>= 3.2, < 6.0)
115
+ erubi (1.8.0)
119
116
  erubis (2.7.0)
120
117
  execjs (2.7.0)
121
- factory_bot (4.8.2)
118
+ factory_bot (4.11.1)
122
119
  activesupport (>= 3.0.0)
123
- factory_bot_rails (4.8.2)
124
- factory_bot (~> 4.8.2)
120
+ factory_bot_rails (4.11.1)
121
+ factory_bot (~> 4.11.1)
125
122
  railties (>= 3.0.0)
126
- faker (1.8.4)
127
- i18n (~> 0.5)
128
- ffi (1.9.18)
129
- font-awesome-sass (4.7.0)
130
- sass (>= 3.2)
131
- fssm (0.2.10)
123
+ faker (1.9.1)
124
+ i18n (>= 0.7)
125
+ ffi (1.9.25)
126
+ font-awesome-sass (5.6.1)
127
+ sassc (>= 1.11)
132
128
  globalid (0.4.1)
133
129
  activesupport (>= 4.2.0)
134
130
  haml (5.0.4)
@@ -140,33 +136,25 @@ GEM
140
136
  haml (>= 4.0.6, < 6.0)
141
137
  html2haml (>= 1.0.1)
142
138
  railties (>= 4.0.1)
143
- helena (1.3.0)
144
- bootstrap-sass (~> 3.2)
145
- browser (~> 2.0)
146
- haml-rails (~> 1.0)
147
- jquery-rails (~> 4.0)
139
+ helena (2.0.0)
148
140
  mongoid (>= 4.0)
149
141
  mongoid-simple-tags (>= 0.1.3)
150
- mongoid-tree (~> 2.0)
151
- mongoid_orderable (~> 4.1)
142
+ mongoid-tree (>= 2.0)
143
+ mongoid_orderable (>= 5.2)
152
144
  rails (>= 4.2)
153
145
  rails-i18n (>= 4.0)
154
- responders (~> 2.0)
155
- sass-rails (~> 5.0)
156
- simple_form (~> 3.2)
157
- slim (~> 3.0)
146
+ responders (>= 2.0)
147
+ sass-rails (>= 5.0)
148
+ simple_form (>= 4)
149
+ slim (>= 3.0)
158
150
  html2haml (2.2.0)
159
151
  erubis (~> 2.7.0)
160
152
  haml (>= 4.0, < 6)
161
153
  nokogiri (>= 1.6.0)
162
154
  ruby_parser (~> 3.5)
163
- html5-rails (0.1.0)
164
- jquery-rails (>= 2.0)
165
- railties (>= 3.2)
166
- thor (~> 0.14)
167
- i18n (0.9.1)
155
+ i18n (1.5.1)
168
156
  concurrent-ruby (~> 1.0)
169
- jquery-rails (4.3.1)
157
+ jquery-rails (4.3.3)
170
158
  rails-dom-testing (>= 1, < 3)
171
159
  railties (>= 4.2.0)
172
160
  thor (>= 0.14, < 2.0)
@@ -180,130 +168,144 @@ GEM
180
168
  mongoid
181
169
  launchy (2.4.3)
182
170
  addressable (~> 2.3)
183
- loofah (2.1.1)
171
+ loofah (2.2.3)
184
172
  crass (~> 1.0.2)
185
173
  nokogiri (>= 1.5.9)
186
- mail (2.7.0)
174
+ mail (2.7.1)
187
175
  mini_mime (>= 0.1.1)
188
- method_source (0.9.0)
189
- mini_mime (1.0.0)
190
- mini_portile2 (2.3.0)
191
- minitest (5.10.3)
192
- mongo (2.4.3)
193
- bson (>= 4.2.1, < 5.0.0)
194
- mongoid (6.2.1)
195
- activemodel (~> 5.1)
196
- mongo (>= 2.4.1, < 3.0.0)
197
- mongoid-rspec (1.10.0)
198
- mongoid (>= 3.0.1)
199
- rake
200
- rspec (>= 2.14)
176
+ marcel (0.3.3)
177
+ mimemagic (~> 0.3.2)
178
+ method_source (0.9.2)
179
+ mimemagic (0.3.3)
180
+ mini_mime (1.0.1)
181
+ mini_portile2 (2.4.0)
182
+ minitest (5.11.3)
183
+ mongo (2.6.2)
184
+ bson (>= 4.3.0, < 5.0.0)
185
+ mongoid (7.0.2)
186
+ activemodel (>= 5.1, < 6.0.0)
187
+ mongo (>= 2.5.1, < 3.0.0)
188
+ mongoid-compatibility (0.5.1)
189
+ activesupport
190
+ mongoid (>= 2.0)
191
+ mongoid-rspec (4.0.1)
192
+ activesupport (>= 3.0.0)
193
+ mongoid (>= 3.1)
194
+ mongoid-compatibility (>= 0.5.1)
195
+ rspec (~> 3.3)
201
196
  mongoid-simple-tags (0.1.3)
202
197
  json (~> 1.8)
203
198
  mongoid (>= 3.0.3)
204
- mongoid-tree (2.1.0)
205
- mongoid (>= 4.0, < 7.0)
206
- mongoid_orderable (4.1.1)
207
- mongoid
208
- nio4r (2.1.0)
209
- nokogiri (1.8.1)
210
- mini_portile2 (~> 2.3.0)
211
- pry (0.11.2)
199
+ mongoid-tree (2.1.1)
200
+ mongoid (>= 4.0, < 8)
201
+ mongoid_orderable (5.2.0)
202
+ mongoid (>= 3.0.0)
203
+ mongoid-compatibility
204
+ nio4r (2.3.1)
205
+ nokogiri (1.10.0)
206
+ mini_portile2 (~> 2.4.0)
207
+ popper_js (1.14.5)
208
+ pry (0.12.2)
212
209
  coderay (~> 1.1.0)
213
210
  method_source (~> 0.9.0)
214
- pry-byebug (3.5.0)
215
- byebug (~> 9.1)
211
+ pry-byebug (3.6.0)
212
+ byebug (~> 10.0)
216
213
  pry (~> 0.10)
217
- public_suffix (3.0.1)
218
- rack (2.0.3)
219
- rack-test (0.7.0)
214
+ public_suffix (3.0.3)
215
+ rack (2.0.6)
216
+ rack-test (1.1.0)
220
217
  rack (>= 1.0, < 3)
221
- rails (5.1.4)
222
- actioncable (= 5.1.4)
223
- actionmailer (= 5.1.4)
224
- actionpack (= 5.1.4)
225
- actionview (= 5.1.4)
226
- activejob (= 5.1.4)
227
- activemodel (= 5.1.4)
228
- activerecord (= 5.1.4)
229
- activesupport (= 5.1.4)
218
+ rails (5.2.2)
219
+ actioncable (= 5.2.2)
220
+ actionmailer (= 5.2.2)
221
+ actionpack (= 5.2.2)
222
+ actionview (= 5.2.2)
223
+ activejob (= 5.2.2)
224
+ activemodel (= 5.2.2)
225
+ activerecord (= 5.2.2)
226
+ activestorage (= 5.2.2)
227
+ activesupport (= 5.2.2)
230
228
  bundler (>= 1.3.0)
231
- railties (= 5.1.4)
229
+ railties (= 5.2.2)
232
230
  sprockets-rails (>= 2.0.0)
233
231
  rails-dom-testing (2.0.3)
234
232
  activesupport (>= 4.2.0)
235
233
  nokogiri (>= 1.6)
236
- rails-html-sanitizer (1.0.3)
237
- loofah (~> 2.0)
238
- rails-i18n (5.0.4)
239
- i18n (~> 0.7)
240
- railties (~> 5.0)
241
- railties (5.1.4)
242
- actionpack (= 5.1.4)
243
- activesupport (= 5.1.4)
234
+ rails-html-sanitizer (1.0.4)
235
+ loofah (~> 2.2, >= 2.2.2)
236
+ rails-i18n (5.1.2)
237
+ i18n (>= 0.7, < 2)
238
+ railties (>= 5.0, < 6)
239
+ railties (5.2.2)
240
+ actionpack (= 5.2.2)
241
+ activesupport (= 5.2.2)
244
242
  method_source
245
243
  rake (>= 0.8.7)
246
- thor (>= 0.18.1, < 2.0)
247
- rake (12.2.1)
248
- rb-fsevent (0.10.2)
249
- rb-inotify (0.9.10)
250
- ffi (>= 0.5.0, < 2)
244
+ thor (>= 0.19.0, < 2.0)
245
+ rake (12.3.2)
246
+ rb-fsevent (0.10.3)
247
+ rb-inotify (0.10.0)
248
+ ffi (~> 1.0)
249
+ regexp_parser (1.3.0)
251
250
  responders (2.4.0)
252
251
  actionpack (>= 4.2.0, < 5.3)
253
252
  railties (>= 4.2.0, < 5.3)
254
- rspec (3.7.0)
255
- rspec-core (~> 3.7.0)
256
- rspec-expectations (~> 3.7.0)
257
- rspec-mocks (~> 3.7.0)
253
+ rspec (3.8.0)
254
+ rspec-core (~> 3.8.0)
255
+ rspec-expectations (~> 3.8.0)
256
+ rspec-mocks (~> 3.8.0)
258
257
  rspec-collection_matchers (1.1.3)
259
258
  rspec-expectations (>= 2.99.0.beta1)
260
- rspec-core (3.7.0)
261
- rspec-support (~> 3.7.0)
262
- rspec-expectations (3.7.0)
259
+ rspec-core (3.8.0)
260
+ rspec-support (~> 3.8.0)
261
+ rspec-expectations (3.8.2)
263
262
  diff-lcs (>= 1.2.0, < 2.0)
264
- rspec-support (~> 3.7.0)
265
- rspec-mocks (3.7.0)
263
+ rspec-support (~> 3.8.0)
264
+ rspec-mocks (3.8.0)
266
265
  diff-lcs (>= 1.2.0, < 2.0)
267
- rspec-support (~> 3.7.0)
268
- rspec-rails (3.7.1)
266
+ rspec-support (~> 3.8.0)
267
+ rspec-rails (3.8.1)
269
268
  actionpack (>= 3.0)
270
269
  activesupport (>= 3.0)
271
270
  railties (>= 3.0)
272
- rspec-core (~> 3.7.0)
273
- rspec-expectations (~> 3.7.0)
274
- rspec-mocks (~> 3.7.0)
275
- rspec-support (~> 3.7.0)
276
- rspec-support (3.7.0)
277
- ruby_parser (3.10.1)
271
+ rspec-core (~> 3.8.0)
272
+ rspec-expectations (~> 3.8.0)
273
+ rspec-mocks (~> 3.8.0)
274
+ rspec-support (~> 3.8.0)
275
+ rspec-support (3.8.0)
276
+ ruby_parser (3.12.0)
278
277
  sexp_processor (~> 4.9)
279
- sass (3.5.3)
278
+ sass (3.7.3)
280
279
  sass-listen (~> 4.0.0)
281
280
  sass-listen (4.0.0)
282
281
  rb-fsevent (~> 0.9, >= 0.9.4)
283
282
  rb-inotify (~> 0.9, >= 0.9.7)
284
- sass-rails (5.0.6)
283
+ sass-rails (5.0.7)
285
284
  railties (>= 4.0.0, < 6)
286
285
  sass (~> 3.1)
287
286
  sprockets (>= 2.8, < 4.0)
288
287
  sprockets-rails (>= 2.0, < 4.0)
289
288
  tilt (>= 1.1, < 3)
290
- sexp_processor (4.10.0)
291
- simple_form (3.5.0)
292
- actionpack (> 4, < 5.2)
293
- activemodel (> 4, < 5.2)
294
- simplecov (0.15.1)
295
- docile (~> 1.1.0)
289
+ sassc (2.0.0)
290
+ ffi (~> 1.9.6)
291
+ rake
292
+ sexp_processor (4.11.0)
293
+ simple_form (4.1.0)
294
+ actionpack (>= 5.0)
295
+ activemodel (>= 5.0)
296
+ simplecov (0.16.1)
297
+ docile (~> 1.1)
296
298
  json (>= 1.8, < 3)
297
299
  simplecov-html (~> 0.10.0)
298
300
  simplecov-html (0.10.2)
299
- slim (3.0.9)
301
+ slim (4.0.1)
300
302
  temple (>= 0.7.6, < 0.9)
301
- tilt (>= 1.3.3, < 2.1)
302
- slim-rails (3.1.3)
303
+ tilt (>= 2.0.6, < 2.1)
304
+ slim-rails (3.2.0)
303
305
  actionpack (>= 3.1)
304
306
  railties (>= 3.1)
305
- slim (~> 3.0)
306
- sprockets (3.7.1)
307
+ slim (>= 3.0, < 5.0)
308
+ sprockets (3.7.2)
307
309
  concurrent-ruby (~> 1.0)
308
310
  rack (> 1, < 3)
309
311
  sprockets-rails (3.2.1)
@@ -311,16 +313,16 @@ GEM
311
313
  activesupport (>= 4.0)
312
314
  sprockets (>= 3.0.0)
313
315
  temple (0.8.0)
314
- thor (0.20.0)
316
+ thor (0.20.3)
315
317
  thread_safe (0.3.6)
316
- tilt (2.0.8)
317
- tzinfo (1.2.4)
318
+ tilt (2.0.9)
319
+ tzinfo (1.2.5)
318
320
  thread_safe (~> 0.1)
319
- websocket-driver (0.6.5)
321
+ websocket-driver (0.7.0)
320
322
  websocket-extensions (>= 0.1.0)
321
323
  websocket-extensions (0.1.3)
322
- xpath (2.1.0)
323
- nokogiri (~> 1.3)
324
+ xpath (3.2.0)
325
+ nokogiri (~> 1.8)
324
326
 
325
327
  PLATFORMS
326
328
  ruby
@@ -329,7 +331,6 @@ DEPENDENCIES
329
331
  better_errors
330
332
  binding_of_caller
331
333
  capybara
332
- compass-h5bp
333
334
  dotenv-rails
334
335
  factory_bot_rails
335
336
  faker
@@ -344,4 +345,4 @@ DEPENDENCIES
344
345
  simplecov
345
346
 
346
347
  BUNDLED WITH
347
- 1.16.0.pre.3
348
+ 1.16.1
data/MIT-LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright 2014 YOURNAME
1
+ Copyright 2014 Markus Graf <info@markusgraf.ch>
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -1,8 +1,7 @@
1
1
  [![Build Status](https://img.shields.io/travis/gurix/helena_administration/master.svg?style=flat)](https://travis-ci.org/gurix/helena_administration)
2
- [![Code Climate](https://img.shields.io/codeclimate/github/gurix/helena_administration.svg?style=flat)](https://codeclimate.com/github/gurix/helena_administration)
2
+ [![Maintainability](https://api.codeclimate.com/v1/badges/ca0f2aaf4c676dd7f6ac/maintainability)](https://codeclimate.com/github/gurix/helena_administration/maintainability)
3
+ [![Test Coverage](https://api.codeclimate.com/v1/badges/ca0f2aaf4c676dd7f6ac/test_coverage)](https://codeclimate.com/github/gurix/helena_administration/test_coverage)
3
4
  [![Dependency Status](https://img.shields.io/gem/v/helena_administration.svg?style=flat)](https://rubygems.org/gems/helena_administration)
4
- [![Dependency Status](https://gemnasium.com/gurix/helena_administration.svg)](https://gemnasium.com/gurix/helena_administration)
5
- [![Gitter](https://badges.gitter.im/Join Chat.svg)](https://gitter.im/gurix/helena?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
6
5
 
7
6
  ## Helena Administration
8
7
 
@@ -54,9 +53,7 @@ end
54
53
 
55
54
  ## Contact
56
55
 
57
- [info@markusgraf.ch](mailto: info@markusgraf.ch)
58
-
59
- Or at [#HelenaFramework](irc://chat.freenode.net/HelenaFramework) on freenode.net
56
+ Markus Graf <info@markusgraf.ch>
60
57
 
61
58
  ## Support
62
59
 
@@ -69,15 +66,21 @@ If you like helena and want to support the development, I would appreciate a don
69
66
  Helena Administration is a simple rails application that provides a user interface to manage apps running with the Helena framework.
70
67
  Copyright (C) 2014 Markus Graf <info@markusgraf.ch>
71
68
 
72
- This program is free software: you can redistribute it and/or modify
73
- it under the terms of the GNU General Public License as published by
74
- the Free Software Foundation, either version 3 of the License, or
75
- (at your option) any later version.
76
-
77
- This program is distributed in the hope that it will be useful,
78
- but WITHOUT ANY WARRANTY; without even the implied warranty of
79
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
80
- GNU General Public License for more details.
81
-
82
- You should have received a copy of the GNU General Public License
83
- along with this program. If not, see <http://www.gnu.org/licenses/>.
69
+ Permission is hereby granted, free of charge, to any person obtaining
70
+ a copy of this software and associated documentation files (the
71
+ "Software"), to deal in the Software without restriction, including
72
+ without limitation the rights to use, copy, modify, merge, publish,
73
+ distribute, sublicense, and/or sell copies of the Software, and to
74
+ permit persons to whom the Software is furnished to do so, subject to
75
+ the following conditions:
76
+
77
+ The above copyright notice and this permission notice shall be
78
+ included in all copies or substantial portions of the Software.
79
+
80
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
81
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
82
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
83
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
84
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
85
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
86
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/Rakefile CHANGED
@@ -14,7 +14,7 @@ RDoc::Task.new(:rdoc) do |rdoc|
14
14
  rdoc.rdoc_files.include('lib/**/*.rb')
15
15
  end
16
16
 
17
- APP_RAKEFILE = File.expand_path('../spec/dummy/Rakefile', __FILE__)
17
+ APP_RAKEFILE = File.expand_path('spec/dummy/Rakefile', __dir__)
18
18
  load 'rails/tasks/engine.rake'
19
19
 
20
20
  Bundler::GemHelper.install_tasks
@@ -1,6 +1,5 @@
1
1
  #= require jquery
2
2
  #= require jquery_ujs
3
- #= require polyfills
4
3
  #= require bootstrap
5
4
  #= require codemirror
6
5
  #= require codemirror/modes/xml