BOAST 0.995 → 0.996

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.
data/BOAST.gemspec CHANGED
@@ -1,12 +1,33 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'BOAST'
3
- s.version = "0.995"
3
+ s.version = "0.996"
4
4
  s.author = "Brice Videau"
5
5
  s.email = "brice.videau@imag.fr"
6
6
  s.homepage = "https://forge.imag.fr/projects/boast/"
7
7
  s.summary = "BOAST is a computing kernel metaprogramming tool."
8
8
  s.description = "BOAST aims at providing a framework to metaprogram, benchmark and validate computing kernels"
9
- s.files = %w( BOAST.gemspec LICENSE lib/BOAST.rb lib/BOAST/Algorithm.rb lib/BOAST/CKernel.rb lib/BOAST/BOAST_OpenCL.rb lib/BOAST/Transitions.rb lib/BOAST/Parens.rb lib/BOAST/Operators.rb lib/BOAST/DataTypes.rb )
9
+ s.files = %w( BOAST.gemspec
10
+ LICENSE
11
+ lib/BOAST.rb
12
+ lib/BOAST/Algorithm.rb
13
+ lib/BOAST/CKernel.rb
14
+ lib/BOAST/BOAST_OpenCL.rb
15
+ lib/BOAST/Transitions.rb
16
+ lib/BOAST/Parens.rb
17
+ lib/BOAST/Operators.rb
18
+ lib/BOAST/DataTypes.rb
19
+ lib/BOAST/Arithmetic.rb
20
+ lib/BOAST/Expression.rb
21
+ lib/BOAST/Index.rb
22
+ lib/BOAST/Variable.rb
23
+ lib/BOAST/Procedure.rb
24
+ lib/BOAST/If.rb
25
+ lib/BOAST/For.rb
26
+ lib/BOAST/Case.rb
27
+ lib/BOAST/While.rb
28
+ lib/BOAST/FuncCall.rb
29
+ lib/BOAST/Pragma.rb
30
+ )
10
31
  s.has_rdoc = true
11
32
  s.license = 'BSD'
12
33
  s.required_ruby_version = '>= 1.9.3'