File tree 3 files changed +14
-9
lines changed
3 files changed +14
-9
lines changed Original file line number Diff line number Diff line change @@ -323,6 +323,11 @@ Closure tree is [tested under every combination](http://travis-ci.org/#!/mceache
323
323
324
324
## Change log
325
325
326
+
327
+ ### 3.4.1
328
+
329
+ * Reverted .gemspec mistake that changed add_development_dependency to add_runtime_dependency
330
+
326
331
### 3.4.0
327
332
328
333
Fixed [issue 15](https://github.com/mceachen/closure_tree/issues/15):
Original file line number Diff line number Diff line change @@ -16,13 +16,13 @@ Gem::Specification.new do |s|
16
16
17
17
s . add_runtime_dependency 'activerecord' , '>= 3.0.0'
18
18
19
- s . add_runtime_dependency 'rake'
20
- s . add_runtime_dependency 'yard'
21
- s . add_runtime_dependency 'rspec'
22
- s . add_runtime_dependency 'rails' # FIXME: just for rspec fixture support (!!)
23
- s . add_runtime_dependency 'rspec-rails' # FIXME: just for rspec fixture support (!!)
24
- s . add_runtime_dependency 'mysql2'
25
- s . add_runtime_dependency 'pg'
26
- s . add_runtime_dependency 'sqlite3'
19
+ s . add_development_dependency 'rake'
20
+ s . add_development_dependency 'yard'
21
+ s . add_development_dependency 'rspec'
22
+ s . add_development_dependency 'rails' # FIXME: just for rspec fixture support (!!)
23
+ s . add_development_dependency 'rspec-rails' # FIXME: just for rspec fixture support (!!)
24
+ s . add_development_dependency 'mysql2'
25
+ s . add_development_dependency 'pg'
26
+ s . add_development_dependency 'sqlite3'
27
27
# TODO: gem 'activerecord-jdbcsqlite3-adapter', :platform => :jruby
28
28
end
Original file line number Diff line number Diff line change 1
1
module ClosureTree
2
- VERSION = "3.4.0 " unless defined? ( ::ClosureTree ::VERSION )
2
+ VERSION = "3.4.1 " unless defined? ( ::ClosureTree ::VERSION )
3
3
end
You can’t perform that action at this time.
0 commit comments