cxx 0.1.6 → 0.1.9

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.
Files changed (3) hide show
  1. data/cxx.gemspec +7 -2
  2. data/lib/cxx/version.rb +4 -0
  3. metadata +2 -1
data/cxx.gemspec CHANGED
@@ -1,8 +1,13 @@
1
+ # -*- encoding: utf-8 -*-
2
+ gem_name = 'cxx'
3
+ require File.expand_path("lib/#{gem_name}/version")
4
+
1
5
  spec = Gem::Specification.new do |s|
2
- s.name = 'cxx'
6
+ s.name = gem_name
7
+ s.version = Cxx::VERSION
8
+
3
9
  s.description = 'ruby-based dsl for cxxproject'
4
10
  s.summary = 'defines the method cxx_configuration'
5
- s.version = '0.1.6'
6
11
  s.author = 'christian koestlin'
7
12
  s.email = 'christian.koestlin@gmail.com'
8
13
  s.platform = Gem::Platform::RUBY
@@ -0,0 +1,4 @@
1
+ module Cxx
2
+ VERSION = "0.1.9"
3
+ end
4
+
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cxx
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.9
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -56,6 +56,7 @@ files:
56
56
  - cxx.gemspec
57
57
  - lib/cxx.rb
58
58
  - lib/cxx/eval_context.rb
59
+ - lib/cxx/version.rb
59
60
  - lib/cxx/wizard/Rakefile.rb.template
60
61
  - lib/cxx/wizard/project.rb.template
61
62
  - lib/cxx/wizard/project_wizard.rb