conversation_forms 0.3.0 → 0.4.0
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 +0 -5
- data/Rakefile +3 -0
- data/app/assets/config/conversation_forms_manifest.js +2 -0
- data/app/assets/javascripts/conversation_forms/application.js +13 -0
- data/{lib/assets/javascripts → app/assets/javascripts/conversation_forms}/conversation_forms.coffee +0 -0
- data/{lib/assets/stylesheets → app/assets/stylesheets/conversation_forms}/application.css +0 -0
- data/{lib/assets/stylesheets → app/assets/stylesheets/conversation_forms}/conversation_forms.scss +0 -0
- data/app/controllers/conversation_forms/application_controller.rb +5 -0
- data/app/helpers/conversation_forms/application_helper.rb +4 -0
- data/app/jobs/conversation_forms/application_job.rb +4 -0
- data/app/mailers/conversation_forms/application_mailer.rb +6 -0
- data/app/models/conversation_forms/application_record.rb +5 -0
- data/app/views/layouts/conversation_forms/application.html.erb +14 -0
- data/config/routes.rb +2 -0
- data/lib/conversation_forms/engine.rb +5 -0
- data/lib/conversation_forms/version.rb +1 -3
- data/lib/conversation_forms.rb +3 -4
- metadata +14 -5
- data/lib/assets/javascripts/index.js +0 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e94e40b9637860d8bb543ae7968896493ff0532e
|
4
|
+
data.tar.gz: c322702f0a0ac72ac455059379c75ebd3915f6c2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 108e42fb9bfbcd0881485e9b43ca51bbc629a5505a978a0dd0c9766a6c9f0559cc56f9c6bc205d64e0e026f06e112af1d995a48c5852f883205714e5d95b33a9
|
7
|
+
data.tar.gz: 929adc4baee02e12142a8cbf38d61d1e9c6515f872c533f952879e238a04775d30be681ae8a61cd42a7113ab0680a57a173141135abcf8cd68297900a7352269
|
data/README.md
CHANGED
data/Rakefile
CHANGED
@@ -0,0 +1,13 @@
|
|
1
|
+
// This is a manifest file that'll be compiled into application.js, which will include all the files
|
2
|
+
// listed below.
|
3
|
+
//
|
4
|
+
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
|
5
|
+
// or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
|
6
|
+
//
|
7
|
+
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
|
8
|
+
// compiled file. JavaScript code in this file should be added after the last require_* statement.
|
9
|
+
//
|
10
|
+
// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
|
11
|
+
// about supported directives.
|
12
|
+
//
|
13
|
+
//= require_tree .
|
data/{lib/assets/javascripts → app/assets/javascripts/conversation_forms}/conversation_forms.coffee
RENAMED
File without changes
|
File without changes
|
data/{lib/assets/stylesheets → app/assets/stylesheets/conversation_forms}/conversation_forms.scss
RENAMED
File without changes
|
@@ -0,0 +1,14 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>Conversation forms</title>
|
5
|
+
<%= stylesheet_link_tag "conversation_forms/application", media: "all" %>
|
6
|
+
<%= javascript_include_tag "conversation_forms/application" %>
|
7
|
+
<%= csrf_meta_tags %>
|
8
|
+
</head>
|
9
|
+
<body>
|
10
|
+
|
11
|
+
<%= yield %>
|
12
|
+
|
13
|
+
</body>
|
14
|
+
</html>
|
data/config/routes.rb
ADDED
data/lib/conversation_forms.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: conversation_forms
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sampson Crowley
|
@@ -69,11 +69,20 @@ files:
|
|
69
69
|
- MIT-LICENSE
|
70
70
|
- README.md
|
71
71
|
- Rakefile
|
72
|
-
-
|
73
|
-
-
|
74
|
-
-
|
75
|
-
-
|
72
|
+
- app/assets/config/conversation_forms_manifest.js
|
73
|
+
- app/assets/javascripts/conversation_forms/application.js
|
74
|
+
- app/assets/javascripts/conversation_forms/conversation_forms.coffee
|
75
|
+
- app/assets/stylesheets/conversation_forms/application.css
|
76
|
+
- app/assets/stylesheets/conversation_forms/conversation_forms.scss
|
77
|
+
- app/controllers/conversation_forms/application_controller.rb
|
78
|
+
- app/helpers/conversation_forms/application_helper.rb
|
79
|
+
- app/jobs/conversation_forms/application_job.rb
|
80
|
+
- app/mailers/conversation_forms/application_mailer.rb
|
81
|
+
- app/models/conversation_forms/application_record.rb
|
82
|
+
- app/views/layouts/conversation_forms/application.html.erb
|
83
|
+
- config/routes.rb
|
76
84
|
- lib/conversation_forms.rb
|
85
|
+
- lib/conversation_forms/engine.rb
|
77
86
|
- lib/conversation_forms/version.rb
|
78
87
|
- lib/tasks/conversation_forms_tasks.rake
|
79
88
|
homepage: https://github.com/SampsonCrowley/conversation_forms
|