Skip to content

Commit e0a9093

Browse files
committed
Updates dependencies.
1 parent e590743 commit e0a9093

File tree

7 files changed

+17
-6
lines changed

7 files changed

+17
-6
lines changed

.yardopts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
--no-private

Gemfile

+1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ group :test, :development do
99
gem 'pry'
1010
gem 'pry-stack_explorer'
1111
gem 'pry-nav'
12+
gem 'yard'
1213
end

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ WarpCore is a set of components and classes commonly used for quickly building s
55
### Code Status
66
[![Gem Version](https://badge.fury.io/rb/warpcore.svg)](https://badge.fury.io/rb/warpcore)
77
[![Build Status](https://travis-ci.org/modernistik/warpcore.svg?branch=master)](https://travis-ci.org/modernistik/warpcore)
8+
[![API Reference](http://img.shields.io/badge/api-docs-blue.svg)](https://www.modernistik.com/gems/warpcore/)
89

910
## Installation
1011

Rakefile

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/usr/bin/env rake
22
require "bundler/gem_tasks"
33
require 'rake/testtask'
4+
require 'yard'
45

56
Rake::TestTask.new do |t|
67
t.libs << 'lib/parse/stack'
@@ -22,6 +23,12 @@ task 'yard:stats' do
2223
end
2324

2425
desc 'Start the yard server'
25-
task 'yard' do
26+
task 'docs' do
2627
exec 'rm -rf ./yard && yard server --reload'
2728
end
29+
30+
YARD::Rake::YardocTask.new do |t|
31+
t.files = ['lib/**/*.rb'] # optional
32+
# t.options = ['--any', '--extra', '--opts'] # optional
33+
t.stats_options = ['--list-undoc'] # optional
34+
end

lib/warpcore.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
exit if ENV['MERCURY_URL'] # don't use master branch
22
# Load all component sets.
33
require 'active_support'
44
require 'active_support/core_ext'

lib/warpcore/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
# and easier to maintain ruby-based applications with Parse.
33
module WarpCore
44
# Version number
5-
VERSION = "0.2.1"
5+
VERSION = "0.2.2"
66
end

warpcore.gemspec

+4-3
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,17 @@ Gem::Specification.new do |spec|
2929
spec.required_ruby_version = '>= 2.3'
3030

3131
spec.add_runtime_dependency "activesupport", '~> 5'
32-
spec.add_runtime_dependency "parse-stack", '~> 1'
32+
spec.add_runtime_dependency "parse-stack", ['> 1.6', '< 2']
3333
spec.add_runtime_dependency "parse-stack-async", '< 2'
3434
spec.add_runtime_dependency "parse-server-sdk", '~> 2'
3535
spec.add_runtime_dependency "redis", ['> 3', '< 4']
3636
spec.add_runtime_dependency "sucker_punch", '~> 2'
37-
spec.add_runtime_dependency "sidekiq", '~> 4'
38-
spec.add_runtime_dependency "moneta", '~> 0'
37+
spec.add_runtime_dependency "sidekiq", '~> 5'
38+
spec.add_runtime_dependency "moneta", '~> 1'
3939
spec.add_runtime_dependency "dotenv", "~> 2"
4040
spec.add_runtime_dependency "thor", "~> 0"
4141
spec.add_runtime_dependency "rake", "~> 12"
42+
spec.add_runtime_dependency "rack", ["> 2", "< 3"]
4243
spec.add_runtime_dependency "puma", '~> 3'
4344
spec.add_runtime_dependency "foreman", '~> 0'
4445

0 commit comments

Comments
 (0)