Skip to content

Commit

Permalink
Remove Gemfile.lock
Browse files Browse the repository at this point in the history
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
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 37 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Gemfile.lock
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
source "http://rubygems.org"
source 'http://rubygems.org'

gemspec
32 changes: 0 additions & 32 deletions Gemfile.lock

This file was deleted.

8 changes: 4 additions & 4 deletions scss-lint.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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

0 comments on commit c127392

Please sign in to comment.