Skip to content

Commit

Permalink
Fixed warnings triggered by gem build
Browse files Browse the repository at this point in the history
  • Loading branch information
jfederico committed Jul 19, 2019
1 parent 072d911 commit 1eb5352
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@
/spec/testing.csv
testdata/*.xml

/bbbevents-*
/bbbevents-*
/pec
9 changes: 5 additions & 4 deletions bbbevents.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ Gem::Specification.new do |spec|
spec.email = ["[email protected]"]

spec.summary = %q{Easily parse data from a BigBlueButton recording's events.xml.}
spec.description = %q{Easily parse data from a BigBlueButton recording's events.xml.}
spec.description = %q{Ruby gem for easily parse data from a BigBlueButton recording's events.xml.}
spec.homepage = "https://www.blindsidenetworks.com"
spec.license = "LGPL 3.0"
spec.license = "LGPL-3.0"

spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
Expand All @@ -21,10 +21,11 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.add_development_dependency "bundler", ">= 1.15"
spec.add_development_dependency "bundler", "~> 1.15"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "rspec", "~> 3.4"

# Gem dependecies.
spec.add_dependency "activesupport"
spec.add_dependency 'activesupport', '~> 5.0', '>= 5.0.0.1'

end

0 comments on commit 1eb5352

Please sign in to comment.