hobo_support 2.1.2 → 2.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/hobo_support.gemspec +1 -1
- data/lib/hobo_support/command.rb +2 -0
- data/lib/hobo_support/common_tasks.rb +1 -0
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e0f9c714315dd085205d53a3f1d77cd7a6e86c94
|
4
|
+
data.tar.gz: cc6a257deace46ee661ca5ece484b765b2929f41
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: edc2a45c59db1ed647d49c021912eadac8a777ac7466bfdf83c7584602bddbaa75765a01d6a3d05e62d68a5b0b0f301f5a61ba217a01d236581f70c82e25a4fd
|
7
|
+
data.tar.gz: 90ad8e3c389cd4c61b4a233119ccc7c5f804bc45ffc63f753ac89bd8a21bae79c7eb5f8a012fd3138aa7168403f929f6fd265c89bf656bb889926842c911ca74
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.
|
1
|
+
2.2.0
|
data/hobo_support.gemspec
CHANGED
@@ -11,7 +11,7 @@ Gem::Specification.new do |s|
|
|
11
11
|
s.summary = 'Core Ruby extensions from the Hobo project'
|
12
12
|
s.description = 'Core Ruby extensions from the Hobo project'
|
13
13
|
|
14
|
-
s.add_runtime_dependency('rails'
|
14
|
+
s.add_runtime_dependency('rails')
|
15
15
|
# s.add_development_dependency('rubydoctest', [">= 0"])
|
16
16
|
|
17
17
|
s.files = `git ls-files -x #{name}/* -z`.split("\0")
|
data/lib/hobo_support/command.rb
CHANGED
@@ -104,12 +104,14 @@ gem 'hobo_clean_admin', :path => '#{dev_root}'
|
|
104
104
|
gem 'hobo_jquery', :path => '#{dev_root}'
|
105
105
|
gem 'hobo_jquery_ui', :path => '#{dev_root}'
|
106
106
|
gem 'protected_attributes'
|
107
|
+
gem 'responders', '~> 2.0'
|
107
108
|
)
|
108
109
|
end
|
109
110
|
else
|
110
111
|
file.puts %(
|
111
112
|
gem '#{gem}', '= #{version}'
|
112
113
|
gem 'protected_attributes'
|
114
|
+
gem 'responders', '~> 2.0'
|
113
115
|
)
|
114
116
|
end
|
115
117
|
if is_hobo
|
@@ -26,6 +26,7 @@ namespace :test do
|
|
26
26
|
sh %(echo "gem 'irt', :group => :development" >> Gemfile) # to make the bundler happy
|
27
27
|
sh %(echo "gem 'therubyracer'" >> Gemfile)
|
28
28
|
sh %(echo "gem 'protected_attributes'" >> Gemfile)
|
29
|
+
sh %(echo "gem 'responders', '~> 2.0'" >> Gemfile)
|
29
30
|
sh %(bundle install)
|
30
31
|
sh %(echo "" > app/models/.gitignore) # because git reset --hard would rm the dir
|
31
32
|
rm %(.gitignore) # we need to reset everything in a testapp
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hobo_support
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tom Locke
|
@@ -14,16 +14,16 @@ dependencies:
|
|
14
14
|
name: rails
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: '0'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- - "
|
24
|
+
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: '0'
|
27
27
|
description: Core Ruby extensions from the Hobo project
|
28
28
|
email: tom@tomlocke.com
|
29
29
|
executables: []
|