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.
- checksums.yaml +4 -4
- data/.rubocop.yml +14 -9
- data/.travis.yml +13 -3
- data/Gemfile +1 -1
- data/Gemfile.lock +175 -174
- data/MIT-LICENSE +1 -1
- data/README.md +21 -18
- data/Rakefile +1 -1
- data/app/assets/javascripts/helena_administration.js.coffee +0 -1
- data/app/assets/stylesheets/_layout.sass +3 -14
- data/app/assets/stylesheets/_variables.sass +13 -13
- data/app/assets/stylesheets/helena_administration.css.sass +1 -3
- data/app/controllers/helena_administration/application_controller.rb +1 -0
- data/app/controllers/helena_administration/question_groups_controller.rb +17 -11
- data/app/controllers/helena_administration/versions_controller.rb +10 -6
- data/app/views/helena_administration/application/{_flash_messages.html.haml → _flash_messages.html.slim} +1 -1
- data/app/views/helena_administration/application/_header.html.slim +11 -15
- data/app/views/helena_administration/layouts/application.html.slim +1 -1
- data/app/views/helena_administration/question_groups/show.html.slim +18 -18
- data/app/views/helena_administration/questions/_sub_questions.html.slim +1 -1
- data/app/views/helena_administration/questions/show.html.slim +14 -14
- data/app/views/helena_administration/surveys/index.html.slim +5 -5
- data/app/views/helena_administration/surveys/show.html.slim +29 -29
- data/app/views/helena_administration/versions/show.html.slim +24 -24
- data/app/views/layouts/helena_administration/application.html.slim +1 -1
- data/config/locales/en.yml +11 -0
- data/helena_administration.gemspec +7 -8
- data/lib/helena_administration/engine.rb +6 -5
- data/lib/helena_administration/version.rb +1 -1
- data/lib/helena_administration.rb +2 -2
- data/spec/controllers/sessions_controller_spec.rb +4 -4
- data/spec/dummy/Rakefile +1 -1
- data/spec/dummy/config/application.rb +1 -1
- data/spec/dummy/config/boot.rb +2 -2
- data/spec/dummy/config/environment.rb +1 -1
- data/spec/dummy/config/environments/test.rb +1 -1
- data/spec/dummy/config/initializers/assets.rb +1 -1
- data/spec/dummy/config.ru +1 -1
- data/spec/features/dashboard/index_spec.rb +1 -1
- data/spec/features/question_groups/manage_question_groups_spec.rb +1 -1
- data/spec/features/questions/manage_questions_spec.rb +2 -2
- data/spec/features/sessions/manage_sessions_spec.rb +1 -1
- data/spec/features/surveys/manage_survey_spec.rb +2 -2
- data/spec/features/versions/manage_version_spec.rb +33 -3
- data/spec/helpers/applicatin_helper_spec.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- data/spec/support/rails_compatibility.rb +1 -1
- metadata +35 -53
- data/app/assets/javascripts/polyfills.js +0 -10
- data/spec/dummy/config/initializers/backtrace_silencers.rb +0 -7
- data/spec/dummy/config/initializers/inflections.rb +0 -16
- 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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2e3a8a945f4915bef1178571c1d258b1d685d4c3
|
4
|
+
data.tar.gz: ed6457dcc62e066d1e1df7a138eea4298cbdf1a8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
-
|
11
|
-
-
|
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.
|
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.
|
5
|
-
bootstrap
|
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
|
9
|
+
font-awesome-sass
|
10
10
|
haml-rails (>= 0.5)
|
11
|
-
helena (~>
|
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 (~>
|
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 (~>
|
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.
|
30
|
-
actionpack (= 5.
|
28
|
+
actioncable (5.2.2)
|
29
|
+
actionpack (= 5.2.2)
|
31
30
|
nio4r (~> 2.0)
|
32
|
-
websocket-driver (
|
33
|
-
actionmailer (5.
|
34
|
-
actionpack (= 5.
|
35
|
-
actionview (= 5.
|
36
|
-
activejob (= 5.
|
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.
|
40
|
-
actionview (= 5.
|
41
|
-
activesupport (= 5.
|
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.
|
47
|
-
activesupport (= 5.
|
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.
|
53
|
-
activesupport (= 5.
|
51
|
+
activejob (5.2.2)
|
52
|
+
activesupport (= 5.2.2)
|
54
53
|
globalid (>= 0.3.6)
|
55
|
-
activemodel (5.
|
56
|
-
activesupport (= 5.
|
57
|
-
activerecord (5.
|
58
|
-
activemodel (= 5.
|
59
|
-
activesupport (= 5.
|
60
|
-
arel (
|
61
|
-
|
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 (
|
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 (
|
69
|
-
autoprefixer-rails (
|
71
|
+
arel (9.0.0)
|
72
|
+
autoprefixer-rails (9.4.4)
|
70
73
|
execjs
|
71
|
-
better_errors (2.
|
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.
|
78
|
+
binding_of_caller (0.8.0)
|
76
79
|
debug_inspector (>= 0.0.1)
|
77
|
-
bootstrap
|
78
|
-
autoprefixer-rails (>=
|
79
|
-
|
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
|
-
|
82
|
-
bson (4.2.2)
|
85
|
+
bson (4.3.0)
|
83
86
|
builder (3.2.3)
|
84
|
-
byebug (
|
85
|
-
capybara (
|
87
|
+
byebug (10.0.2)
|
88
|
+
capybara (3.11.1)
|
86
89
|
addressable
|
87
90
|
mini_mime (>= 0.1.3)
|
88
|
-
nokogiri (
|
89
|
-
rack (>= 1.
|
90
|
-
rack-test (>= 0.
|
91
|
-
|
92
|
-
|
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
|
-
|
104
|
-
|
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
|
114
|
-
dotenv (2.
|
115
|
-
dotenv-rails (2.
|
116
|
-
dotenv (= 2.
|
117
|
-
railties (>= 3.2, <
|
118
|
-
erubi (1.
|
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.
|
118
|
+
factory_bot (4.11.1)
|
122
119
|
activesupport (>= 3.0.0)
|
123
|
-
factory_bot_rails (4.
|
124
|
-
factory_bot (~> 4.
|
120
|
+
factory_bot_rails (4.11.1)
|
121
|
+
factory_bot (~> 4.11.1)
|
125
122
|
railties (>= 3.0.0)
|
126
|
-
faker (1.
|
127
|
-
i18n (
|
128
|
-
ffi (1.9.
|
129
|
-
font-awesome-sass (
|
130
|
-
|
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 (
|
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 (
|
151
|
-
mongoid_orderable (
|
142
|
+
mongoid-tree (>= 2.0)
|
143
|
+
mongoid_orderable (>= 5.2)
|
152
144
|
rails (>= 4.2)
|
153
145
|
rails-i18n (>= 4.0)
|
154
|
-
responders (
|
155
|
-
sass-rails (
|
156
|
-
simple_form (
|
157
|
-
slim (
|
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
|
-
|
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.
|
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.
|
171
|
+
loofah (2.2.3)
|
184
172
|
crass (~> 1.0.2)
|
185
173
|
nokogiri (>= 1.5.9)
|
186
|
-
mail (2.7.
|
174
|
+
mail (2.7.1)
|
187
175
|
mini_mime (>= 0.1.1)
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
mongoid
|
198
|
-
|
199
|
-
|
200
|
-
|
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.
|
205
|
-
mongoid (>= 4.0, <
|
206
|
-
mongoid_orderable (
|
207
|
-
mongoid
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
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.
|
215
|
-
byebug (~>
|
211
|
+
pry-byebug (3.6.0)
|
212
|
+
byebug (~> 10.0)
|
216
213
|
pry (~> 0.10)
|
217
|
-
public_suffix (3.0.
|
218
|
-
rack (2.0.
|
219
|
-
rack-test (
|
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.
|
222
|
-
actioncable (= 5.
|
223
|
-
actionmailer (= 5.
|
224
|
-
actionpack (= 5.
|
225
|
-
actionview (= 5.
|
226
|
-
activejob (= 5.
|
227
|
-
activemodel (= 5.
|
228
|
-
activerecord (= 5.
|
229
|
-
|
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.
|
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.
|
237
|
-
loofah (~> 2.
|
238
|
-
rails-i18n (5.
|
239
|
-
i18n (
|
240
|
-
railties (
|
241
|
-
railties (5.
|
242
|
-
actionpack (= 5.
|
243
|
-
activesupport (= 5.
|
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.
|
247
|
-
rake (12.2
|
248
|
-
rb-fsevent (0.10.
|
249
|
-
rb-inotify (0.
|
250
|
-
ffi (
|
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.
|
255
|
-
rspec-core (~> 3.
|
256
|
-
rspec-expectations (~> 3.
|
257
|
-
rspec-mocks (~> 3.
|
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.
|
261
|
-
rspec-support (~> 3.
|
262
|
-
rspec-expectations (3.
|
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.
|
265
|
-
rspec-mocks (3.
|
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.
|
268
|
-
rspec-rails (3.
|
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.
|
273
|
-
rspec-expectations (~> 3.
|
274
|
-
rspec-mocks (~> 3.
|
275
|
-
rspec-support (~> 3.
|
276
|
-
rspec-support (3.
|
277
|
-
ruby_parser (3.
|
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.
|
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.
|
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
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
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 (
|
301
|
+
slim (4.0.1)
|
300
302
|
temple (>= 0.7.6, < 0.9)
|
301
|
-
tilt (>=
|
302
|
-
slim-rails (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 (
|
306
|
-
sprockets (3.7.
|
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.
|
316
|
+
thor (0.20.3)
|
315
317
|
thread_safe (0.3.6)
|
316
|
-
tilt (2.0.
|
317
|
-
tzinfo (1.2.
|
318
|
+
tilt (2.0.9)
|
319
|
+
tzinfo (1.2.5)
|
318
320
|
thread_safe (~> 0.1)
|
319
|
-
websocket-driver (0.
|
321
|
+
websocket-driver (0.7.0)
|
320
322
|
websocket-extensions (>= 0.1.0)
|
321
323
|
websocket-extensions (0.1.3)
|
322
|
-
xpath (2.
|
323
|
-
nokogiri (~> 1.
|
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.
|
348
|
+
1.16.1
|
data/MIT-LICENSE
CHANGED
data/README.md
CHANGED
@@ -1,8 +1,7 @@
|
|
1
1
|
[](https://travis-ci.org/gurix/helena_administration)
|
2
|
-
[](https://codeclimate.com/github/gurix/helena_administration/maintainability)
|
3
|
+
[](https://codeclimate.com/github/gurix/helena_administration/test_coverage)
|
3
4
|
[](https://rubygems.org/gems/helena_administration)
|
4
|
-
[](https://gemnasium.com/gurix/helena_administration)
|
5
|
-
[](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
|
-
|
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
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
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('
|
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
|