redshift 1.3.18 → 1.3.19

Sign up to get free protection for your applications and to get access to all the features.
data/.bnsignore CHANGED
@@ -15,6 +15,10 @@ coverage
15
15
  doc
16
16
  pkg
17
17
  *.bck
18
+ *.so
19
+ *.o
20
+ ext/*/*/Makefile
21
+ ext/*/*/*/Makefile
18
22
  misc
19
23
  junk
20
24
  tmp
data/RELEASE-NOTES CHANGED
@@ -1,3 +1,7 @@
1
+ redshift 1.3.19
2
+
3
+ - prevent bones from including compiled files
4
+
1
5
  redshift 1.3.18
2
6
 
3
7
  - added robots example
@@ -33,7 +33,7 @@ end
33
33
  module RedShift
34
34
  include Math
35
35
 
36
- VERSION = '1.3.18'
36
+ VERSION = '1.3.19'
37
37
 
38
38
  Infinity = Math::Infinity
39
39
 
data/rakefile CHANGED
@@ -39,6 +39,8 @@ task 'test' do
39
39
  end
40
40
  end
41
41
 
42
+ ENV["VERSION"] = RedShift::VERSION ## why isn't this automatic?
43
+
42
44
  task 'gem:release' => 'rubyforge:release' # to release to rubyforge as well
43
45
 
44
46
  task :release => ["rubyforge:release", "rubyforge:doc_release"]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: redshift
3
3
  version: !ruby/object:Gem::Version
4
- hash: 63
4
+ hash: 61
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 3
9
- - 18
10
- version: 1.3.18
9
+ - 19
10
+ version: 1.3.19
11
11
  platform: ruby
12
12
  authors:
13
13
  - Joel VanderWerf
@@ -123,21 +123,14 @@ files:
123
123
  - examples/sync.rb
124
124
  - examples/thermostat.rb
125
125
  - examples/zeno.rb
126
- - ext/redshift/buffer/Makefile
127
126
  - ext/redshift/buffer/buffer.c
128
127
  - ext/redshift/buffer/buffer.h
129
- - ext/redshift/buffer/buffer.o
130
- - ext/redshift/buffer/buffer.so
131
128
  - ext/redshift/buffer/dir.rb
132
129
  - ext/redshift/buffer/extconf.rb
133
- - ext/redshift/util/isaac/Makefile
134
130
  - ext/redshift/util/isaac/extconf.rb
135
131
  - ext/redshift/util/isaac/isaac.c
136
- - ext/redshift/util/isaac/isaac.o
137
- - ext/redshift/util/isaac/isaac.so
138
132
  - ext/redshift/util/isaac/rand.c
139
133
  - ext/redshift/util/isaac/rand.h
140
- - ext/redshift/util/isaac/rand.o
141
134
  - lib/redshift.rb
142
135
  - lib/redshift/component.rb
143
136
  - lib/redshift/meta.rb