introspective_admin 0.1.0 → 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/.DS_Store +0 -0
- data/.gitignore +1 -0
- data/.rubocop.yml +75 -0
- data/.ruby-version +1 -1
- data/.travis.yml +5 -14
- data/CHANGELOG.md +37 -28
- data/Gemfile +24 -6
- data/Gemfile.lock +402 -264
- data/README.md +34 -8
- data/Rakefile +3 -5
- data/introspective_admin.gemspec +29 -44
- data/lib/introspective_admin/base.rb +217 -200
- data/lib/introspective_admin/version.rb +5 -3
- data/lib/introspective_admin.rb +2 -0
- data/lib/tasks/introspective_admin_tasks.rake +2 -0
- data/spec/admin/company_admin_spec.rb +73 -72
- data/spec/admin/job_admin_spec.rb +63 -61
- data/spec/admin/location_admin_spec.rb +70 -66
- data/spec/admin/location_beacon_admin_spec.rb +75 -73
- data/spec/admin/project__admin_spec.rb +73 -71
- data/spec/admin/user_admin_spec.rb +65 -64
- data/spec/dummy/Gemfile +17 -0
- data/spec/dummy/README.rdoc +28 -28
- data/spec/dummy/Rakefile +8 -6
- data/spec/dummy/app/admin/admin_users.rb +29 -0
- data/spec/dummy/app/admin/company_admin.rb +5 -4
- data/spec/dummy/app/admin/dashboard.rb +34 -0
- data/spec/dummy/app/admin/job_admin.rb +5 -4
- data/spec/dummy/app/admin/location_admin.rb +5 -4
- data/spec/dummy/app/admin/location_beacon_admin.rb +8 -6
- data/spec/dummy/app/admin/project_admin.rb +5 -6
- data/spec/dummy/app/admin/role_admin.rb +5 -5
- data/spec/dummy/app/admin/user_admin.rb +13 -13
- data/spec/dummy/app/assets/config/manifest.js +3 -0
- data/spec/dummy/app/assets/javascripts/active_admin.js +1 -0
- data/spec/dummy/app/assets/javascripts/application.js +13 -13
- data/spec/dummy/app/assets/stylesheets/active_admin.scss +17 -0
- data/spec/dummy/app/assets/stylesheets/application.css +15 -15
- data/spec/dummy/app/controllers/application_controller.rb +10 -8
- data/spec/dummy/app/helpers/application_helper.rb +4 -3
- data/spec/dummy/app/models/abstract_adapter.rb +20 -12
- data/spec/dummy/app/models/admin_user.rb +12 -6
- data/spec/dummy/app/models/company.rb +13 -12
- data/spec/dummy/app/models/job.rb +10 -10
- data/spec/dummy/app/models/locatable.rb +8 -6
- data/spec/dummy/app/models/location.rb +27 -26
- data/spec/dummy/app/models/location_beacon.rb +19 -19
- data/spec/dummy/app/models/location_gps.rb +11 -11
- data/spec/dummy/app/models/project.rb +20 -20
- data/spec/dummy/app/models/project_job.rb +8 -7
- data/spec/dummy/app/models/role.rb +26 -25
- data/spec/dummy/app/models/team.rb +10 -9
- data/spec/dummy/app/models/team_user.rb +14 -13
- data/spec/dummy/app/models/user.rb +72 -68
- data/spec/dummy/app/models/user_location.rb +28 -28
- data/spec/dummy/app/models/user_project_job.rb +17 -16
- data/spec/dummy/app/views/layouts/application.html.erb +13 -13
- data/spec/dummy/bin/bundle +5 -3
- data/spec/dummy/bin/rails +6 -4
- data/spec/dummy/bin/rake +6 -4
- data/spec/dummy/bin/setup +31 -29
- data/spec/dummy/config/application.rb +35 -34
- data/spec/dummy/config/boot.rb +7 -5
- data/spec/dummy/config/database.yml +22 -22
- data/spec/dummy/config/environment.rb +12 -11
- data/spec/dummy/config/environments/development.rb +47 -45
- data/spec/dummy/config/environments/production.rb +83 -82
- data/spec/dummy/config/environments/test.rb +50 -50
- data/spec/dummy/config/initializers/active_admin.rb +8 -7
- data/spec/dummy/config/initializers/assets.rb +15 -13
- data/spec/dummy/config/initializers/backtrace_silencers.rb +9 -7
- data/spec/dummy/config/initializers/cookies_serializer.rb +5 -3
- data/spec/dummy/config/initializers/devise.rb +265 -263
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +6 -4
- data/spec/dummy/config/initializers/inflections.rb +18 -16
- data/spec/dummy/config/initializers/mime_types.rb +6 -4
- data/spec/dummy/config/initializers/session_store.rb +5 -3
- data/spec/dummy/config/initializers/wrap_parameters.rb +16 -14
- data/spec/dummy/config/initializers/zeitwerk.rb +10 -0
- data/spec/dummy/config/locales/devise.en.yml +60 -60
- data/spec/dummy/config/locales/en.yml +23 -23
- data/spec/dummy/config/routes.rb +12 -9
- data/spec/dummy/config/secrets.yml +20 -20
- data/spec/dummy/config.ru +6 -4
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/20141002205024_devise_create_users.rb +43 -42
- data/spec/dummy/db/migrate/20141002211055_devise_create_admin_users.rb +49 -48
- data/spec/dummy/db/migrate/20141002211057_create_active_admin_comments.rb +21 -19
- data/spec/dummy/db/migrate/20141002220722_add_lockable_to_users.rb +10 -8
- data/spec/dummy/db/migrate/20150406213646_create_companies.rb +13 -11
- data/spec/dummy/db/migrate/20150414213154_add_user_authentication_token.rb +13 -11
- data/spec/dummy/db/migrate/20150415222005_create_roles.rb +13 -12
- data/spec/dummy/db/migrate/20150505181635_create_chats.rb +11 -9
- data/spec/dummy/db/migrate/20150505181636_create_chat_users.rb +13 -11
- data/spec/dummy/db/migrate/20150505181640_create_chat_messages.rb +13 -11
- data/spec/dummy/db/migrate/20150507191529_create_chat_message_users.rb +13 -11
- data/spec/dummy/db/migrate/20150601200526_create_locations.rb +15 -13
- data/spec/dummy/db/migrate/20150601200533_create_locatables.rb +12 -10
- data/spec/dummy/db/migrate/20150601212924_create_location_beacons.rb +18 -16
- data/spec/dummy/db/migrate/20150601213542_create_location_gps.rb +14 -12
- data/spec/dummy/db/migrate/20150609201823_create_user_locations.rb +16 -14
- data/spec/dummy/db/migrate/20150617232519_create_projects.rb +12 -10
- data/spec/dummy/db/migrate/20150617232521_create_jobs.rb +11 -9
- data/spec/dummy/db/migrate/20150617232522_create_project_jobs.rb +13 -11
- data/spec/dummy/db/migrate/20150623170133_create_user_project_jobs.rb +14 -12
- data/spec/dummy/db/migrate/20150701234929_create_teams.rb +13 -11
- data/spec/dummy/db/migrate/20150701234930_create_team_users.rb +13 -11
- data/spec/dummy/db/migrate/20150727214950_add_confirmable_to_devise.rb +13 -11
- data/spec/dummy/db/migrate/20150820190524_add_user_names.rb +8 -6
- data/spec/dummy/db/migrate/20150909225019_add_password_to_project.rb +7 -5
- data/spec/dummy/db/migrate/20220806003731_add_devise_to_admin_users.rb +50 -0
- data/spec/dummy/db/schema.rb +263 -264
- data/spec/dummy/public/404.html +67 -67
- data/spec/dummy/public/422.html +67 -67
- data/spec/dummy/public/500.html +66 -66
- data/spec/rails_helper.rb +33 -27
- data/spec/support/blueprints.rb +50 -49
- data/spec/support/location_helper.rb +28 -29
- metadata +21 -252
- data/Gemfile.lock.rails4 +0 -256
|
@@ -1,71 +1,73 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
p
|
|
50
|
-
p.
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
end
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require 'rails_helper'
|
|
4
|
+
RSpec.describe Admin::ProjectsController, type: :controller do
|
|
5
|
+
render_views
|
|
6
|
+
|
|
7
|
+
before :each do # Why can't I do this shit in a helper like I do for requests?
|
|
8
|
+
user = double('user')
|
|
9
|
+
allow(request.env['warden']).to receive(:authenticate!) { user }
|
|
10
|
+
allow(controller).to receive(:current_user) { user }
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
describe 'GET index' do
|
|
14
|
+
it 'finds all projects' do
|
|
15
|
+
r = Project.make!
|
|
16
|
+
get :index
|
|
17
|
+
response.status.should
|
|
18
|
+
assigns(:projects).include?(r).should == true
|
|
19
|
+
end
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
describe 'SHOW record' do
|
|
23
|
+
it 'finds the record' do
|
|
24
|
+
r = Project.make!
|
|
25
|
+
get :show, params: { id: r.id }
|
|
26
|
+
response.status.should == 200
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'NEW record' do
|
|
31
|
+
it 'renders the form for a new record' do
|
|
32
|
+
get :new
|
|
33
|
+
response.status.should == 200
|
|
34
|
+
end
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
describe 'CREATE record' do
|
|
38
|
+
it 'creates the record' do
|
|
39
|
+
r = Project.make
|
|
40
|
+
post :create, params: { project: r.attributes }
|
|
41
|
+
response.should redirect_to action: :show, id: Project.last.id
|
|
42
|
+
Project.last.name.should == r.name
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
it 'the inverse_of declaration allows a new project to be created with a project_job' do
|
|
46
|
+
j = Job.make!
|
|
47
|
+
r = Project.make
|
|
48
|
+
post :create, params: { project: r.attributes.merge({ project_jobs_attributes: { '0'=>{ job_id: j.id } } }) }
|
|
49
|
+
p = Project.last
|
|
50
|
+
p.name.should
|
|
51
|
+
r.name
|
|
52
|
+
p.project_jobs.size.should
|
|
53
|
+
p.project_jobs.first.job.should == j
|
|
54
|
+
end
|
|
55
|
+
end
|
|
56
|
+
|
|
57
|
+
describe 'EDIT record' do
|
|
58
|
+
it 'renders the edit form for an existing record' do
|
|
59
|
+
r = Project.make!
|
|
60
|
+
get :edit, params: { id: r.id }
|
|
61
|
+
response.status.should == 200
|
|
62
|
+
end
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
describe 'UPDATE record' do
|
|
66
|
+
it 'updates the record' do
|
|
67
|
+
r = Project.make!
|
|
68
|
+
put :update, params: { id: r.id, project: { name: 'New Name' } }
|
|
69
|
+
response.should redirect_to action: :show, id: r.id
|
|
70
|
+
Project.find(r.id).name.should == 'New Name'
|
|
71
|
+
end
|
|
72
|
+
end
|
|
73
|
+
end
|
|
@@ -1,64 +1,65 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
u
|
|
43
|
-
u.
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
end
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require 'rails_helper'
|
|
4
|
+
|
|
5
|
+
RSpec.describe Admin::UsersController, type: :controller do
|
|
6
|
+
render_views
|
|
7
|
+
|
|
8
|
+
before :each do
|
|
9
|
+
user = double('user')
|
|
10
|
+
allow(request.env['warden']).to receive(:authenticate!) { user }
|
|
11
|
+
allow(controller).to receive(:current_user) { user }
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
describe 'GET index' do
|
|
15
|
+
it 'finds all users' do
|
|
16
|
+
u = User.make!
|
|
17
|
+
get :index
|
|
18
|
+
response.status.should
|
|
19
|
+
assigns(:users).include?(u).should == true
|
|
20
|
+
end
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
describe 'SHOW record' do
|
|
24
|
+
it 'finds the record' do
|
|
25
|
+
u = User.make!
|
|
26
|
+
get :show, params: { id: u.id }
|
|
27
|
+
response.status.should == 200
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
|
|
31
|
+
describe 'NEW record' do
|
|
32
|
+
it 'renders the form for a new record' do
|
|
33
|
+
get :new
|
|
34
|
+
response.status.should == 200
|
|
35
|
+
end
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
describe 'CREATE record' do
|
|
39
|
+
it 'creates the record' do
|
|
40
|
+
post :create, params: { user: { first_name: 'first', last_name: 'last', email: 'test@blah.com', password: 'abcd1234' } }
|
|
41
|
+
response.should redirect_to action: :show, id: User.last.id
|
|
42
|
+
u = User.last
|
|
43
|
+
u.first_name.should
|
|
44
|
+
u.last_name.should
|
|
45
|
+
u.email.should == 'test@blah.com'
|
|
46
|
+
end
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
describe 'EDIT record' do
|
|
50
|
+
it 'renders the edit form for an existing record' do
|
|
51
|
+
r = User.make!
|
|
52
|
+
get :edit, params: { id: r.id }
|
|
53
|
+
response.status.should == 200
|
|
54
|
+
end
|
|
55
|
+
end
|
|
56
|
+
|
|
57
|
+
describe 'UPDATE record' do
|
|
58
|
+
it 'updates the record' do
|
|
59
|
+
u = User.make!
|
|
60
|
+
put :update, params: { id: u.id, user: { first_name: 'New Name' } }
|
|
61
|
+
response.should redirect_to action: :show, id: u.id
|
|
62
|
+
User.find(u.id).first_name.should == 'New Name'
|
|
63
|
+
end
|
|
64
|
+
end
|
|
65
|
+
end
|
data/spec/dummy/Gemfile
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# A sample Gemfile
|
|
4
|
+
source 'https://rubygems.org'
|
|
5
|
+
|
|
6
|
+
gemspec
|
|
7
|
+
gem 'coveralls', require: false
|
|
8
|
+
gem 'devise'
|
|
9
|
+
gem 'devise-async'
|
|
10
|
+
gem 'machinist_redux'
|
|
11
|
+
gem 'rails', '~> 8'
|
|
12
|
+
gem 'rails-controller-testing'
|
|
13
|
+
gem 'rspec-rails'
|
|
14
|
+
gem 'rufus-mnemo'
|
|
15
|
+
gem 'simplecov'
|
|
16
|
+
gem 'sprockets-rails'
|
|
17
|
+
gem 'sqlite3'
|
data/spec/dummy/README.rdoc
CHANGED
|
@@ -1,28 +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>.
|
|
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>.
|
data/spec/dummy/Rakefile
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
#
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# Add your own tasks in files placed in lib/tasks ending in .rake,
|
|
4
|
+
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
|
|
5
|
+
|
|
6
|
+
require File.expand_path('config/application', __dir__)
|
|
7
|
+
|
|
8
|
+
Rails.application.load_tasks
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
ActiveAdmin.register AdminUser do
|
|
4
|
+
permit_params :email, :password, :password_confirmation
|
|
5
|
+
|
|
6
|
+
index do
|
|
7
|
+
selectable_column
|
|
8
|
+
id_column
|
|
9
|
+
column :email
|
|
10
|
+
column :current_sign_in_at
|
|
11
|
+
column :sign_in_count
|
|
12
|
+
column :created_at
|
|
13
|
+
actions
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
filter :email
|
|
17
|
+
filter :current_sign_in_at
|
|
18
|
+
filter :sign_in_count
|
|
19
|
+
filter :created_at
|
|
20
|
+
|
|
21
|
+
form do |f|
|
|
22
|
+
f.inputs do
|
|
23
|
+
f.input :email
|
|
24
|
+
f.input :password
|
|
25
|
+
f.input :password_confirmation
|
|
26
|
+
end
|
|
27
|
+
f.actions
|
|
28
|
+
end
|
|
29
|
+
end
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
class CompanyAdmin < IntrospectiveAdmin::Base
|
|
4
|
+
register Company
|
|
5
|
+
end
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
ActiveAdmin.register_page 'Dashboard' do
|
|
4
|
+
menu priority: 1, label: proc { I18n.t('active_admin.dashboard') }
|
|
5
|
+
|
|
6
|
+
content title: proc { I18n.t('active_admin.dashboard') } do
|
|
7
|
+
div class: 'blank_slate_container', id: 'dashboard_default_message' do
|
|
8
|
+
span class: 'blank_slate' do
|
|
9
|
+
span I18n.t('active_admin.dashboard_welcome.welcome')
|
|
10
|
+
small I18n.t('active_admin.dashboard_welcome.call_to_action')
|
|
11
|
+
end
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
# Here is an example of a simple dashboard with columns and panels.
|
|
15
|
+
#
|
|
16
|
+
# columns do
|
|
17
|
+
# column do
|
|
18
|
+
# panel "Recent Posts" do
|
|
19
|
+
# ul do
|
|
20
|
+
# Post.recent(5).map do |post|
|
|
21
|
+
# li link_to(post.title, admin_post_path(post))
|
|
22
|
+
# end
|
|
23
|
+
# end
|
|
24
|
+
# end
|
|
25
|
+
# end
|
|
26
|
+
|
|
27
|
+
# column do
|
|
28
|
+
# panel "Info" do
|
|
29
|
+
# para "Welcome to ActiveAdmin."
|
|
30
|
+
# end
|
|
31
|
+
# end
|
|
32
|
+
# end
|
|
33
|
+
end
|
|
34
|
+
end
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
class JobAdmin < IntrospectiveAdmin::Base
|
|
4
|
+
register Job
|
|
5
|
+
end
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
class LocationAdmin < IntrospectiveAdmin::Base
|
|
4
|
+
register Location
|
|
5
|
+
end
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
class LocationBeaconAdmin < IntrospectiveAdmin::Base
|
|
4
|
+
register LocationBeacon do
|
|
5
|
+
scope :all
|
|
6
|
+
scope :low_battery
|
|
7
|
+
end
|
|
8
|
+
end
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
end
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
class ProjectAdmin < IntrospectiveAdmin::Base
|
|
4
|
+
register Project
|
|
5
|
+
end
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
class RoleAdmin < IntrospectiveAdmin::Base
|
|
4
|
+
register Role
|
|
5
|
+
end
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
end
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
class UserAdmin < IntrospectiveAdmin::Base
|
|
4
|
+
def self.include_virtual_attributes
|
|
5
|
+
%w[password]
|
|
6
|
+
end
|
|
7
|
+
|
|
8
|
+
def self.exclude_params
|
|
9
|
+
%w[reset_password_at current_sign_in_at current_sign_in_ip remember_created_at sign_in_count encrypted_password reset_password_sent_at reset_password_token password authentication_token unlock_token failed_attempts last_sign_in_at locked_at last_sign_in_ip]
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
register User
|
|
13
|
+
end
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
//= require active_admin/base
|
|
@@ -1,13 +1,13 @@
|
|
|
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_tree .
|
|
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_tree .
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
// Sass variable overrides must be declared before loading up Active Admin's styles.
|
|
2
|
+
//
|
|
3
|
+
// To view the variables that Active Admin provides, take a look at
|
|
4
|
+
// `app/assets/stylesheets/active_admin/mixins/_variables.scss` in the
|
|
5
|
+
// Active Admin source.
|
|
6
|
+
//
|
|
7
|
+
// For example, to change the sidebar width:
|
|
8
|
+
// $sidebar-width: 242px;
|
|
9
|
+
|
|
10
|
+
// Active Admin's got SASS!
|
|
11
|
+
@import "active_admin/mixins";
|
|
12
|
+
@import "active_admin/base";
|
|
13
|
+
|
|
14
|
+
// Overriding any non-variable Sass must be done after the fact.
|
|
15
|
+
// For example, to change the default status-tag color:
|
|
16
|
+
//
|
|
17
|
+
// .status_tag { background: #6090DB; }
|
|
@@ -1,15 +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
|
-
*/
|
|
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
|
+
*/
|
|
@@ -1,8 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
class ApplicationController < ActionController::Base
|
|
4
|
+
# Prevent CSRF attacks by raising an exception.
|
|
5
|
+
# For APIs, you may want to use :null_session instead.
|
|
6
|
+
protect_from_forgery with: :exception
|
|
7
|
+
|
|
8
|
+
# Load the test database schema into memory on startup
|
|
9
|
+
load "#{Rails.root}/db/schema.rb"
|
|
10
|
+
end
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module ApplicationHelper
|
|
4
|
+
end
|