Skip to content

Commit 3941de5

Browse files
committed
Merge pull request #5 from nithinbekal/runtime-dependency
Add httparty and addressable gems as runtime dependencies
2 parents 0f1d102 + bc4f01b commit 3941de5

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.bundle
2+
*.gem
13
*.db
24
*~
35
*#

Gemfile.lock

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,12 @@ GEM
22
remote: http://rubygems.org/
33
specs:
44
addressable (2.3.4)
5-
coderay (1.0.9)
65
diff-lcs (1.2.2)
76
httparty (0.11.0)
87
multi_json (~> 1.0)
98
multi_xml (>= 0.5.2)
10-
method_source (0.8.2)
119
multi_json (1.7.3)
1210
multi_xml (0.5.3)
13-
pry (0.9.12.2)
14-
coderay (~> 1.0.5)
15-
method_source (~> 0.8)
16-
slop (~> 3.4)
1711
rspec (2.13.0)
1812
rspec-core (~> 2.13.0)
1913
rspec-expectations (~> 2.13.0)
@@ -22,13 +16,11 @@ GEM
2216
rspec-expectations (2.13.0)
2317
diff-lcs (>= 1.1.3, < 2.0)
2418
rspec-mocks (2.13.0)
25-
slop (3.4.6)
2619

2720
PLATFORMS
2821
ruby
2922

3023
DEPENDENCIES
3124
addressable
3225
httparty
33-
pry
3426
rspec

open_weather.gemspec

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,7 @@ Gem::Specification.new do |gem|
1414
gem.executables = gem.files.grep(/^bin/).map{ |f| File.basename(f) }
1515
gem.require_paths = ["lib"]
1616
gem.add_development_dependency "rspec"
17-
end
17+
18+
gem.add_runtime_dependency 'httparty'
19+
gem.add_runtime_dependency 'addressable'
20+
end

0 commit comments

Comments
 (0)