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

Resolves old issues with the AppendJSON writer #453

Open
wants to merge 3 commits 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
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
rspec_api_documentation (6.1.0)
rspec_api_documentation (6.1.1)
activesupport (>= 3.0.0)
mustache (~> 1.0, >= 0.99.4)
rspec (~> 3.0)
Expand Down Expand Up @@ -75,7 +75,7 @@ GEM
multi_json (1.11.2)
multi_test (0.1.2)
multipart-post (2.0.0)
mustache (1.0.5)
mustache (1.1.0)
nokogiri (1.8.4)
mini_portile2 (~> 2.3.0)
pry (0.11.3)
Expand Down
2 changes: 1 addition & 1 deletion lib/rspec_api_documentation/writers/append_json_writer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def self.clear_docs(docs_dir)
end
end

class AppendJsonIndex < JsonIndex
class AppendJsonIndex < JSONIndex
def initialize(index, configuration, existing_index_hash = nil)
@index = index
@configuration = configuration
Expand Down
2 changes: 1 addition & 1 deletion rspec_api_documentation.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ $:.unshift lib unless $:.include?(lib)

Gem::Specification.new do |s|
s.name = "rspec_api_documentation"
s.version = "6.1.0"
s.version = "6.1.1"
s.platform = Gem::Platform::RUBY
s.authors = ["Chris Cahoon", "Sam Goldman", "Eric Oestrich"]
s.email = ["[email protected]", "[email protected]", "[email protected]"]
Expand Down