redsnow 0.1.0 → 0.1.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +1 -0
- data/README.md +5 -2
- data/lib/redsnow/version.rb +1 -1
- data/redsnow.gemspec +1 -0
- metadata +16 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c108ce59dd6673b6811fd10745031465b752fd87
|
|
4
|
+
data.tar.gz: d92e537229e9a0c19acf887ec13209ed8948cc05
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 553dd1900ee7bb0aaf180dfee28a106a84acfc00513358e841f1591df5c43baaf48ee92b14b3094bc28d4b44380d73965a89c083151a64d5fc7ca3e1e550a3b5
|
|
7
|
+
data.tar.gz: 8ed43be3d25a0c670f92874633d41bf87be22528178cb5308bf5980b444841a045dd6890900e900509c17807ed684fa1b797971991e15621f7149b5fa5a62580
|
data/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
# Changelog
|
|
2
|
+
- 0.1.1 - Add bundler to dependency
|
|
2
3
|
- 0.1.0 - Snow Crash updated to [0.12.1](https://github.com/apiaryio/snowcrash/releases/tag/v0.12.1)
|
|
3
4
|
- 0.0.8 - Add support for [Parse Result](https://github.com/apiaryio/api-blueprint-ast/blob/master/Parse%20Result.md)
|
|
4
5
|
- 0.0.7 - Fixed dependency, first public version
|
data/README.md
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
|
-
|
|
1
|
+

|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
# RedSnow [](https://travis-ci.org/apiaryio/redsnow)
|
|
4
|
+
### API Blueprint Parser for Ruby
|
|
5
|
+
Ruby binding for the [Snow Crash](https://github.com/apiaryio/snowcrash) library, also a thermonuclear weapon.
|
|
4
6
|
|
|
7
|
+
API Blueprint is Web API documentation language. You can find API Blueprint documentation on the [API Blueprint site](http://apiblueprint.org).
|
|
5
8
|
|
|
6
9
|
## Install
|
|
7
10
|
The best way to install RedSnow is by using its [GEM package](https://rubygems.org/gems/redsnow).
|
data/lib/redsnow/version.rb
CHANGED
data/redsnow.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: redsnow
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ladislav Prskavec
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-08-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ffi
|
|
@@ -38,6 +38,20 @@ dependencies:
|
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: 10.3.2
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: bundler
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - "~>"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: 1.7.0
|
|
48
|
+
type: :runtime
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - "~>"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: 1.7.0
|
|
41
55
|
- !ruby/object:Gem::Dependency
|
|
42
56
|
name: yard
|
|
43
57
|
requirement: !ruby/object:Gem::Requirement
|