fe 2.1.0 → 2.1.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
  SHA256:
3
- metadata.gz: f3679834a5251fd9a7412f9da4734020a7b1a72dc9882afd2994c8fa6fbd92fd
4
- data.tar.gz: 4d0e2a3c4c2085bf1ff788912e85d0ca0ed012446acb137174ae42196a7546b8
3
+ metadata.gz: a12e14ff5fa1b0cf7c6c2ac0264a03b3e95a8f05dceb01bf42e0963ecb1436c4
4
+ data.tar.gz: a6d9669f7a71e364d1c114d7db3f5b515762beae8fd08ee8b3b73391c898d328
5
5
  SHA512:
6
- metadata.gz: 796bbd4824ffe28319b5dfc7365a93dedcb06fed9e3b3bfe60bd8f5168b3328f9f9b6f4387d589202dd66281999e4217d934d490de12d4dec845733386f9d52d
7
- data.tar.gz: 25addcd22738328428a59cdce369d221f8bd6131570d4923b71c4b18336c952553d51e32f8e08f8ae29b0d0cc25a6de21bf06f5b1473137fa976940a2e0a2810
6
+ metadata.gz: bc9e85eebb802c6085cd771e0eefcf23c2f34c6b7a26ecdae14751a32894d51cafe911ffbfce8a071fc989837b3e92a9659c1a64370220d86786a04b23855797
7
+ data.tar.gz: eadf4560863b3005841c19fc7b60b826b12b9b7a5d8f6e3503a4ae660b2fc48cc3dedadf8c341c39a46cefda15f0f99bf693b681f71699b2c2f06fc9410d18a7
data/README.md CHANGED
@@ -1,20 +1,24 @@
1
- ## Fe
2
-
3
- [![Build Status](https://travis-ci.org/CruGloabl/fe.png?branch=master)](https://travis-ci.org/CruGloabal/fe)
1
+ ## Fe (Form Engine)
4
2
 
5
3
  This project rocks and uses MIT-LICENSE.
6
4
 
5
+ Supports rails >= 5
6
+
7
7
  ### Development
8
8
 
9
9
  ### Testing
10
10
 
11
+ Note: The tests need ruby 2 to run, and is set up with rails 5.
12
+
11
13
  Setup the testing db
12
14
 
13
- bundle exec rake setup_db
15
+ Configure spec/dummy/config/database.yml
16
+
17
+ $ RAILS_ENV=test bundle exec rake app:db:environment:set db:create db:schema:load
14
18
 
15
19
  Run specs:
16
20
 
17
- bundle exec rake spec
21
+ $ bundle exec rake spec
18
22
 
19
23
  Run a specific spec:
20
24
 
@@ -56,7 +56,7 @@ $(document).on('ready turbo:load', function () {
56
56
  $(".future_answer, .future_target, .future_page").hide();
57
57
  $('#element_conditional_id').val('');
58
58
  $(".future_target input").removeAttr("checked");
59
- $("#element_conditional_type_").attr("checked", "checked");
59
+ $("#element_conditional_type_").prop("checked", true);
60
60
  }
61
61
  });
62
62