forked from sds/scss-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
We shouldn't be commiting the `Gemfile.lock` file in the repository. Instead, the gemspec should specify all necessary dependencies. Change-Id: I1ff83ed955744f44fdf8002e41ec3da66f4d218a Reviewed-on: https://gerrit.causes.com/29921 Tested-by: jenkins <[email protected]> Reviewed-by: Shane da Silva <[email protected]>
- Loading branch information
Shane da Silva
committed
Oct 12, 2013
1 parent
ff19b74
commit c127392
Showing
4 changed files
with
6 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Gemfile.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
source "http://rubygems.org" | ||
source 'http://rubygems.org' | ||
|
||
gemspec |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ Gem::Specification.new do |s| | |
s.version = SCSSLint::VERSION | ||
s.license = 'MIT' | ||
s.platform = Gem::Platform::RUBY | ||
s.authors = ['Causes Engineering'] | ||
s.authors = ['Causes Engineering', 'Shane da Silva'] | ||
s.email = ['[email protected]', '[email protected]'] | ||
s.homepage = 'http://github.com/causes/scss-lint' | ||
s.summary = 'SCSS lint tool' | ||
|
@@ -19,9 +19,9 @@ Gem::Specification.new do |s| | |
|
||
s.required_ruby_version = '>= 1.9.3' | ||
|
||
s.add_dependency 'colorize' | ||
s.add_dependency 'colorize', '0.5.8' | ||
s.add_dependency 'sass', '3.2.10' # Hard dependency since we monkey patch AST | ||
|
||
s.add_development_dependency 'nokogiri' | ||
s.add_development_dependency 'rspec' | ||
s.add_development_dependency 'nokogiri', '1.6.0' | ||
s.add_development_dependency 'rspec', '2.13.0' | ||
end |