c80_order_form 0.1.0.9 → 0.1.0.10
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/README.md +4 -1
- data/app/assets/javascripts/frontend/ajax_form.js +5 -0
- data/app/assets/stylesheets/backend/active_admin_custom.scss +1 -1
- data/db/migrate/20160609210000_change_c80_order_form_message_subj_id_type.rb +12 -0
- data/lib/c80_order_form/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6841168ef16b3a9e70d3863b85a4117447ebd423
|
4
|
+
data.tar.gz: 79513d72b86bf09d3c563f2c35383bdfa9881ad6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bd234681f4d10d30f81a845bd75b413b3dfdb71712baeda685de3dea9651d819bcb61eb30d18ae0180fc68d10e47027e6adf6b9aad81c8d20023282c750bd017
|
7
|
+
data.tar.gz: 5c5de5212763d4e731e92e6e2d61ad708d152cb9b3886a37385c69d87cd724bca60c3c5d3d5db1f6c45ee98a13889ce4989ffeedf455c9ed3b5b9436345c7497
|
data/README.md
CHANGED
@@ -42,6 +42,7 @@ gem 'c80_modal_forms'
|
|
42
42
|
You will need to add these lines into your `application.js`:
|
43
43
|
|
44
44
|
//= require bootstrap/modal
|
45
|
+
//= require bootstrap/transitions
|
45
46
|
//= require c80_modals_form
|
46
47
|
//= require c80_order_form
|
47
48
|
|
@@ -59,6 +60,8 @@ Add this line into `routes.rb`:
|
|
59
60
|
|
60
61
|
mount C80OrderForm::Engine => '/'
|
61
62
|
|
63
|
+
Form invoked by link with class `c80_order_invoking_btn`.
|
64
|
+
|
62
65
|
## Development
|
63
66
|
|
64
67
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `bin/console` for an interactive prompt that will allow you to experiment.
|
@@ -67,7 +70,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
67
70
|
|
68
71
|
## Contributing
|
69
72
|
|
70
|
-
1. Fork it ( https://github.com/
|
73
|
+
1. Fork it ( https://github.com/c080609a/c80_order_form/fork )
|
71
74
|
2. Create your feature branch (`git checkout -b my-new-feature`)
|
72
75
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
73
76
|
4. Push to the branch (`git push origin my-new-feature`)
|
@@ -0,0 +1,12 @@
|
|
1
|
+
class ChangeC80OrderFormMessageSubjIdType < ActiveRecord::Migration
|
2
|
+
def self.up
|
3
|
+
change_table :c80_order_form_message_orders do |t|
|
4
|
+
t.change :subj_id, :string
|
5
|
+
end
|
6
|
+
end
|
7
|
+
def self.down
|
8
|
+
change_table :c80_order_form_message_orders do |t|
|
9
|
+
t.change :subj_id, :integer
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: c80_order_form
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.0.
|
4
|
+
version: 0.1.0.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- C80609A
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-06-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -96,6 +96,7 @@ files:
|
|
96
96
|
- db/migrate/20151229144545_add_subj_id_to_c80_order_form_message_orders.rb
|
97
97
|
- db/migrate/20151229234343_create_c80_order_form_settings.rb
|
98
98
|
- db/migrate/20151230023030_change_c80_order_form_message_order_comment.rb
|
99
|
+
- db/migrate/20160609210000_change_c80_order_form_message_subj_id_type.rb
|
99
100
|
- lib/c80_order_form.rb
|
100
101
|
- lib/c80_order_form/engine.rb
|
101
102
|
- lib/c80_order_form/version.rb
|