shoulda-kept-respond-with-content-type 1.0.0 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a8cce8136241c3ace032a21780777de8518b155b
4
- data.tar.gz: 79f6fbde5a4cc26e709f869f72a822338919712e
3
+ metadata.gz: 90e1fc8799fa5d91ecf3c2331e988b8a37bcdc5f
4
+ data.tar.gz: b8442b22667cf6efce728d35b974d741dcea3cd9
5
5
  SHA512:
6
- metadata.gz: be4e18088a54fcc4b8c3107a3d4f85357fb4c639795d7b680fa0105b59282427538d39a94789ea9ec8a2e18bb2d4b6ab627435972a4ba2d9460b6dd1824e1e8f
7
- data.tar.gz: d584c0a933631a2f755b49007eaeef47f3a50bf9fedfe4ed35cab79e5a448b78417e7ac56e4f3b7f9411b4b6a5e487a3369dac226b2bd873d8ea142d1ab00071
6
+ metadata.gz: a494fc310c28d11e0e26dfb245697836daee119020f572b73960afa3698329e903707c4453ab0346b962be5924dfa029a488cdcb47b471dc09af595a09f24111
7
+ data.tar.gz: f856be8ac1c0a2272480140d53cdf2094f267365cb6e399ada346beb5f699488eaaaf02e3c78b72c0f351a311d2bff1690efcafa8154d5476e63ee680f5a6dbf
data/.gitignore CHANGED
@@ -9,3 +9,5 @@ tags
9
9
  tmp
10
10
  .bundle
11
11
  *.rbc
12
+ gemfiles/*.gemfile.lock
13
+ Gemfile.lock
@@ -0,0 +1,20 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.0.0
4
+ - 2.1
5
+ - 2.2
6
+ gemfile:
7
+ - gemfiles/3.0.gemfile
8
+ - gemfiles/3.1.gemfile
9
+ - gemfiles/3.2.gemfile
10
+ - gemfiles/4.0.gemfile
11
+ - gemfiles/4.1.gemfile
12
+ - gemfiles/4.2.gemfile
13
+ matrix:
14
+ exclude:
15
+ - rvm: 2.2
16
+ gemfile: gemfiles/3.0.gemfile
17
+ - rvm: 2.2
18
+ gemfile: gemfiles/3.1.gemfile
19
+ - rvm: 2.2
20
+ gemfile: gemfiles/3.2.gemfile
data/Appraisals CHANGED
@@ -1,15 +1,23 @@
1
1
  appraise '3.0' do
2
- gem 'rails', '~> 3.0'
2
+ gem 'rails', '~> 3.0.0'
3
3
  end
4
4
 
5
5
  appraise '3.1' do
6
- gem 'rails', '~> 3.1'
7
- gem 'jquery-rails'
8
- gem 'sass-rails'
6
+ gem 'rails', '~> 3.1.0'
9
7
  end
10
8
 
11
9
  appraise '3.2' do
12
- gem 'rails', '~> 3.2'
13
- gem 'jquery-rails'
14
- gem 'sass-rails'
15
- end
10
+ gem 'rails', '~> 3.2.0'
11
+ end
12
+
13
+ appraise '4.0' do
14
+ gem 'rails', '~> 4.0.0'
15
+ end
16
+
17
+ appraise '4.1' do
18
+ gem 'rails', '~> 4.1.0'
19
+ end
20
+
21
+ appraise '4.2' do
22
+ gem 'rails', '~> 4.2.0'
23
+ end
@@ -11,10 +11,7 @@ a test!
11
11
 
12
12
  4. Make the test pass.
13
13
 
14
- 5. Update NEWS.md with a brief description of your changes under the HEAD
15
- heading.
16
-
17
- 6. Push to your fork and submit a pull request.
14
+ 5. Push to your fork and submit a pull request.
18
15
 
19
16
 
20
17
  At this point you're waiting on us. We like to at least comment on, if not
data/README.md CHANGED
@@ -1,4 +1,7 @@
1
1
  # Shoulda-Kept-Assign-To
2
+ By [Tinfoil Security](http://tinfoilsecurity.com/)
3
+
4
+ [![Build Status](https://travis-ci.org/tinfoil/shoulda-kept-respond-with-content-type.svg?branch=master)](https://travis-ci.org/tinfoil/shoulda-kept-respond-with-content-type)
2
5
 
3
6
  Shoulda-matchers, ([official Git repo](https://github.com/thoughtbot/shoulda-matchers)), removed the respond_with_content_type matcher in version 2.0.0. We missed it dearly, enough to bring it back. This gem includes all of the current version of shoulda-matchers, and it adds the 'respond_with_content_type' matcher back in, just the way it was before it was mercilessly destroyed.
4
7
 
data/Rakefile CHANGED
@@ -1,22 +1,17 @@
1
+ require 'rubygems'
1
2
  require 'bundler/setup'
2
3
  require 'bundler/gem_tasks'
3
4
  require 'rspec/core/rake_task'
4
5
  require 'appraisal'
5
6
 
6
7
  RSpec::Core::RakeTask.new do |t|
7
- t.pattern = "spec/**/*_spec.rb"
8
+ t.pattern = 'spec/**/*_spec.rb'
8
9
  t.rspec_opts = '--color --format progress'
9
10
  t.verbose = false
10
11
  end
11
12
 
12
- task :default do |t|
13
- if ENV['BUNDLE_GEMFILE'] =~ /gemfiles/
14
- exec 'rake spec'
15
- else
16
- Rake::Task['appraise'].execute
17
- end
18
- end
19
-
20
- task :appraise => ['appraisal:install'] do |t|
21
- exec 'rake appraisal'
13
+ if !ENV['APPRAISAL_INITIALIZED'] && !ENV['TRAVIS']
14
+ task :default => :appraisal
15
+ else
16
+ task :default => :spec
22
17
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "rails", "~> 3.0"
5
+ gem "rails", "~> 3.0.0"
6
6
 
7
- gemspec :path=>"../"
7
+ gemspec :path => "../"
@@ -2,8 +2,6 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "rails", "~> 3.1"
6
- gem "jquery-rails"
7
- gem "sass-rails"
5
+ gem "rails", "~> 3.1.0"
8
6
 
9
- gemspec :path=>"../"
7
+ gemspec :path => "../"
@@ -2,8 +2,6 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "rails", "~> 3.2"
6
- gem "jquery-rails"
7
- gem "sass-rails"
5
+ gem "rails", "~> 3.2.0"
8
6
 
9
- gemspec :path=>"../"
7
+ gemspec :path => "../"
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "~> 4.0.0"
6
+
7
+ gemspec :path => "../"
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "~> 4.1.0"
6
+
7
+ gemspec :path => "../"
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "~> 4.2.0"
6
+
7
+ gemspec :path => "../"
@@ -39,10 +39,18 @@ module Shoulda # :nodoc:
39
39
  "Expected #{expectation}"
40
40
  end
41
41
 
42
+ def failure_message
43
+ "Expected #{expectation}"
44
+ end
45
+
42
46
  def failure_message_for_should_not
43
47
  "Did not expect #{expectation}"
44
48
  end
45
49
 
50
+ def failure_message_when_negated
51
+ "Did not expect #{expectation}"
52
+ end
53
+
46
54
  protected
47
55
 
48
56
  def content_type_matches_regexp?
@@ -77,4 +85,4 @@ module Shoulda # :nodoc:
77
85
  end
78
86
  end
79
87
  end
80
- end
88
+ end
@@ -2,7 +2,7 @@ $LOAD_PATH << File.join(File.dirname(__FILE__), 'lib')
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "shoulda-kept-respond-with-content-type"
5
- s.version = '1.0.0'
5
+ s.version = '1.1.0'
6
6
  s.authors = ["Ben Sedat"]
7
7
  s.date = Time.now.strftime("%Y-%m-%d")
8
8
  s.email = "engineers@tinfoilsecurity.com"
@@ -22,7 +22,7 @@ Gem::Specification.new do |s|
22
22
  s.add_development_dependency('bundler')
23
23
  s.add_development_dependency('rake')
24
24
  s.add_development_dependency('appraisal')
25
- s.add_development_dependency('rails', '~> 3')
25
+ s.add_development_dependency('rails')
26
26
  s.add_development_dependency('sqlite3')
27
27
  s.add_development_dependency('rspec-rails')
28
28
  end
@@ -21,6 +21,8 @@ ActiveRecord::Migration.verbose = false
21
21
  ActiveRecord::Migrator.migrate(Rails.root.join('db/migrate'))
22
22
 
23
23
  RSpec.configure do |config|
24
- config.include Shoulda::Matchers::ActionController,
25
- :example_group => { :file_path => /action_controller/ }
26
- end
24
+ config.include ActionController::TemplateAssertions
25
+ config.include Shoulda::Matchers::ActionController
26
+
27
+ config.expect_with(:rspec) { |c| c.syntax = :should }
28
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shoulda-kept-respond-with-content-type
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben Sedat
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-03-07 00:00:00.000000000 Z
11
+ date: 2015-10-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: shoulda-matchers
@@ -70,16 +70,16 @@ dependencies:
70
70
  name: rails
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - ~>
73
+ - - '>='
74
74
  - !ruby/object:Gem::Version
75
- version: '3'
75
+ version: '0'
76
76
  type: :development
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - ~>
80
+ - - '>='
81
81
  - !ruby/object:Gem::Version
82
- version: '3'
82
+ version: '0'
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: sqlite3
85
85
  requirement: !ruby/object:Gem::Requirement
@@ -115,19 +115,19 @@ extensions: []
115
115
  extra_rdoc_files: []
116
116
  files:
117
117
  - .gitignore
118
+ - .travis.yml
118
119
  - Appraisals
119
120
  - CONTRIBUTING.md
120
121
  - Gemfile
121
- - Gemfile.lock
122
122
  - MIT-LICENSE
123
123
  - README.md
124
124
  - Rakefile
125
125
  - gemfiles/3.0.gemfile
126
- - gemfiles/3.0.gemfile.lock
127
126
  - gemfiles/3.1.gemfile
128
- - gemfiles/3.1.gemfile.lock
129
127
  - gemfiles/3.2.gemfile
130
- - gemfiles/3.2.gemfile.lock
128
+ - gemfiles/4.0.gemfile
129
+ - gemfiles/4.1.gemfile
130
+ - gemfiles/4.2.gemfile
131
131
  - lib/shoulda-kept-respond-with-content-type.rb
132
132
  - lib/shoulda/matchers/action_controller/respond_with_content_type_matcher.rb
133
133
  - shoulda-kept-respond-with-content-type.gemspec
@@ -155,7 +155,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
155
155
  version: '0'
156
156
  requirements: []
157
157
  rubyforge_project:
158
- rubygems_version: 2.2.2
158
+ rubygems_version: 2.4.8
159
159
  signing_key:
160
160
  specification_version: 4
161
161
  summary: We miss the respond_with_content_type matcher in shoulda-matchers.
@@ -164,3 +164,4 @@ test_files:
164
164
  - spec/spec_helper.rb
165
165
  - spec/support/class_builder.rb
166
166
  - spec/support/controller_builder.rb
167
+ has_rdoc:
@@ -1,116 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- shoulda-kept-respond-with-content-type (1.0.0)
5
- shoulda-matchers (>= 2.1.0)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- actionmailer (3.2.17)
11
- actionpack (= 3.2.17)
12
- mail (~> 2.5.4)
13
- actionpack (3.2.17)
14
- activemodel (= 3.2.17)
15
- activesupport (= 3.2.17)
16
- builder (~> 3.0.0)
17
- erubis (~> 2.7.0)
18
- journey (~> 1.0.4)
19
- rack (~> 1.4.5)
20
- rack-cache (~> 1.2)
21
- rack-test (~> 0.6.1)
22
- sprockets (~> 2.2.1)
23
- activemodel (3.2.17)
24
- activesupport (= 3.2.17)
25
- builder (~> 3.0.0)
26
- activerecord (3.2.17)
27
- activemodel (= 3.2.17)
28
- activesupport (= 3.2.17)
29
- arel (~> 3.0.2)
30
- tzinfo (~> 0.3.29)
31
- activeresource (3.2.17)
32
- activemodel (= 3.2.17)
33
- activesupport (= 3.2.17)
34
- activesupport (3.2.17)
35
- i18n (~> 0.6, >= 0.6.4)
36
- multi_json (~> 1.0)
37
- appraisal (0.5.2)
38
- bundler
39
- rake
40
- arel (3.0.3)
41
- builder (3.0.4)
42
- diff-lcs (1.2.5)
43
- erubis (2.7.0)
44
- hike (1.2.3)
45
- i18n (0.6.9)
46
- journey (1.0.4)
47
- json (1.8.1)
48
- mail (2.5.4)
49
- mime-types (~> 1.16)
50
- treetop (~> 1.4.8)
51
- mime-types (1.25.1)
52
- multi_json (1.9.0)
53
- polyglot (0.3.4)
54
- rack (1.4.5)
55
- rack-cache (1.2)
56
- rack (>= 0.4)
57
- rack-ssl (1.3.3)
58
- rack
59
- rack-test (0.6.2)
60
- rack (>= 1.0)
61
- rails (3.2.17)
62
- actionmailer (= 3.2.17)
63
- actionpack (= 3.2.17)
64
- activerecord (= 3.2.17)
65
- activeresource (= 3.2.17)
66
- activesupport (= 3.2.17)
67
- bundler (~> 1.0)
68
- railties (= 3.2.17)
69
- railties (3.2.17)
70
- actionpack (= 3.2.17)
71
- activesupport (= 3.2.17)
72
- rack-ssl (~> 1.3.2)
73
- rake (>= 0.8.7)
74
- rdoc (~> 3.4)
75
- thor (>= 0.14.6, < 2.0)
76
- rake (10.1.1)
77
- rdoc (3.12.2)
78
- json (~> 1.4)
79
- rspec-core (2.14.8)
80
- rspec-expectations (2.14.5)
81
- diff-lcs (>= 1.1.3, < 2.0)
82
- rspec-mocks (2.14.6)
83
- rspec-rails (2.14.1)
84
- actionpack (>= 3.0)
85
- activemodel (>= 3.0)
86
- activesupport (>= 3.0)
87
- railties (>= 3.0)
88
- rspec-core (~> 2.14.0)
89
- rspec-expectations (~> 2.14.0)
90
- rspec-mocks (~> 2.14.0)
91
- shoulda-matchers (2.5.0)
92
- activesupport (>= 3.0.0)
93
- sprockets (2.2.2)
94
- hike (~> 1.2)
95
- multi_json (~> 1.0)
96
- rack (~> 1.0)
97
- tilt (~> 1.1, != 1.3.0)
98
- sqlite3 (1.3.9)
99
- thor (0.18.1)
100
- tilt (1.4.1)
101
- treetop (1.4.15)
102
- polyglot
103
- polyglot (>= 0.3.1)
104
- tzinfo (0.3.38)
105
-
106
- PLATFORMS
107
- ruby
108
-
109
- DEPENDENCIES
110
- appraisal
111
- bundler
112
- rails (~> 3)
113
- rake
114
- rspec-rails
115
- shoulda-kept-respond-with-content-type!
116
- sqlite3
@@ -1,116 +0,0 @@
1
- PATH
2
- remote: ../
3
- specs:
4
- shoulda-kept-respond-with-content-type (1.0.0)
5
- shoulda-matchers (>= 2.1.0)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- actionmailer (3.2.17)
11
- actionpack (= 3.2.17)
12
- mail (~> 2.5.4)
13
- actionpack (3.2.17)
14
- activemodel (= 3.2.17)
15
- activesupport (= 3.2.17)
16
- builder (~> 3.0.0)
17
- erubis (~> 2.7.0)
18
- journey (~> 1.0.4)
19
- rack (~> 1.4.5)
20
- rack-cache (~> 1.2)
21
- rack-test (~> 0.6.1)
22
- sprockets (~> 2.2.1)
23
- activemodel (3.2.17)
24
- activesupport (= 3.2.17)
25
- builder (~> 3.0.0)
26
- activerecord (3.2.17)
27
- activemodel (= 3.2.17)
28
- activesupport (= 3.2.17)
29
- arel (~> 3.0.2)
30
- tzinfo (~> 0.3.29)
31
- activeresource (3.2.17)
32
- activemodel (= 3.2.17)
33
- activesupport (= 3.2.17)
34
- activesupport (3.2.17)
35
- i18n (~> 0.6, >= 0.6.4)
36
- multi_json (~> 1.0)
37
- appraisal (0.5.2)
38
- bundler
39
- rake
40
- arel (3.0.3)
41
- builder (3.0.4)
42
- diff-lcs (1.2.5)
43
- erubis (2.7.0)
44
- hike (1.2.3)
45
- i18n (0.6.9)
46
- journey (1.0.4)
47
- json (1.8.1)
48
- mail (2.5.4)
49
- mime-types (~> 1.16)
50
- treetop (~> 1.4.8)
51
- mime-types (1.25.1)
52
- multi_json (1.9.0)
53
- polyglot (0.3.4)
54
- rack (1.4.5)
55
- rack-cache (1.2)
56
- rack (>= 0.4)
57
- rack-ssl (1.3.3)
58
- rack
59
- rack-test (0.6.2)
60
- rack (>= 1.0)
61
- rails (3.2.17)
62
- actionmailer (= 3.2.17)
63
- actionpack (= 3.2.17)
64
- activerecord (= 3.2.17)
65
- activeresource (= 3.2.17)
66
- activesupport (= 3.2.17)
67
- bundler (~> 1.0)
68
- railties (= 3.2.17)
69
- railties (3.2.17)
70
- actionpack (= 3.2.17)
71
- activesupport (= 3.2.17)
72
- rack-ssl (~> 1.3.2)
73
- rake (>= 0.8.7)
74
- rdoc (~> 3.4)
75
- thor (>= 0.14.6, < 2.0)
76
- rake (10.1.1)
77
- rdoc (3.12.2)
78
- json (~> 1.4)
79
- rspec-core (2.14.8)
80
- rspec-expectations (2.14.5)
81
- diff-lcs (>= 1.1.3, < 2.0)
82
- rspec-mocks (2.14.6)
83
- rspec-rails (2.14.1)
84
- actionpack (>= 3.0)
85
- activemodel (>= 3.0)
86
- activesupport (>= 3.0)
87
- railties (>= 3.0)
88
- rspec-core (~> 2.14.0)
89
- rspec-expectations (~> 2.14.0)
90
- rspec-mocks (~> 2.14.0)
91
- shoulda-matchers (2.5.0)
92
- activesupport (>= 3.0.0)
93
- sprockets (2.2.2)
94
- hike (~> 1.2)
95
- multi_json (~> 1.0)
96
- rack (~> 1.0)
97
- tilt (~> 1.1, != 1.3.0)
98
- sqlite3 (1.3.9)
99
- thor (0.18.1)
100
- tilt (1.4.1)
101
- treetop (1.4.15)
102
- polyglot
103
- polyglot (>= 0.3.1)
104
- tzinfo (0.3.38)
105
-
106
- PLATFORMS
107
- ruby
108
-
109
- DEPENDENCIES
110
- appraisal
111
- bundler
112
- rails (~> 3.0)
113
- rake
114
- rspec-rails
115
- shoulda-kept-respond-with-content-type!
116
- sqlite3
@@ -1,126 +0,0 @@
1
- PATH
2
- remote: ../
3
- specs:
4
- shoulda-kept-respond-with-content-type (1.0.0)
5
- shoulda-matchers (>= 2.1.0)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- actionmailer (3.2.17)
11
- actionpack (= 3.2.17)
12
- mail (~> 2.5.4)
13
- actionpack (3.2.17)
14
- activemodel (= 3.2.17)
15
- activesupport (= 3.2.17)
16
- builder (~> 3.0.0)
17
- erubis (~> 2.7.0)
18
- journey (~> 1.0.4)
19
- rack (~> 1.4.5)
20
- rack-cache (~> 1.2)
21
- rack-test (~> 0.6.1)
22
- sprockets (~> 2.2.1)
23
- activemodel (3.2.17)
24
- activesupport (= 3.2.17)
25
- builder (~> 3.0.0)
26
- activerecord (3.2.17)
27
- activemodel (= 3.2.17)
28
- activesupport (= 3.2.17)
29
- arel (~> 3.0.2)
30
- tzinfo (~> 0.3.29)
31
- activeresource (3.2.17)
32
- activemodel (= 3.2.17)
33
- activesupport (= 3.2.17)
34
- activesupport (3.2.17)
35
- i18n (~> 0.6, >= 0.6.4)
36
- multi_json (~> 1.0)
37
- appraisal (0.5.2)
38
- bundler
39
- rake
40
- arel (3.0.3)
41
- builder (3.0.4)
42
- diff-lcs (1.2.5)
43
- erubis (2.7.0)
44
- hike (1.2.3)
45
- i18n (0.6.9)
46
- journey (1.0.4)
47
- jquery-rails (3.1.0)
48
- railties (>= 3.0, < 5.0)
49
- thor (>= 0.14, < 2.0)
50
- json (1.8.1)
51
- mail (2.5.4)
52
- mime-types (~> 1.16)
53
- treetop (~> 1.4.8)
54
- mime-types (1.25.1)
55
- multi_json (1.9.0)
56
- polyglot (0.3.4)
57
- rack (1.4.5)
58
- rack-cache (1.2)
59
- rack (>= 0.4)
60
- rack-ssl (1.3.3)
61
- rack
62
- rack-test (0.6.2)
63
- rack (>= 1.0)
64
- rails (3.2.17)
65
- actionmailer (= 3.2.17)
66
- actionpack (= 3.2.17)
67
- activerecord (= 3.2.17)
68
- activeresource (= 3.2.17)
69
- activesupport (= 3.2.17)
70
- bundler (~> 1.0)
71
- railties (= 3.2.17)
72
- railties (3.2.17)
73
- actionpack (= 3.2.17)
74
- activesupport (= 3.2.17)
75
- rack-ssl (~> 1.3.2)
76
- rake (>= 0.8.7)
77
- rdoc (~> 3.4)
78
- thor (>= 0.14.6, < 2.0)
79
- rake (10.1.1)
80
- rdoc (3.12.2)
81
- json (~> 1.4)
82
- rspec-core (2.14.8)
83
- rspec-expectations (2.14.5)
84
- diff-lcs (>= 1.1.3, < 2.0)
85
- rspec-mocks (2.14.6)
86
- rspec-rails (2.14.1)
87
- actionpack (>= 3.0)
88
- activemodel (>= 3.0)
89
- activesupport (>= 3.0)
90
- railties (>= 3.0)
91
- rspec-core (~> 2.14.0)
92
- rspec-expectations (~> 2.14.0)
93
- rspec-mocks (~> 2.14.0)
94
- sass (3.2.15)
95
- sass-rails (3.2.6)
96
- railties (~> 3.2.0)
97
- sass (>= 3.1.10)
98
- tilt (~> 1.3)
99
- shoulda-matchers (2.5.0)
100
- activesupport (>= 3.0.0)
101
- sprockets (2.2.2)
102
- hike (~> 1.2)
103
- multi_json (~> 1.0)
104
- rack (~> 1.0)
105
- tilt (~> 1.1, != 1.3.0)
106
- sqlite3 (1.3.9)
107
- thor (0.18.1)
108
- tilt (1.4.1)
109
- treetop (1.4.15)
110
- polyglot
111
- polyglot (>= 0.3.1)
112
- tzinfo (0.3.38)
113
-
114
- PLATFORMS
115
- ruby
116
-
117
- DEPENDENCIES
118
- appraisal
119
- bundler
120
- jquery-rails
121
- rails (~> 3.1)
122
- rake
123
- rspec-rails
124
- sass-rails
125
- shoulda-kept-respond-with-content-type!
126
- sqlite3
@@ -1,126 +0,0 @@
1
- PATH
2
- remote: ../
3
- specs:
4
- shoulda-kept-respond-with-content-type (1.0.0)
5
- shoulda-matchers (>= 2.1.0)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- actionmailer (3.2.17)
11
- actionpack (= 3.2.17)
12
- mail (~> 2.5.4)
13
- actionpack (3.2.17)
14
- activemodel (= 3.2.17)
15
- activesupport (= 3.2.17)
16
- builder (~> 3.0.0)
17
- erubis (~> 2.7.0)
18
- journey (~> 1.0.4)
19
- rack (~> 1.4.5)
20
- rack-cache (~> 1.2)
21
- rack-test (~> 0.6.1)
22
- sprockets (~> 2.2.1)
23
- activemodel (3.2.17)
24
- activesupport (= 3.2.17)
25
- builder (~> 3.0.0)
26
- activerecord (3.2.17)
27
- activemodel (= 3.2.17)
28
- activesupport (= 3.2.17)
29
- arel (~> 3.0.2)
30
- tzinfo (~> 0.3.29)
31
- activeresource (3.2.17)
32
- activemodel (= 3.2.17)
33
- activesupport (= 3.2.17)
34
- activesupport (3.2.17)
35
- i18n (~> 0.6, >= 0.6.4)
36
- multi_json (~> 1.0)
37
- appraisal (0.5.2)
38
- bundler
39
- rake
40
- arel (3.0.3)
41
- builder (3.0.4)
42
- diff-lcs (1.2.5)
43
- erubis (2.7.0)
44
- hike (1.2.3)
45
- i18n (0.6.9)
46
- journey (1.0.4)
47
- jquery-rails (3.1.0)
48
- railties (>= 3.0, < 5.0)
49
- thor (>= 0.14, < 2.0)
50
- json (1.8.1)
51
- mail (2.5.4)
52
- mime-types (~> 1.16)
53
- treetop (~> 1.4.8)
54
- mime-types (1.25.1)
55
- multi_json (1.9.0)
56
- polyglot (0.3.4)
57
- rack (1.4.5)
58
- rack-cache (1.2)
59
- rack (>= 0.4)
60
- rack-ssl (1.3.3)
61
- rack
62
- rack-test (0.6.2)
63
- rack (>= 1.0)
64
- rails (3.2.17)
65
- actionmailer (= 3.2.17)
66
- actionpack (= 3.2.17)
67
- activerecord (= 3.2.17)
68
- activeresource (= 3.2.17)
69
- activesupport (= 3.2.17)
70
- bundler (~> 1.0)
71
- railties (= 3.2.17)
72
- railties (3.2.17)
73
- actionpack (= 3.2.17)
74
- activesupport (= 3.2.17)
75
- rack-ssl (~> 1.3.2)
76
- rake (>= 0.8.7)
77
- rdoc (~> 3.4)
78
- thor (>= 0.14.6, < 2.0)
79
- rake (10.1.1)
80
- rdoc (3.12.2)
81
- json (~> 1.4)
82
- rspec-core (2.14.8)
83
- rspec-expectations (2.14.5)
84
- diff-lcs (>= 1.1.3, < 2.0)
85
- rspec-mocks (2.14.6)
86
- rspec-rails (2.14.1)
87
- actionpack (>= 3.0)
88
- activemodel (>= 3.0)
89
- activesupport (>= 3.0)
90
- railties (>= 3.0)
91
- rspec-core (~> 2.14.0)
92
- rspec-expectations (~> 2.14.0)
93
- rspec-mocks (~> 2.14.0)
94
- sass (3.2.15)
95
- sass-rails (3.2.6)
96
- railties (~> 3.2.0)
97
- sass (>= 3.1.10)
98
- tilt (~> 1.3)
99
- shoulda-matchers (2.5.0)
100
- activesupport (>= 3.0.0)
101
- sprockets (2.2.2)
102
- hike (~> 1.2)
103
- multi_json (~> 1.0)
104
- rack (~> 1.0)
105
- tilt (~> 1.1, != 1.3.0)
106
- sqlite3 (1.3.9)
107
- thor (0.18.1)
108
- tilt (1.4.1)
109
- treetop (1.4.15)
110
- polyglot
111
- polyglot (>= 0.3.1)
112
- tzinfo (0.3.38)
113
-
114
- PLATFORMS
115
- ruby
116
-
117
- DEPENDENCIES
118
- appraisal
119
- bundler
120
- jquery-rails
121
- rails (~> 3.2)
122
- rake
123
- rspec-rails
124
- sass-rails
125
- shoulda-kept-respond-with-content-type!
126
- sqlite3