-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove rails upper version restriction
- Loading branch information
Showing
2 changed files
with
9 additions
and
3 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
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | |
|
||
Gem::Specification.new do |spec| | ||
spec.name = 'sql_query' | ||
spec.version = '0.7.2' | ||
spec.version = '0.7.4' | ||
spec.authors = ['sufleR'] | ||
spec.email = ['[email protected]'] | ||
spec.summary = 'Ruby gem to load and execute SQL queries from `.sql.erb` templates' | ||
|
@@ -23,7 +23,7 @@ Gem::Specification.new do |spec| | |
|
||
spec.required_ruby_version = '>= 1.9.3' | ||
|
||
spec.add_dependency 'activerecord', '>= 3.2', '<= 7.0' | ||
spec.add_dependency 'activerecord', '>= 3.2' | ||
spec.add_development_dependency 'appraisal' | ||
spec.add_development_dependency 'bundler' | ||
spec.add_development_dependency 'pg', '~> 0.18' | ||
|