redsnow 0.3.0 → 0.3.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/ext/snowcrash/bin/snowcrash +0 -0
- data/ext/snowcrash/src/HeadersParser.h +1 -1
- data/ext/snowcrash/src/Version.h +1 -1
- data/ext/snowcrash/tools/homebrew/snowcrash.rb +1 -1
- data/lib/redsnow/version.rb +1 -1
- metadata +2 -3
- data/CHANGELOG.md +0 -26
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4d8f006b8216a8c1e1bf6a1133f73df26fc5f3a3
|
|
4
|
+
data.tar.gz: 6082da34163415f1c2cd278145f75f829d81b203
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 414128fb40b317b986299b67119823c1f5d1d26ec2bc359a40d99120e9b88841ce3324c2e35fd5b7b118fc4a913ef217b18e626ed447df67e77ea58722b01cc3
|
|
7
|
+
data.tar.gz: 8fd4d15d954b5737e1742afbed3e53e1abf74ecde687ee54a0ed63f7c4c424bcd13c192eeb02777b5463be9934bd5e1223b68da66e866b78a8cf1c896f4ed275
|
data/ext/snowcrash/bin/snowcrash
CHANGED
|
Binary file
|
|
@@ -228,7 +228,7 @@ namespace snowcrash {
|
|
|
228
228
|
|
|
229
229
|
return std::find_if(headers.begin(),
|
|
230
230
|
headers.end(),
|
|
231
|
-
std::bind2nd(MatchFirsts<Header, IEqual<
|
|
231
|
+
std::bind2nd(MatchFirsts<Header, IEqual<Header::first_type> >(), header));
|
|
232
232
|
}
|
|
233
233
|
|
|
234
234
|
typedef std::vector<std::string> HeadersKeyCollection;
|
data/ext/snowcrash/src/Version.h
CHANGED
data/lib/redsnow/version.rb
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.3.
|
|
4
|
+
version: 0.3.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-10-
|
|
11
|
+
date: 2014-10-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ffi
|
|
@@ -133,7 +133,6 @@ files:
|
|
|
133
133
|
- ".gitignore"
|
|
134
134
|
- ".gitmodules"
|
|
135
135
|
- ".travis.yml"
|
|
136
|
-
- CHANGELOG.md
|
|
137
136
|
- Gemfile
|
|
138
137
|
- LICENSE
|
|
139
138
|
- README.md
|
data/CHANGELOG.md
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
- 0.3.0
|
|
3
|
-
- [Format 1A7](https://github.com/apiaryio/api-blueprint/releases/tag/format-1A7) support. [Snow Crash v0.16.0](https://github.com/apiaryio/snowcrash/releases/tag/v0.16.0)
|
|
4
|
-
- 0.2.1
|
|
5
|
-
- Support for source maps [Snow Crash v0.15.0](https://github.com/apiaryio/snowcrash/releases/tag/v0.15.0) and [AST Serialization Format 2.1](https://github.com/apiaryio/api-blueprint-ast/releases/tag/v2.1).
|
|
6
|
-
- 0.2.0
|
|
7
|
-
- New Parser Architecture [Snow Crash v0.14.0](https://github.com/apiaryio/snowcrash/releases/tag/v0.14.0)
|
|
8
|
-
- 0.1.6
|
|
9
|
-
- Fixing problem with submodules in Gem install [IS#25](https://github.com/apiaryio/redsnow/issues/25)
|
|
10
|
-
- 0.1.5
|
|
11
|
-
- Ensure submodules are initialised before building [PR#22](https://github.\
|
|
12
|
-
- com/apiaryio/redsnow/pull/22)
|
|
13
|
-
- Allow require bundler/gem_tasks to fail if bundler is not found [PR#23](https://github.com/apiaryio/redsnow/pull/23)
|
|
14
|
-
- 0.1.4
|
|
15
|
-
- Fixed install process [PR#20](https://github.com/apiaryio/redsnow/pull/20)
|
|
16
|
-
- 0.1.3
|
|
17
|
-
- Add Element Reference method to KeyValueCollection class [PR#17](https://github.com/apiaryio/redsnow/pull/17)
|
|
18
|
-
- 0.1.2
|
|
19
|
-
- Fix collection of resources inside ResourceGroup [PR#13](https://github.com/apiaryio/redsnow/pull/13)
|
|
20
|
-
- 0.1.1 - Add bundler to dependency
|
|
21
|
-
- 0.1.0
|
|
22
|
-
- Snow Crash updated to [0.12.1](https://github.com/apiaryio/snowcrash/releases/tag/v0.12.1)
|
|
23
|
-
- 0.0.8
|
|
24
|
-
- Add support for [Parse Result](https://github.com/apiaryio/api-blueprint-ast/blob/master/Parse%20Result.md)
|
|
25
|
-
- 0.0.7 - Fixed dependency, first public version
|
|
26
|
-
- 0.0.1 - 0.0.6 Developement versions
|