simplify-admin-rails 0.3.0 → 0.3.1
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/.gitconfig +4 -0
- data/.gitignore +1 -0
- data/Gemfile +4 -0
- data/README.md +11 -16
- data/lib/simplify/admin/rails/version.rb +1 -1
- data/simplify-admin-rails.gemspec +3 -0
- metadata +51 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ba175a59922090ca80ece51c4aa43e9991365263
|
4
|
+
data.tar.gz: '0873ec24e7eba97020ae4d5d48c4d6b7cc92dc5a'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 328ef7cd07862757bb5f376af4006935e671e69205ead3bc0d6b8cdf5786e7cda70b0a4283768fee61664686ac1f90faed3653051d09ea4dbf131296eae79e75
|
7
|
+
data.tar.gz: 04b7c25fcde1efa3e2981ddba3ba77788bddbc2bac8b1d5c5385261610d6d8682335bd1e868ea0ef4cd9fa741fb9507b4350481524988b87f1ef92d477f0f87e
|
data/.gitconfig
ADDED
data/.gitignore
CHANGED
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -1,33 +1,28 @@
|
|
1
1
|
# Simplify::Admin::Rails
|
2
|
-
-
|
2
|
+
- Js part of simplify\_admin has been removed.
|
3
3
|
|
4
4
|
## Installation
|
5
|
-
- bootstrap-sass, font-awesome-rails, jQuery-rails are necessary. And require them above the simplify\_admin css
|
6
|
-
|
7
|
-
Add this line to your application's Gemfile:
|
5
|
+
- __*bootstrap-sass, font-awesome-rails, jQuery-rails*__ are necessary. And require them above the simplify\_admin css
|
8
6
|
|
7
|
+
- Add this line to your application's Gemfile:
|
9
8
|
```ruby
|
10
9
|
gem 'simplify-admin-rails'
|
11
10
|
gem 'jquery-rails'
|
12
11
|
gem 'font-awesome-rails'
|
13
12
|
```
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
Or install it yourself as:
|
19
|
-
$ gem install simplify-admin-rails
|
13
|
+
- Then run: `bundle install`
|
14
|
+
- Or install it yourself as: `gem install simplify-admin-rails`
|
15
|
+
- Simplify admin use ionicons fonts, put them under `/assets/fonts` directory.
|
20
16
|
|
21
17
|
## Usage
|
22
|
-
```
|
23
|
-
|
24
|
-
@import bootstrap
|
25
|
-
@import font-awesome
|
26
|
-
@import simplify_admin
|
18
|
+
```javascript
|
19
|
+
// Add it in admin.scss and admin.js
|
20
|
+
@import "bootstrap";
|
21
|
+
@import "font-awesome";
|
22
|
+
@import "simplify_admin";
|
27
23
|
|
28
24
|
//= require simplify_admin
|
29
25
|
```
|
30
26
|
|
31
27
|
## License
|
32
28
|
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
33
|
-
|
@@ -24,4 +24,7 @@ Gem::Specification.new do |spec|
|
|
24
24
|
spec.add_development_dependency "bundler", "~> 1.14"
|
25
25
|
spec.add_development_dependency "rake", "~> 10.0"
|
26
26
|
spec.add_development_dependency "rspec", "~> 3.0"
|
27
|
+
spec.add_development_dependency "jquery-rails", "~> 4"
|
28
|
+
spec.add_development_dependency "bootstrap-sass", '~> 3.3.7', '>= 3.3.7'
|
29
|
+
spec.add_development_dependency "font-awesome-rails", "~> 4"
|
27
30
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: simplify-admin-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Naive CAI
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-10-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -52,6 +52,54 @@ dependencies:
|
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '3.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: jquery-rails
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '4'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '4'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: bootstrap-sass
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 3.3.7
|
76
|
+
- - ">="
|
77
|
+
- !ruby/object:Gem::Version
|
78
|
+
version: 3.3.7
|
79
|
+
type: :development
|
80
|
+
prerelease: false
|
81
|
+
version_requirements: !ruby/object:Gem::Requirement
|
82
|
+
requirements:
|
83
|
+
- - "~>"
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
version: 3.3.7
|
86
|
+
- - ">="
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: 3.3.7
|
89
|
+
- !ruby/object:Gem::Dependency
|
90
|
+
name: font-awesome-rails
|
91
|
+
requirement: !ruby/object:Gem::Requirement
|
92
|
+
requirements:
|
93
|
+
- - "~>"
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: '4'
|
96
|
+
type: :development
|
97
|
+
prerelease: false
|
98
|
+
version_requirements: !ruby/object:Gem::Requirement
|
99
|
+
requirements:
|
100
|
+
- - "~>"
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: '4'
|
55
103
|
description: " Quickly start admin page using SimplifyAdmin theme. "
|
56
104
|
email:
|
57
105
|
- 835010809@qq.com
|
@@ -59,6 +107,7 @@ executables: []
|
|
59
107
|
extensions: []
|
60
108
|
extra_rdoc_files: []
|
61
109
|
files:
|
110
|
+
- ".gitconfig"
|
62
111
|
- ".gitignore"
|
63
112
|
- ".rspec"
|
64
113
|
- ".travis.yml"
|