conversation_forms 0.5.0 → 0.6.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/Gemfile.lock +1 -1
- data/assets/javascripts/{conversation_forms/conversation_forms.coffee → conversation_forms.coffee} +0 -0
- data/assets/stylesheets/{conversation_forms/conversation_forms.scss → conversation_forms.scss} +0 -0
- data/lib/conversation_forms/engine.rb +1 -1
- data/lib/conversation_forms/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 114abff1112432e5e5b32d1cef737f7725b2100b
|
|
4
|
+
data.tar.gz: 837eb6940b9388e5352a1098fc2355f3fb23d3cd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2bf7c5d4d49123337040598848eceecfa60755027bef4deae4d8ded87566b44f2672ebf317824d165d9ff85400323d185e0c57bdd08ff22b47cb49b6a00defbe
|
|
7
|
+
data.tar.gz: b0b3138e71aca1f10c0c3ec166e4de86beec805acb47aaf5507a4b5bb090c2eb6d0d0053ad49fb3e747e992f76885ef651b0eda741ced1d8b8eb9e63702a5466
|
data/Gemfile.lock
CHANGED
data/assets/javascripts/{conversation_forms/conversation_forms.coffee → conversation_forms.coffee}
RENAMED
|
File without changes
|
data/assets/stylesheets/{conversation_forms/conversation_forms.scss → conversation_forms.scss}
RENAMED
|
File without changes
|
|
@@ -2,7 +2,7 @@ module ConversationForms
|
|
|
2
2
|
module Rails
|
|
3
3
|
class Engine < ::Rails::Engine
|
|
4
4
|
initializer 'conversation_forms.assets.precompile' do |app|
|
|
5
|
-
%w(stylesheets
|
|
5
|
+
%w(stylesheets javascripts).each do |sub|
|
|
6
6
|
app.config.assets.paths << root.join('assets', sub).to_s
|
|
7
7
|
end
|
|
8
8
|
|
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.6.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sampson Crowley
|
|
@@ -240,10 +240,10 @@ files:
|
|
|
240
240
|
- MIT-LICENSE
|
|
241
241
|
- README.md
|
|
242
242
|
- Rakefile
|
|
243
|
-
- assets/javascripts/conversation_forms
|
|
243
|
+
- assets/javascripts/conversation_forms.coffee
|
|
244
244
|
- assets/javascripts/index.js
|
|
245
245
|
- assets/stylesheets/application.css
|
|
246
|
-
- assets/stylesheets/conversation_forms
|
|
246
|
+
- assets/stylesheets/conversation_forms.scss
|
|
247
247
|
- bin/test
|
|
248
248
|
- conversation_forms.gemspec
|
|
249
249
|
- lib/conversation_forms.rb
|