Skip to content

Commit

Permalink
Merge pull request #1 from sass/master
Browse files Browse the repository at this point in the history
Pull form upstream
  • Loading branch information
partounian authored Jul 12, 2019
2 parents cd6e779 + 59ad121 commit e4ebd27
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,8 @@ is maintained by [Ryan Boland](https://ryanboland.com) and [awesome contributors

## Changelog

- **2.1.2**
- [Correct reference to SassC::Script::Value::String](https://github.com/sass/sassc-rails/pull/129)
- **2.1.1**
- [Fix Scaffolding](https://github.com/sass/sassc-rails/pull/119)
- **2.1.0**
Expand Down
2 changes: 1 addition & 1 deletion lib/sassc/rails/functions.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
module Sprockets
module SassFunctions
def asset_data_url(path)
SassC::Script::String.new("url(" + sprockets_context.asset_data_uri(path.value) + ")")
::SassC::Script::Value::String.new("url(" + sprockets_context.asset_data_uri(path.value) + ")")
end
end
end
Expand Down
2 changes: 1 addition & 1 deletion lib/sassc/rails/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module SassC
module Rails
VERSION = "2.1.1"
VERSION = "2.1.2"
end
end

0 comments on commit e4ebd27

Please sign in to comment.