Skip to content

Commit 4dc6674

Browse files
committed
update readme; bump version
1 parent 3f36dd2 commit 4dc6674

File tree

3 files changed

+14
-11
lines changed

3 files changed

+14
-11
lines changed

README.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,17 @@ conflicts with installation of SassC-Rails. While we have no built-in solution
7878
for this, please check out [this issue](https://github.com/bolandrm/sassc-rails/issues/6)
7979
for a workaround.
8080

81+
82+
## Credits
83+
84+
This gem is based on [sass-rails](https://github.com/rails/sass-rails), and
85+
is maintained by [Ryan Boland](https://ryanboland.com) and [awesome contributors](https://github.com/bolandrm/sassc-rails/graphs/contributors).
86+
87+
8188
## Changelog
8289

83-
- **1.1.0** (unreleased)
90+
- **1.1.0**
91+
- Moved under the official sass organization!
8492
- [Source line comments](https://github.com/bolandrm/sassc-rails/pull/24) (`app.config.sass.line_comments`)
8593
- [Prevent sass-rails railtie from running](https://github.com/bolandrm/sassc-rails/pull/34)
8694
- [CSS compression may be disabled in test mode](https://github.com/bolandrm/sassc-rails/issues/33). Special thanks to [this Sass-Rails PR](https://github.com/rails/sass-rails/pull/338) for inspiration.
@@ -89,6 +97,7 @@ for a workaround.
8997
- Add support for inline source maps
9098
- Support compression in the way that Sass-Rails handles it
9199

100+
92101
## Contributing
93102

94103
1. Fork it ( https://github.com/[my-github-username]/sassc-rails/fork )
@@ -97,9 +106,3 @@ for a workaround.
97106
1. Add Tests
98107
1. Push to the branch (`git push origin my-new-feature`)
99108
1. Create a new Pull Request
100-
101-
102-
## Credits
103-
104-
This gem is based on [sass-rails](https://github.com/rails/sass-rails), and
105-
is maintained by [Ryan Boland](https://ryanboland.com) and [awesome contributors](https://github.com/bolandrm/sassc-rails/graphs/contributors).

lib/sassc/rails/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module SassC
22
module Rails
3-
VERSION = "1.0.0"
3+
VERSION = "1.1.0"
44
end
55
end

sassc-rails.gemspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ Gem::Specification.new do |spec|
77
spec.name = "sassc-rails"
88
spec.version = SassC::Rails::VERSION
99
spec.authors = ["Ryan Boland"]
10-
spec.email = ["bolandryanm@gmail.com"]
10+
spec.email = ["ryan@tanookilabs.com"]
1111
spec.summary = %q{Integrate SassC-Ruby into Rails.}
1212
spec.description = %q{Integrate SassC-Ruby into Rails.}
13-
spec.homepage = "https://github.com/bolandrm/sassc-rails"
13+
spec.homepage = "https://github.com/sass/sassc-rails"
1414
spec.license = "MIT"
1515

1616
spec.files = `git ls-files -z`.split("\x0")
@@ -26,7 +26,7 @@ Gem::Specification.new do |spec|
2626
# Unfortunately we require sass for now, so that we can
2727
# reuse portions of the Sprockets template
2828
spec.add_dependency 'sass'
29-
spec.add_dependency "sassc", "~> 1.5"
29+
spec.add_dependency "sassc", "~> 1.6"
3030

3131
spec.add_dependency "tilt"
3232

0 commit comments

Comments
 (0)