apipie-rails 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
Changelog
|
|
3
3
|
===========
|
|
4
4
|
|
|
5
|
+
v0.2.1
|
|
6
|
+
------
|
|
7
|
+
|
|
8
|
+
* fix typo in the localization string
|
|
9
|
+
[#244](https://github.com/Apipie/apipie-rails/pull/244) [@alem0lars][]
|
|
10
|
+
* fix syntax errors in 404 page
|
|
11
|
+
[#246](https://github.com/Apipie/apipie-rails/pull/246) [@richardsondx][]
|
|
12
|
+
|
|
13
|
+
|
|
5
14
|
v0.2.0
|
|
6
15
|
------
|
|
7
16
|
|
|
@@ -145,3 +154,5 @@ v0.0.15
|
|
|
145
154
|
[@clamoris]: https://github.com/clamoris
|
|
146
155
|
[@arathunku]: https://github.com/arathunku
|
|
147
156
|
[@johanneswuerbach]: https://github.com/johanneswuerbach
|
|
157
|
+
[@richardsondx]: https://github.com/richardsondx
|
|
158
|
+
[@alem0lars]: https://github.com/alem0lars
|
|
@@ -5,13 +5,13 @@
|
|
|
5
5
|
<%= t('apipie.resource_not_found_html', :resource => "<code>#{params[:resource]}</code>") %>
|
|
6
6
|
<% else %>
|
|
7
7
|
<%= t('apipie.method_not_found_html', :resource => "<code>#{params[:resource]}</code>",
|
|
8
|
-
:method => "<code>#{params[:resource]}</code>" %>
|
|
8
|
+
:method => "<code>#{params[:resource]}</code>") %>
|
|
9
9
|
<% end %>
|
|
10
10
|
</small>
|
|
11
11
|
</h1>
|
|
12
12
|
|
|
13
13
|
<% if @doc %>
|
|
14
|
-
<%= t('apipie.goto_homepage_html', :href
|
|
14
|
+
<%= t('apipie.goto_homepage_html', :href => link_to(
|
|
15
15
|
t('apipie.goto_homepage_href', :app_name => @doc[:name]),
|
|
16
16
|
File.join(@doc[:doc_url], @doc[:link_extension]))) %>
|
|
17
17
|
<% end %>
|
data/lib/apipie/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: apipie-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2014-05-
|
|
13
|
+
date: 2014-05-23 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: rails
|