dojo-rails 0.9.3 → 0.9.4

Sign up to get free protection for your applications and to get access to all the features.
data/dojo-rails.gemspec CHANGED
@@ -8,10 +8,13 @@ Gem::Specification.new do |gem|
8
8
  gem.summary = %q{The dojotoolkit with Ruby on Rails 3}
9
9
  gem.homepage = ""
10
10
 
11
+ gem.add_dependency "railties", ">= 3.2.0"
12
+ gem.add_dependency "thor", "~> 0.14"
13
+
11
14
  gem.files = `git ls-files`.split($\)
12
15
  gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
13
16
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
14
17
  gem.name = "dojo-rails"
15
- gem.require_paths = ["lib"]
18
+ gem.require_path = "lib"
16
19
  gem.version = Dojo::Rails::VERSION
17
20
  end
@@ -2,7 +2,7 @@ module Dojo
2
2
  module Rails
3
3
  MAJOR = 0
4
4
  MINOR = 9
5
- TINY = 3
5
+ TINY = 4
6
6
 
7
7
  VERSION = [MAJOR, MINOR, TINY].compact.join(".")
8
8
  end