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

Move dependencies to calendarium-romanum.gemspec #45

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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 2 additions & 21 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,23 +1,4 @@
source 'https://rubygems.org'

gem 'thor'
gem 'i18n'
gem 'roman-numerals'

group :development, :test do
gem 'rake'
end

group :development do
gem 'rubocop'
end

group :test do
gem 'rspec'
gem 'aruba'
# We don't use cucumber, but it is required by aruba
# and cucumber >= 3.0.0 requires ruby >= 2.1,
# but we want the tests to pass on ruby 2.0 as earliest target
gem 'cucumber', '~> 2.99'
gem 'simplecov'
end
# Load dependencies from calendarium-romanum.gemspec
gemspec
24 changes: 15 additions & 9 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
PATH
remote: .
specs:
calendarium-romanum (0.5.0)
i18n (~> 0.6)
roman-numerals (~> 0.3)
thor (~> 0.18)

GEM
remote: https://rubygems.org/
specs:
Expand Down Expand Up @@ -68,15 +76,13 @@ PLATFORMS
ruby

DEPENDENCIES
aruba
aruba (~> 0.8)
calendarium-romanum!
cucumber (~> 2.99)
i18n
rake
roman-numerals
rspec
rubocop
simplecov
thor
rake (~> 12.0)
rspec (~> 3.5)
rubocop (~> 0.46)
simplecov (~> 0.12)

BUNDLED WITH
1.13.6
1.17.2
7 changes: 7 additions & 0 deletions calendarium-romanum.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,11 @@ Gem::Specification.new do |s|
s.add_dependency 'roman-numerals', '~> 0.3'
s.add_development_dependency 'rake', '~> 12.0'
s.add_development_dependency 'rspec', '~> 3.5'
s.add_development_dependency 'aruba', '~> 0.8'
# We don't use cucumber, but it is required by aruba
# and cucumber >= 3.0.0 requires ruby >= 2.1,
# but we want the tests to pass on ruby 2.0 as earliest target
s.add_development_dependency 'cucumber', '~>2.99'
s.add_development_dependency 'simplecov', '~> 0.12'
s.add_development_dependency 'rubocop', '~> 0.46'
end