fe 2.1.1 → 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: 3a2c83491f2a6ee20b2dc846b7ceded9d8db025b5c7d0007a23e9c418d4dbe7c
4
- data.tar.gz: 2e3d3d5ea786643dbb0db52ea078941ff28ffc2e0ed7901c06a84dc0a099b5e6
3
+ metadata.gz: a12e14ff5fa1b0cf7c6c2ac0264a03b3e95a8f05dceb01bf42e0963ecb1436c4
4
+ data.tar.gz: a6d9669f7a71e364d1c114d7db3f5b515762beae8fd08ee8b3b73391c898d328
5
5
  SHA512:
6
- metadata.gz: 2fcb6dfcf5ce6cc84ddce16a47b0a7c6eefe0ad2198b220b258b880306742fdcaa2a184117930441d3f25c80dadb70d5ee482b1813792fb0c4488b936a679c69
7
- data.tar.gz: f98502725060fe3346226dea0ad319dbe6d485658d6c57da4a17b9834114b845b53865da5166da068f6d5f787474571446e6b91475eacb0d3c7629ee677b1bb0
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