Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update haml requirement from ~> 4.0 to >= 4, < 6 #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
35 changes: 19 additions & 16 deletions Gemfile.lock
Expand Up @@ -2,7 +2,7 @@ PATH
remote: .
specs:
dj_mon (1.1.0)
haml (~> 4.0)
haml (>= 4, < 6)
rails (~> 3.1)

GEM
Expand Down Expand Up @@ -46,16 +46,18 @@ GEM
delayed_job (~> 3.0)
mongoid (~> 3.0)
erubis (2.7.0)
haml (4.0.1)
hike (1.2.1)
haml (5.2.1)
temple (>= 0.8.0)
tilt
hike (1.2.3)
i18n (0.6.1)
journey (1.0.4)
json (1.7.5)
json (1.8.6)
mail (2.4.4)
i18n (>= 0.4.0)
mime-types (~> 1.16)
treetop (~> 1.4.8)
mime-types (1.19)
mime-types (1.25.1)
mongoid (3.0.6)
activemodel (~> 3.1)
moped (~> 1.1)
Expand All @@ -64,13 +66,13 @@ GEM
moped (1.2.5)
multi_json (1.3.6)
origin (1.0.9)
polyglot (0.3.3)
rack (1.4.1)
rack-cache (1.2)
polyglot (0.3.5)
rack (1.4.7)
rack-cache (1.12.1)
rack (>= 0.4)
rack-ssl (1.3.2)
rack-ssl (1.3.4)
rack
rack-test (0.6.1)
rack-test (0.6.3)
rack (>= 1.0)
rails (3.2.8)
actionmailer (= 3.2.8)
Expand All @@ -87,23 +89,24 @@ GEM
rake (>= 0.8.7)
rdoc (~> 3.4)
thor (>= 0.14.6, < 2.0)
rake (0.9.2.2)
rdoc (3.12)
rake (13.0.3)
rdoc (3.12.2)
json (~> 1.4)
shoulda (3.1.1)
shoulda-context (~> 1.0)
shoulda-matchers (~> 1.2)
shoulda-context (1.0.0)
shoulda-matchers (1.3.0)
activesupport (>= 3.0.0)
sprockets (2.1.3)
sprockets (2.1.4)
hike (~> 1.2)
rack (~> 1.0)
tilt (~> 1.1, != 1.3.0)
sqlite3 (1.3.6)
thor (0.16.0)
tilt (1.3.3)
treetop (1.4.10)
temple (0.8.2)
thor (1.1.0)
tilt (1.4.1)
treetop (1.4.15)
polyglot
polyglot (>= 0.3.1)
tzinfo (0.3.33)
Expand Down
2 changes: 1 addition & 1 deletion dj_mon.gemspec
Expand Up @@ -13,7 +13,7 @@ Gem::Specification.new do |s|
s.homepage = "https://github.com/akshayrawat/dj_mon"

s.add_dependency "rails", "~> 3.1"
s.add_dependency "haml", "~> 4.0"
s.add_dependency "haml", ">= 4", "< 6"

s.add_development_dependency 'delayed_job_active_record'
s.add_development_dependency 'delayed_job_mongoid'
Expand Down