hobo_support 2.1.2 → 2.2.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a9fca1c325fd08808e61ebf9949b68a1c3a7167d
4
- data.tar.gz: e4f89e51859da8bc3ab22437800de5665db3ff10
3
+ metadata.gz: e0f9c714315dd085205d53a3f1d77cd7a6e86c94
4
+ data.tar.gz: cc6a257deace46ee661ca5ece484b765b2929f41
5
5
  SHA512:
6
- metadata.gz: 830a091a761d72b8c737284138fcbe160d0365508bbf26926061f0533826ad0980c6a38a68ac0dd6c960d28966f134dc6f927e02208f1a62a93a9d650abe30de
7
- data.tar.gz: d5b23310c903630513ac262eed2a6ffb62631ccbb5e5419beee6e9f4a3b44348d0fda2059a40b30a2451248cb010a59edb33128994abcef68d1f99652df83015
6
+ metadata.gz: edc2a45c59db1ed647d49c021912eadac8a777ac7466bfdf83c7584602bddbaa75765a01d6a3d05e62d68a5b0b0f301f5a61ba217a01d236581f70c82e25a4fd
7
+ data.tar.gz: 90ad8e3c389cd4c61b4a233119ccc7c5f804bc45ffc63f753ac89bd8a21bae79c7eb5f8a012fd3138aa7168403f929f6fd265c89bf656bb889926842c911ca74
data/VERSION CHANGED
@@ -1 +1 @@
1
- 2.1.2
1
+ 2.2.0
@@ -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', ["~> 4.0.2"])
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")
@@ -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.1.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: 4.0.2
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: 4.0.2
26
+ version: '0'
27
27
  description: Core Ruby extensions from the Hobo project
28
28
  email: tom@tomlocke.com
29
29
  executables: []