Skip to content

Commit a4a571c

Browse files
committed
Remove unutilized coffee-rails dependency
All coffee script has been translated into vanilla javascript and no longer requires the gem coffee-rails. This PR removes the dependency and all associated language associated with utilization of the gem.
1 parent 4cc1d5a commit a4a571c

File tree

9 files changed

+7
-14
lines changed

9 files changed

+7
-14
lines changed

.editorconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ tab_width = 2
1515
[**.rb]
1616
max_line_length = 80
1717

18-
[**.js, **.coffee]
18+
[**.js]
1919
max_line_length = 120
2020

2121
[*.md]

backend/README.md

+1-6
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,7 @@ Backend contains the controllers, views, and assets making up the admin interfac
88

99
Can be found in [app/assets/javascripts/spree/backend/](./app/assets/javascripts/spree/backend/)
1010

11-
Our scripts are written in a mix of CoffeeScript and JavaScript (ES5). We can't
12-
easily use a transpiler for ECMAScript >= 6 without adding additional steps for
13-
applications using solidus\_admin.
14-
15-
Though we have existing CoffeeScript files, any new files should be in
16-
JavaScript (ES5).
11+
Any new files should be in JavaScript (ES5).
1712

1813
### Stylesheets
1914

backend/lib/spree/backend.rb

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
require 'spree_api'
55

66
require 'jquery-rails'
7-
require 'coffee-rails'
87
require 'sassc-rails'
98
require 'handlebars_assets'
109
require 'font-awesome-rails'

backend/solidus_backend.gemspec

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ Gem::Specification.new do |s|
2626
s.add_dependency 'solidus_api', s.version
2727
s.add_dependency 'solidus_core', s.version
2828

29-
s.add_dependency 'coffee-rails'
3029
s.add_dependency 'font-awesome-rails', '~> 4.0'
3130
s.add_dependency 'jbuilder', '~> 2.8'
3231
s.add_dependency 'jquery-rails'

backend/spec/teaspoon_env.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
config.suite do |suite|
3333
suite.use_framework :mocha, "2.3.3"
34-
suite.matcher = "{spec/javascripts,app/assets}/**/*_spec.{js,js.coffee,coffee}"
34+
suite.matcher = "{spec/javascripts,app/assets}/**/*_spec.js"
3535
suite.helper = "spec_helper"
3636
suite.boot_partial = "/boot"
3737
suite.expand_assets = true

core/lib/generators/solidus/install/templates/vendor/assets/javascripts/spree/backend/all.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// This is a manifest file that'll be compiled into including all the files listed below.
2-
// Add new JavaScript/Coffee code in separate files in this directory and they'll automatically
2+
// Add new JavaScript code in separate files in this directory and they'll automatically
33
// be included in the compiled file accessible from http://example.com/assets/application.js
44
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
55
// the compiled file.

core/lib/generators/solidus/install/templates/vendor/assets/javascripts/spree/frontend/all.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// This is a manifest file that'll be compiled into including all the files listed below.
2-
// Add new JavaScript/Coffee code in separate files in this directory and they'll automatically
2+
// Add new JavaScript code in separate files in this directory and they'll automatically
33
// be included in the compiled file accessible from http://example.com/assets/application.js
44
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
55
// the compiled file.

core/lib/spree/testing_support/dummy_app/assets/javascripts/spree/backend/all.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// This is a manifest file that'll be compiled into including all the files listed below.
2-
// Add new JavaScript/Coffee code in separate files in this directory and they'll automatically
2+
// Add new JavaScript code in separate files in this directory and they'll automatically
33
// be included in the compiled file accessible from http://example.com/assets/application.js
44
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
55
// the compiled file.

core/lib/spree/testing_support/dummy_app/assets/javascripts/spree/frontend/all.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// This is a manifest file that'll be compiled into including all the files listed below.
2-
// Add new JavaScript/Coffee code in separate files in this directory and they'll automatically
2+
// Add new JavaScript code in separate files in this directory and they'll automatically
33
// be included in the compiled file accessible from http://example.com/assets/application.js
44
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
55
// the compiled file.

0 commit comments

Comments
 (0)