version_view 0.0.2 → 1.0.0
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/.gitignore +1 -0
- data/Gemfile.lock +1 -1
- data/README.md +13 -4
- data/lib/version_view/version.rb +1 -1
- metadata +4 -3
data/.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pkg/*
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -4,12 +4,21 @@ An embeddable Rails engine that displays version data via specific URLs.
|
|
|
4
4
|
|
|
5
5
|
It supports JSON and text views.
|
|
6
6
|
|
|
7
|
-
##
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
Add this line to your application's Gemfile:
|
|
10
|
+
|
|
11
|
+
gem 'version_view'
|
|
12
|
+
|
|
13
|
+
And then execute:
|
|
8
14
|
|
|
9
|
-
|
|
15
|
+
$ bundle
|
|
10
16
|
|
|
11
|
-
|
|
12
|
-
|
|
17
|
+
Or install it yourself as:
|
|
18
|
+
|
|
19
|
+
$ gem install version_view
|
|
20
|
+
|
|
21
|
+
## Usage
|
|
13
22
|
|
|
14
23
|
To run the generator that will install the sample configuration file and the initializer do:
|
|
15
24
|
|
data/lib/version_view/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: version_view
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -50,6 +50,7 @@ executables: []
|
|
|
50
50
|
extensions: []
|
|
51
51
|
extra_rdoc_files: []
|
|
52
52
|
files:
|
|
53
|
+
- .gitignore
|
|
53
54
|
- .rspec
|
|
54
55
|
- .rvmrc
|
|
55
56
|
- Gemfile
|
|
@@ -122,7 +123,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
122
123
|
version: '0'
|
|
123
124
|
segments:
|
|
124
125
|
- 0
|
|
125
|
-
hash:
|
|
126
|
+
hash: -875353822121809760
|
|
126
127
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
127
128
|
none: false
|
|
128
129
|
requirements:
|
|
@@ -131,7 +132,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
131
132
|
version: '0'
|
|
132
133
|
segments:
|
|
133
134
|
- 0
|
|
134
|
-
hash:
|
|
135
|
+
hash: -875353822121809760
|
|
135
136
|
requirements: []
|
|
136
137
|
rubyforge_project:
|
|
137
138
|
rubygems_version: 1.8.24
|