redsnow 0.1.4 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4ed4aacea58ee89b3a4e1315f3aa0072249f7c5f
4
- data.tar.gz: a8017684f53acb8617db610e800de88d767190d7
3
+ metadata.gz: 813bf0b33e071a2e28d722cdda30c3e38ba9ff64
4
+ data.tar.gz: a8db68894fdcac94a2e1d18eaa7d4f6d4a612287
5
5
  SHA512:
6
- metadata.gz: e4a2b80a3ba011e5bde1f56ab658a0e99110a9e0f6ac24c3226c62a77a8e1fedd806bb958d81634a1caa71c33bdb6ed8a6dc5b04b57767edd38e665d9e407201
7
- data.tar.gz: 1ddd33c8835fc728f9c9fe9aa27374f7d2aca3da52e4e21e80e36d9060c5d41968ce78c32fe0b369bb3e44d1985959f6130035094fa056ac01d200778b2d1984
6
+ metadata.gz: 4d6d46dbb8704bf206ee1e27c404bed7a270eee2844cd2755d9c93c4447cf957b88c593f22b181c16bab96009896baa99949725a3966668ef220dc93e891729f
7
+ data.tar.gz: 38ed17f995f93b77c509660adc81262d47405806edb6cd64a8a28c69380e20e7ead8d5c6affbf66b6109126ea43ed6b44c70b72f810a272141cd5b1470bb0fc6
data/CHANGELOG.md CHANGED
@@ -1,9 +1,19 @@
1
1
  # Changelog
2
- - 0.1.4 - Fixed install process [PR#20](https://github.com/apiaryio/redsnow/pull/20)
3
- - 0.1.3 - Add Element Reference method to KeyValueCollection class [PR#17](https://github.com/apiaryio/redsnow/pull/17)
4
- - 0.1.2 - Fix collection of resources inside ResourceGroup [PR#13](https://github.com/apiaryio/redsnow/pull/13)
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 - Snow Crash updated to [0.12.1](https://github.com/apiaryio/snowcrash/releases/tag/v0.12.1)
7
- - 0.0.8 - Add support for [Parse Result](https://github.com/apiaryio/api-blueprint-ast/blob/master/Parse%20Result.md)
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
- require "bundler/gem_tasks"
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
@@ -1,4 +1,4 @@
1
1
  module RedSnow
2
2
  # Gem version
3
- VERSION = "0.1.4"
3
+ VERSION = "0.1.5"
4
4
  end
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
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 00:00:00.000000000 Z
11
+ date: 2014-09-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi