Skip to content

Commit 7374962

Browse files
committed
Remove guard from the gemspec and put it in it's own group so Travis stops trying to install it
1 parent b4520e6 commit 7374962

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
bundler_args: --without development
1+
bundler_args: --without guard
22
rvm:
33
- 1.8.7
44
- 1.9.3

Gemfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ gemspec
33

44
gem "rake"
55

6+
group :guard do
7+
gem "guard-rspec", "~>0.6.0"
8+
end
9+
610
platforms :jruby do
711
gem "jruby-openssl"
812
end

ruby-smugmug.gemspec

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,11 @@ Gem::Specification.new do |s|
1010
s.homepage = "http://github.com/zanker/ruby-smugmug"
1111
s.summary = "SmugMug 1.3.0 API gem"
1212
s.description = "Gem for reading and writing data from the SmugMug 1.3.0 API."
13-
13+
1414
s.required_rubygems_version = ">= 1.3.6"
1515
s.rubyforge_project = "ruby-smugmug"
1616

1717
s.add_development_dependency "rspec", "~>2.8.0"
18-
s.add_development_dependency "guard-rspec", "~>0.6.0"
1918

2019
s.files = Dir.glob("lib/**/*") + %w[LICENSE README.md CHANGELOG.md Rakefile]
2120
s.require_path = "lib"

0 commit comments

Comments
 (0)