redsnow 0.1.4 → 0.1.5
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 +15 -5
- data/Rakefile +8 -1
- data/lib/redsnow/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 813bf0b33e071a2e28d722cdda30c3e38ba9ff64
|
|
4
|
+
data.tar.gz: a8db68894fdcac94a2e1d18eaa7d4f6d4a612287
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4d6d46dbb8704bf206ee1e27c404bed7a270eee2844cd2755d9c93c4447cf957b88c593f22b181c16bab96009896baa99949725a3966668ef220dc93e891729f
|
|
7
|
+
data.tar.gz: 38ed17f995f93b77c509660adc81262d47405806edb6cd64a8a28c69380e20e7ead8d5c6affbf66b6109126ea43ed6b44c70b72f810a272141cd5b1470bb0fc6
|
data/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
|
-
|
|
3
|
-
- 0.1.
|
|
4
|
-
-
|
|
2
|
+
|
|
3
|
+
- 0.1.5
|
|
4
|
+
- Ensure submodules are initialised before building [PR#22](https://github.\
|
|
5
|
+
- com/apiaryio/redsnow/pull/22)
|
|
6
|
+
- Allow require bundler/gem_tasks to fail if bundler is not found [PR#23](https://github.com/apiaryio/redsnow/pull/23)
|
|
7
|
+
- 0.1.4
|
|
8
|
+
- Fixed install process [PR#20](https://github.com/apiaryio/redsnow/pull/20)
|
|
9
|
+
- 0.1.3
|
|
10
|
+
- Add Element Reference method to KeyValueCollection class [PR#17](https://github.com/apiaryio/redsnow/pull/17)
|
|
11
|
+
- 0.1.2
|
|
12
|
+
- Fix collection of resources inside ResourceGroup [PR#13](https://github.com/apiaryio/redsnow/pull/13)
|
|
5
13
|
- 0.1.1 - Add bundler to dependency
|
|
6
|
-
- 0.1.0
|
|
7
|
-
-
|
|
14
|
+
- 0.1.0
|
|
15
|
+
- Snow Crash updated to [0.12.1](https://github.com/apiaryio/snowcrash/releases/tag/v0.12.1)
|
|
16
|
+
- 0.0.8
|
|
17
|
+
- Add support for [Parse Result](https://github.com/apiaryio/api-blueprint-ast/blob/master/Parse%20Result.md)
|
|
8
18
|
- 0.0.7 - Fixed dependency, first public version
|
|
9
19
|
- 0.0.1 - 0.0.6 Developement versions
|
data/Rakefile
CHANGED
|
@@ -1,4 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
begin
|
|
2
|
+
require 'bundler/gem_tasks'
|
|
3
|
+
rescue LoadError
|
|
4
|
+
puts "Cannot load bundler/gem_tasks"
|
|
5
|
+
end
|
|
6
|
+
|
|
2
7
|
require 'rake/testtask'
|
|
3
8
|
require 'ffi'
|
|
4
9
|
|
|
@@ -13,6 +18,8 @@ task :compile do
|
|
|
13
18
|
path = File.expand_path("ext/snowcrash/build/out/Release/#{prefix}libsnowcrash.#{FFI::Platform::LIBSUFFIX}", File.dirname(__FILE__))
|
|
14
19
|
puts path
|
|
15
20
|
if !File.exists?(path) || ENV['RECOMPILE']
|
|
21
|
+
puts "Initializing submodules (if required)..."
|
|
22
|
+
`git submodule update --init --recursive 2>/dev/null`
|
|
16
23
|
puts "Compiling extension..."
|
|
17
24
|
`cd #{File.expand_path("ext/snowcrash/")} && ./configure --shared && make`
|
|
18
25
|
exit $?.exitstatus
|
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.1.
|
|
4
|
+
version: 0.1.5
|
|
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-09-
|
|
11
|
+
date: 2014-09-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ffi
|