c80_feedback_form 0.1.0.1 → 0.1.0.2
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/.gitignore +1 -0
- data/README.md +11 -2
- data/app/assets/stylesheets/c80_feedback_form.scss +1 -3
- data/lib/c80_feedback_form/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4acb0d9554f602e2465f9ab1b297f966b9ce4867
|
|
4
|
+
data.tar.gz: 8cef2b00406ec8f71dd8b49d35051fb51ea434bf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8bb7d64b45112ce41b036add48439da0959125c15b6cbed6e535c2ec3d584c6f9e69ddbdee0985e57fc0f32b4deb8916da2b949f449ff910fbc3ba2e3bbf2039
|
|
7
|
+
data.tar.gz: 3070cff0cdc1873463f85d5173f95c98e2098af6e7ae0519da671e18c9a7ac9904a7500c6d134c7c7f7812924a3e32418bd2666b292fa94cf8ec7624f088405d
|
data/.gitignore
CHANGED
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
[](http://badge.fury.io/rb/
|
|
1
|
+
[](http://badge.fury.io/rb/c80_feedback_form)
|
|
2
2
|
[](https://travis-ci.org/c080609a/c80_feedback_form)
|
|
3
3
|
|
|
4
4
|
# C80FeedbackForm
|
|
@@ -27,19 +27,28 @@ NOTE: This gem uses `activeadmin` gem, `jQuery` gem, `bootstrap-sass` gem and `c
|
|
|
27
27
|
|
|
28
28
|
Ensure, that your application's `Gemfile` contains these lines:
|
|
29
29
|
```ruby
|
|
30
|
+
# active admin
|
|
30
31
|
gem 'activeadmin'
|
|
32
|
+
gem 'devise'
|
|
33
|
+
gem 'cancan' # or cancancan
|
|
34
|
+
gem 'draper'
|
|
35
|
+
gem 'pundit'
|
|
36
|
+
|
|
31
37
|
gem 'jquery-rails'
|
|
32
38
|
gem 'bootstrap-sass'
|
|
33
39
|
gem 'c80_modal_forms'
|
|
34
40
|
```
|
|
35
41
|
|
|
36
|
-
You will need to add
|
|
42
|
+
You will need to add these lines into your `application.js`:
|
|
37
43
|
|
|
44
|
+
//= require bootstrap/modal
|
|
38
45
|
//= require c80_modals_form
|
|
39
46
|
//= require c80_feedback_form
|
|
40
47
|
|
|
41
48
|
And add this line into `application.scss`:
|
|
42
49
|
|
|
50
|
+
@import "bootstrap-sprockets";
|
|
51
|
+
@import "bootstrap";
|
|
43
52
|
@import "c80_feedback_form";
|
|
44
53
|
|
|
45
54
|
Add this line into `active_admin.scss`:
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: c80_feedback_form
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.0.
|
|
4
|
+
version: 0.1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- C80609A
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-12-
|
|
11
|
+
date: 2015-12-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|