c80_feedback_form 0.1.0.1 → 0.1.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 47bb0f5d179f7899ec6cd191348e1ab96fcaa4c6
4
- data.tar.gz: 14e07ffb2db886175d952b116d61b37814c0672e
3
+ metadata.gz: 4acb0d9554f602e2465f9ab1b297f966b9ce4867
4
+ data.tar.gz: 8cef2b00406ec8f71dd8b49d35051fb51ea434bf
5
5
  SHA512:
6
- metadata.gz: 656f3ae473e44df3a415daed895e60e1c7bac4d1feff38c66a31caf062c3b103493a8c686470d17280fe6449d6c0ed04d8688ca4d8d84eee42056e0024474adb
7
- data.tar.gz: fde9ea7b536be8fc09e40dba25e917a5db5a94e43741dc0fcc485ec932ce65d4b57db4c4f26078ea53c0494105f495f6856980ab33c10b998a31bfd85e33ca78
6
+ metadata.gz: 8bb7d64b45112ce41b036add48439da0959125c15b6cbed6e535c2ec3d584c6f9e69ddbdee0985e57fc0f32b4deb8916da2b949f449ff910fbc3ba2e3bbf2039
7
+ data.tar.gz: 3070cff0cdc1873463f85d5173f95c98e2098af6e7ae0519da671e18c9a7ac9904a7500c6d134c7c7f7812924a3e32418bd2666b292fa94cf8ec7624f088405d
data/.gitignore CHANGED
@@ -8,3 +8,4 @@
8
8
  /pkg/
9
9
  /spec/reports/
10
10
  /tmp/
11
+ *.gem
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- [![Gem Version](https://badge.fury.io/rb/c80_feedback_form.svg)](http://badge.fury.io/rb/jquery_lazy_load)
1
+ [![Gem Version](https://badge.fury.io/rb/c80_feedback_form.svg)](http://badge.fury.io/rb/c80_feedback_form)
2
2
  [![Build Status](https://travis-ci.org/c080609a/c80_feedback_form.svg?branch=master)](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 this line into your `application.js`:
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`:
@@ -2,7 +2,5 @@
2
2
  *= require_self
3
3
  */
4
4
  @import "frontend/contacts";
5
- @import "bootstrap-sprockets";
6
- @import "bootstrap";
7
5
 
8
- .kapcha { display: none; }
6
+ .kapcha { display: none; }
@@ -1,3 +1,3 @@
1
1
  module C80FeedbackForm
2
- VERSION = "0.1.0.1"
2
+ VERSION = "0.1.0.2"
3
3
  end
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.1
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-21 00:00:00.000000000 Z
11
+ date: 2015-12-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler