start_bootstrap_admin_theme 0.1.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 +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +39 -0
- data/Rakefile +32 -0
- data/app/assets/config/start_bootstrap_admin_theme_manifest.js +1 -0
- data/app/assets/stylesheets/start_bootstrap_admin_theme/application.css +15 -0
- data/app/controllers/start_bootstrap_admin_theme/application_controller.rb +5 -0
- data/app/controllers/start_bootstrap_admin_theme/pages_controller.rb +7 -0
- data/app/helpers/start_bootstrap_admin_theme/application_helper.rb +4 -0
- data/app/jobs/start_bootstrap_admin_theme/application_job.rb +4 -0
- data/app/mailers/start_bootstrap_admin_theme/application_mailer.rb +6 -0
- data/app/models/start_bootstrap_admin_theme/application_record.rb +5 -0
- data/app/views/layouts/start_bootstrap_admin_theme/application.html.erb +15 -0
- data/app/views/start_bootstrap_admin_theme/pages/404.html +400 -0
- data/app/views/start_bootstrap_admin_theme/pages/blank.html +395 -0
- data/app/views/start_bootstrap_admin_theme/pages/buttons.html +560 -0
- data/app/views/start_bootstrap_admin_theme/pages/cards.html +547 -0
- data/app/views/start_bootstrap_admin_theme/pages/charts.html +458 -0
- data/app/views/start_bootstrap_admin_theme/pages/forgot-password.html +82 -0
- data/app/views/start_bootstrap_admin_theme/pages/index.html +677 -0
- data/app/views/start_bootstrap_admin_theme/pages/login.html +97 -0
- data/app/views/start_bootstrap_admin_theme/pages/register.html +95 -0
- data/app/views/start_bootstrap_admin_theme/pages/tables.html +897 -0
- data/app/views/start_bootstrap_admin_theme/pages/utilities-animation.html +480 -0
- data/app/views/start_bootstrap_admin_theme/pages/utilities-border.html +471 -0
- data/app/views/start_bootstrap_admin_theme/pages/utilities-color.html +476 -0
- data/app/views/start_bootstrap_admin_theme/pages/utilities-other.html +469 -0
- data/config/routes.rb +3 -0
- data/lib/start_bootstrap_admin_theme/engine.rb +5 -0
- data/lib/start_bootstrap_admin_theme/version.rb +3 -0
- data/lib/start_bootstrap_admin_theme.rb +5 -0
- data/lib/tasks/start_bootstrap_admin_theme_tasks.rake +4 -0
- metadata +121 -0
data/config/routes.rb
ADDED
metadata
ADDED
@@ -0,0 +1,121 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: start_bootstrap_admin_theme
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- George Mendoza
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2020-02-06 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rails
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 6.0.2
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 6.0.2.1
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 6.0.2
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 6.0.2.1
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: sqlite3
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - ">="
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '0'
|
40
|
+
type: :development
|
41
|
+
prerelease: false
|
42
|
+
version_requirements: !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - ">="
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '0'
|
47
|
+
- !ruby/object:Gem::Dependency
|
48
|
+
name: rspec-rails
|
49
|
+
requirement: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: 4.0.0.beta3
|
54
|
+
type: :development
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - ">="
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: 4.0.0.beta3
|
61
|
+
description: Rails engine for Start Bootstrap Admin Theme
|
62
|
+
email:
|
63
|
+
executables: []
|
64
|
+
extensions: []
|
65
|
+
extra_rdoc_files: []
|
66
|
+
files:
|
67
|
+
- MIT-LICENSE
|
68
|
+
- README.md
|
69
|
+
- Rakefile
|
70
|
+
- app/assets/config/start_bootstrap_admin_theme_manifest.js
|
71
|
+
- app/assets/stylesheets/start_bootstrap_admin_theme/application.css
|
72
|
+
- app/controllers/start_bootstrap_admin_theme/application_controller.rb
|
73
|
+
- app/controllers/start_bootstrap_admin_theme/pages_controller.rb
|
74
|
+
- app/helpers/start_bootstrap_admin_theme/application_helper.rb
|
75
|
+
- app/jobs/start_bootstrap_admin_theme/application_job.rb
|
76
|
+
- app/mailers/start_bootstrap_admin_theme/application_mailer.rb
|
77
|
+
- app/models/start_bootstrap_admin_theme/application_record.rb
|
78
|
+
- app/views/layouts/start_bootstrap_admin_theme/application.html.erb
|
79
|
+
- app/views/start_bootstrap_admin_theme/pages/404.html
|
80
|
+
- app/views/start_bootstrap_admin_theme/pages/blank.html
|
81
|
+
- app/views/start_bootstrap_admin_theme/pages/buttons.html
|
82
|
+
- app/views/start_bootstrap_admin_theme/pages/cards.html
|
83
|
+
- app/views/start_bootstrap_admin_theme/pages/charts.html
|
84
|
+
- app/views/start_bootstrap_admin_theme/pages/forgot-password.html
|
85
|
+
- app/views/start_bootstrap_admin_theme/pages/index.html
|
86
|
+
- app/views/start_bootstrap_admin_theme/pages/login.html
|
87
|
+
- app/views/start_bootstrap_admin_theme/pages/register.html
|
88
|
+
- app/views/start_bootstrap_admin_theme/pages/tables.html
|
89
|
+
- app/views/start_bootstrap_admin_theme/pages/utilities-animation.html
|
90
|
+
- app/views/start_bootstrap_admin_theme/pages/utilities-border.html
|
91
|
+
- app/views/start_bootstrap_admin_theme/pages/utilities-color.html
|
92
|
+
- app/views/start_bootstrap_admin_theme/pages/utilities-other.html
|
93
|
+
- config/routes.rb
|
94
|
+
- lib/start_bootstrap_admin_theme.rb
|
95
|
+
- lib/start_bootstrap_admin_theme/engine.rb
|
96
|
+
- lib/start_bootstrap_admin_theme/version.rb
|
97
|
+
- lib/tasks/start_bootstrap_admin_theme_tasks.rake
|
98
|
+
homepage: https://github.com/SnackNation/start_bootstrap_admin_theme
|
99
|
+
licenses:
|
100
|
+
- MIT
|
101
|
+
metadata: {}
|
102
|
+
post_install_message:
|
103
|
+
rdoc_options: []
|
104
|
+
require_paths:
|
105
|
+
- lib
|
106
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
111
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
112
|
+
requirements:
|
113
|
+
- - ">="
|
114
|
+
- !ruby/object:Gem::Version
|
115
|
+
version: '0'
|
116
|
+
requirements: []
|
117
|
+
rubygems_version: 3.0.3
|
118
|
+
signing_key:
|
119
|
+
specification_version: 4
|
120
|
+
summary: Rails engine for Start Bootstrap Admin Theme
|
121
|
+
test_files: []
|