loaf 0.8.0 → 0.8.1

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
  SHA256:
3
- metadata.gz: 1345a409b2a725846ac573193095c6a53b398a23e87bcace96c0cc06d0ff1c27
4
- data.tar.gz: 3f60d6a1921ead6fd51654aa2f3e80fbd85ee53955f9e3aa40cd850fd1d00a86
3
+ metadata.gz: cc22570dd017b80276b640bf9c756b19ddcbb02b85c74c4f484773aa7af42ad2
4
+ data.tar.gz: d62220b5739f21e5260a5bad410374bc39a9d2f2a54e5a6b19a9d05d2ff553ad
5
5
  SHA512:
6
- metadata.gz: 7689bbb410e7b440ba0a4bec01ad93f17d4d42412913732f530e862c6abed8a4a4519bf0d1064566da2346c798e9c04673edf97c8e3e76543bc21cb7f041adc5
7
- data.tar.gz: ee103f98f0a5ddde85c4594e3efafeebe76acfc316147524e6922dca990282fc334d626550091eec0a50d0bc14c35b7bdefd08be690001d977b86cbc81584d00
6
+ metadata.gz: 9d768470f207313a752d394c1157f17845665b7d554ad1d042fdb0c3b11f3b57a3689484cfe90ba75739db7027fd3b6abbbd993b0ed2dcfc39258a746e50edee
7
+ data.tar.gz: ac730df55f980215bc2e6c2d13db49e71066ce37e458c2cd903e7d90c6f1fc11fdc93f1ed233d65043e0745e803d39f5d926335b06dc2aaadf80b8167e081a4e
@@ -1,5 +1,15 @@
1
1
  # Change log
2
2
 
3
+ ## [v0.8.1] - 2019-02-04
4
+
5
+ ### Added
6
+ * Add console binary
7
+
8
+ ### Changed
9
+ * Remove rake & appraisal binaries
10
+ * Change setup binary to load correct env
11
+ * Change gemspec to load files directly in without using git
12
+
3
13
  ## [v0.8.0] - 2018-08-07
4
14
 
5
15
  ### Changed
@@ -14,7 +24,7 @@
14
24
  ## [v0.7.0] - 2018-06-20
15
25
 
16
26
  ### Added
17
- * Add test setup for Rails 5.2 by Bendon Muir(@brendon)
27
+ * Add test setup for Rails 5.2 by Brendon Muir(@brendon)
18
28
 
19
29
  ### Changed
20
30
  * Change controller level #breadcrumb helper to accept Proc as name without controller parameter by Brendon Muir(@brendon)
@@ -111,14 +121,14 @@
111
121
 
112
122
  * Initial implementation and release
113
123
 
114
- [v0.8.0]: https://github.com/piotrmurach/tty-spinner/compare/v0.7.0...v0.8.0
115
- [v0.7.0]: https://github.com/piotrmurach/tty-spinner/compare/v0.6.2...v0.7.0
116
- [v0.6.2]: https://github.com/piotrmurach/tty-spinner/compare/v0.6.1...v0.6.2
117
- [v0.6.1]: https://github.com/piotrmurach/tty-spinner/compare/v0.6.0...v0.6.1
118
- [v0.6.0]: https://github.com/piotrmurach/tty-spinner/compare/v0.5.0...v0.6.0
119
- [v0.5.0]: https://github.com/piotrmurach/tty-spinner/compare/v0.4.0...v0.5.0
120
- [v0.4.0]: https://github.com/piotrmurach/tty-spinner/compare/v0.3.0...v0.4.0
121
- [v0.3.0]: https://github.com/piotrmurach/tty-spinner/compare/v0.2.1...v0.3.0
122
- [v0.2.1]: https://github.com/piotrmurach/tty-spinner/compare/v0.2.0...v0.2.1
123
- [v0.2.0]: https://github.com/piotrmurach/tty-spinner/compare/v0.1.0...v0.2.0
124
- [v0.1.0]: https://github.com/piotrmurach/tty-spinner/compare/v0.1.0...HEAD
124
+ [v0.8.0]: https://github.com/piotrmurach/loaf/compare/v0.7.0...v0.8.0
125
+ [v0.7.0]: https://github.com/piotrmurach/loaf/compare/v0.6.2...v0.7.0
126
+ [v0.6.2]: https://github.com/piotrmurach/loaf/compare/v0.6.1...v0.6.2
127
+ [v0.6.1]: https://github.com/piotrmurach/loaf/compare/v0.6.0...v0.6.1
128
+ [v0.6.0]: https://github.com/piotrmurach/loaf/compare/v0.5.0...v0.6.0
129
+ [v0.5.0]: https://github.com/piotrmurach/loaf/compare/v0.4.0...v0.5.0
130
+ [v0.4.0]: https://github.com/piotrmurach/loaf/compare/v0.3.0...v0.4.0
131
+ [v0.3.0]: https://github.com/piotrmurach/loaf/compare/v0.2.1...v0.3.0
132
+ [v0.2.1]: https://github.com/piotrmurach/loaf/compare/v0.2.0...v0.2.1
133
+ [v0.2.0]: https://github.com/piotrmurach/loaf/compare/v0.1.0...v0.2.0
134
+ [v0.1.0]: https://github.com/piotrmurach/loaf/compare/v0.1.0...HEAD
data/README.md CHANGED
@@ -245,7 +245,7 @@ For Bootstrap 4:
245
245
  ```erb
246
246
  <% #erb %>
247
247
  <nav aria-label="breadcrumb">
248
- <ol class='breadcrumbs'>
248
+ <ol class='breadcrumb'>
249
249
  <% breadcrumb_trail do |crumb| %>
250
250
  <li class="breadcrumb-item <%= crumb.current? ? 'active' : '' %>">
251
251
  <%= link_to_unless crumb.current?, crumb.name, crumb.url, (crumb.current? ? {'aria-current' => 'page'} : {}) %>
@@ -259,7 +259,7 @@ and if you are using HAML do:
259
259
 
260
260
  ```haml
261
261
  - # haml
262
- %ol.breadcrumbs
262
+ %ol.breadcrumb
263
263
  - breadcrumb_trail do |crumb|
264
264
  %li.breadcrumb-item{class: crumb.current? ? 'active' : '' }
265
265
  = link_to_unless crumb.current?, crumb.name, crumb.url, (crumb.current? ? {'aria-current' => 'page'} : {})
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "loaf"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
data/bin/setup CHANGED
@@ -1,6 +1,8 @@
1
- #!/bin/sh
1
+ #!/usr/bin/env bash
2
2
 
3
- set -e
3
+ set -euo pipefail
4
+ IFS=$'\n\t'
5
+ set -vx
4
6
 
5
7
  # Install gems required by Appraisal
6
8
  bundle install
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Loaf
4
- VERSION = '0.8.0'.freeze
4
+ VERSION = '0.8.1'
5
5
  end # Loaf
@@ -12,17 +12,24 @@ Gem::Specification.new do |spec|
12
12
  spec.summary = %q{Loaf manages and displays breadcrumb trails in your Rails application.}
13
13
  spec.description = %q{Loaf manages and displays breadcrumb trails in your Rails app. It aims to handle breadcrumb data through easy dsl and expose it through view helpers without any assumptions about markup.}
14
14
 
15
- spec.files = `git ls-files`.split("\n")
16
- spec.test_files = `git ls-files -- {spec,features}/*`.split("\n")
17
- spec.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
15
+ spec.files = Dir['{lib,spec,config}/**/*'].reject { |f|
16
+ File.directory?(f) || f.include?('.sqlite3') || f.include?('.log')
17
+ }
18
+ spec.files += Dir['{bin,tasks}/*', 'loaf.gemspec']
19
+ spec.files += Dir['README.md', 'CHANGELOG.md', 'LICENSE.txt', 'Rakefile', 'Appraisals']
18
20
  spec.require_paths = ["lib"]
19
21
 
20
- spec.metadata['allowed_push_host'] = 'https://rubygems.org'
21
- spec.metadata['source_code_uri'] = 'https://github.com/piotrmurach/loaf'
22
- spec.metadata['changelog_uri'] = 'https://github.com/piotrmurach/loaf/blob/master/CHANGELOG.md'
22
+ if spec.respond_to?(:metadata=)
23
+ spec.metadata = {
24
+ 'allowed_push_host' => 'https://rubygems.org',
25
+ 'bug_tracker_uri' => 'https://github.com/piotrmurach/loaf/issues',
26
+ 'source_code_uri' => 'https://github.com/piotrmurach/loaf',
27
+ 'changelog_uri' => 'https://github.com/piotrmurach/loaf/blob/master/CHANGELOG.md'
28
+ }
29
+ end
23
30
 
24
31
  spec.add_dependency 'rails', '>= 3.2'
25
32
 
26
- spec.add_development_dependency 'bundler', '~> 1.5'
33
+ spec.add_development_dependency 'bundler', '>= 1.5'
27
34
  spec.add_development_dependency 'rake'
28
35
  end
@@ -0,0 +1,7 @@
1
+ # This file should contain all the record creation needed to seed the database with its default values.
2
+ # The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
3
+ #
4
+ # Examples:
5
+ #
6
+ # cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }])
7
+ # Mayor.create(name: 'Emanuel', city: cities.first)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: loaf
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Piotr Murach
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-08-07 00:00:00.000000000 Z
11
+ date: 2019-02-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -28,14 +28,14 @@ dependencies:
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
33
  version: '1.5'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - "~>"
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '1.5'
41
41
  - !ruby/object:Gem::Dependency
@@ -57,36 +57,18 @@ description: Loaf manages and displays breadcrumb trails in your Rails app. It a
57
57
  any assumptions about markup.
58
58
  email:
59
59
  - ''
60
- executables:
61
- - appraisal
62
- - rake
63
- - setup
60
+ executables: []
64
61
  extensions: []
65
62
  extra_rdoc_files: []
66
63
  files:
67
- - ".document"
68
- - ".gitignore"
69
- - ".rspec"
70
- - ".travis.yml"
71
64
  - Appraisals
72
65
  - CHANGELOG.md
73
- - Gemfile
74
- - Gemfile.lock
75
66
  - LICENSE.txt
76
67
  - README.md
77
68
  - Rakefile
78
- - assets/loaf_logo.png
79
- - bin/appraisal
80
- - bin/rake
69
+ - bin/console
81
70
  - bin/setup
82
71
  - config/locales/loaf.en.yml
83
- - gemfiles/rails3.2.gemfile
84
- - gemfiles/rails4.0.gemfile
85
- - gemfiles/rails4.1.gemfile
86
- - gemfiles/rails4.2.gemfile
87
- - gemfiles/rails5.0.gemfile
88
- - gemfiles/rails5.1.gemfile
89
- - gemfiles/rails5.2.gemfile
90
72
  - lib/generators/loaf/install_generator.rb
91
73
  - lib/loaf.rb
92
74
  - lib/loaf/breadcrumb.rb
@@ -133,7 +115,6 @@ files:
133
115
  - spec/rails_app/config/routes.rb
134
116
  - spec/rails_app/config/secrets.yml
135
117
  - spec/rails_app/db/seeds.rb
136
- - spec/rails_app/log/.gitkeep
137
118
  - spec/rails_app/public/404.html
138
119
  - spec/rails_app/public/422.html
139
120
  - spec/rails_app/public/500.html
@@ -160,6 +141,7 @@ homepage: https://github.com/piotrmurach/loaf
160
141
  licenses: []
161
142
  metadata:
162
143
  allowed_push_host: https://rubygems.org
144
+ bug_tracker_uri: https://github.com/piotrmurach/loaf/issues
163
145
  source_code_uri: https://github.com/piotrmurach/loaf
164
146
  changelog_uri: https://github.com/piotrmurach/loaf/blob/master/CHANGELOG.md
165
147
  post_install_message:
@@ -182,57 +164,4 @@ rubygems_version: 2.7.3
182
164
  signing_key:
183
165
  specification_version: 4
184
166
  summary: Loaf manages and displays breadcrumb trails in your Rails application.
185
- test_files:
186
- - spec/integration/breadcrumb_trail_spec.rb
187
- - spec/integration/configuration_spec.rb
188
- - spec/rails_app/Rakefile
189
- - spec/rails_app/app/controllers/application_controller.rb
190
- - spec/rails_app/app/controllers/comments_controller.rb
191
- - spec/rails_app/app/controllers/home_controller.rb
192
- - spec/rails_app/app/controllers/posts_controller.rb
193
- - spec/rails_app/app/views/comments/index.html.erb
194
- - spec/rails_app/app/views/home/index.html.erb
195
- - spec/rails_app/app/views/layouts/_breadcrumbs.html.erb
196
- - spec/rails_app/app/views/layouts/application.html.erb
197
- - spec/rails_app/app/views/posts/index.html.erb
198
- - spec/rails_app/app/views/posts/new.html.erb
199
- - spec/rails_app/app/views/posts/show.html.erb
200
- - spec/rails_app/config.ru
201
- - spec/rails_app/config/application.rb
202
- - spec/rails_app/config/boot.rb
203
- - spec/rails_app/config/database.yml
204
- - spec/rails_app/config/environment.rb
205
- - spec/rails_app/config/environments/development.rb
206
- - spec/rails_app/config/environments/production.rb
207
- - spec/rails_app/config/environments/test.rb
208
- - spec/rails_app/config/initializers/backtrace_silencers.rb
209
- - spec/rails_app/config/initializers/inflections.rb
210
- - spec/rails_app/config/initializers/mime_types.rb
211
- - spec/rails_app/config/initializers/secret_token.rb
212
- - spec/rails_app/config/initializers/session_store.rb
213
- - spec/rails_app/config/initializers/wrap_parameters.rb
214
- - spec/rails_app/config/locales/en.yml
215
- - spec/rails_app/config/locales/loaf.en.yml
216
- - spec/rails_app/config/routes.rb
217
- - spec/rails_app/config/secrets.yml
218
- - spec/rails_app/db/seeds.rb
219
- - spec/rails_app/log/.gitkeep
220
- - spec/rails_app/public/404.html
221
- - spec/rails_app/public/422.html
222
- - spec/rails_app/public/500.html
223
- - spec/rails_app/public/favicon.ico
224
- - spec/rails_app/public/robots.txt
225
- - spec/spec_helper.rb
226
- - spec/support/capybara.rb
227
- - spec/support/dummy_controller.rb
228
- - spec/support/dummy_view.rb
229
- - spec/support/load_routes.rb
230
- - spec/unit/configuration_spec.rb
231
- - spec/unit/controller_extensions_spec.rb
232
- - spec/unit/crumb_spec.rb
233
- - spec/unit/generators/install_generator_spec.rb
234
- - spec/unit/options_validator_spec.rb
235
- - spec/unit/translation_spec.rb
236
- - spec/unit/view_extensions/breadcrumb_spec.rb
237
- - spec/unit/view_extensions/breadcrumb_trail_spec.rb
238
- - spec/unit/view_extensions/has_breadcrumbs_spec.rb
167
+ test_files: []
data/.document DELETED
@@ -1,5 +0,0 @@
1
- lib/**/*.rb
2
- bin/*
3
- -
4
- features/**/*.feature
5
- LICENSE.txt
data/.gitignore DELETED
@@ -1,23 +0,0 @@
1
- *.gem
2
- *.rbc
3
- .bundle
4
- .config
5
- .yardoc
6
- gemfiles/*.lock
7
- InstalledFiles
8
- _yardoc
9
- coverage
10
- doc/
11
- lib/bundler/man
12
- pkg
13
- rdoc
14
- spec/reports
15
- spec/rails_app/tmp
16
- spec/rails_app/db
17
- spec/rails_app/log
18
- tmp
19
- *.bundle
20
- *.so
21
- *.o
22
- *.a
23
- mkmf.log
data/.rspec DELETED
@@ -1,2 +0,0 @@
1
- --color
2
- --require spec_helper
@@ -1,49 +0,0 @@
1
- language: ruby
2
- cache: bundler
3
- sudo: false
4
- before_install: "gem update bundler"
5
- script: "bundle exec rake ci"
6
- rvm:
7
- - 2.1.10
8
- - 2.2.9
9
- - 2.3.6
10
- - 2.4.3
11
- - 2.5.1
12
- - jruby-9.1.17.0
13
- gemfile:
14
- - gemfiles/rails3.2.gemfile
15
- - gemfiles/rails4.0.gemfile
16
- - gemfiles/rails4.1.gemfile
17
- - gemfiles/rails4.2.gemfile
18
- - gemfiles/rails5.0.gemfile
19
- - gemfiles/rails5.1.gemfile
20
- - gemfiles/rails5.2.gemfile
21
- matrix:
22
- exclude:
23
- - rvm: 2.1.10
24
- gemfile: gemfiles/rails5.0.gemfile
25
- - rvm: 2.1.10
26
- gemfile: gemfiles/rails5.1.gemfile
27
- - rvm: 2.1.10
28
- gemfile: gemfiles/rails5.2.gemfile
29
- - rvm: 2.4.3
30
- gemfile: gemfiles/rails3.2.gemfile
31
- - rvm: 2.4.3
32
- gemfile: gemfiles/rails4.0.gemfile
33
- - rvm: 2.4.3
34
- gemfile: gemfiles/rails4.1.gemfile
35
- - rvm: 2.5.1
36
- gemfile: gemfiles/rails3.2.gemfile
37
- - rvm: 2.5.1
38
- gemfile: gemfiles/rails4.0.gemfile
39
- - rvm: 2.5.1
40
- gemfile: gemfiles/rails4.1.gemfile
41
- - rvm: jruby-9.1.17.0
42
- gemfile: gemfiles/rails5.2.gemfile
43
- allow_failures:
44
- - rvm: jruby-9.1.17.0
45
- fast_finish: true
46
- branches:
47
- only: master
48
- notifications:
49
- email: false
data/Gemfile DELETED
@@ -1,19 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gemspec
4
-
5
- gem 'ammeter', '~> 1.1.4'
6
- gem 'appraisal', '~> 2.2.0'
7
- gem 'yard', '~> 0.9.12'
8
- gem 'capybara', '~> 2.16.1'
9
- gem 'rspec-rails', '~> 3.7.2'
10
- gem 'nokogiri', '~> 1.8.1'
11
- gem 'public_suffix', '~> 2.0.5'
12
- gem 'sqlite3' , '~> 1.3.13', platforms: :ruby
13
- gem 'activerecord-jdbcsqlite3-adapter', '~> 1.3.24', platforms: :jruby
14
-
15
- group :metrics do
16
- gem 'coveralls', '0.8.17'
17
- gem 'simplecov', '~> 0.12.0'
18
- gem 'yardstick', '~> 0.9.9'
19
- end
@@ -1,193 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- loaf (0.8.0)
5
- rails (>= 3.2)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- actionmailer (4.2.10)
11
- actionpack (= 4.2.10)
12
- actionview (= 4.2.10)
13
- activejob (= 4.2.10)
14
- mail (~> 2.5, >= 2.5.4)
15
- rails-dom-testing (~> 1.0, >= 1.0.5)
16
- actionpack (4.2.10)
17
- actionview (= 4.2.10)
18
- activesupport (= 4.2.10)
19
- rack (~> 1.6)
20
- rack-test (~> 0.6.2)
21
- rails-dom-testing (~> 1.0, >= 1.0.5)
22
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
23
- actionview (4.2.10)
24
- activesupport (= 4.2.10)
25
- builder (~> 3.1)
26
- erubis (~> 2.7.0)
27
- rails-dom-testing (~> 1.0, >= 1.0.5)
28
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
29
- activejob (4.2.10)
30
- activesupport (= 4.2.10)
31
- globalid (>= 0.3.0)
32
- activemodel (4.2.10)
33
- activesupport (= 4.2.10)
34
- builder (~> 3.1)
35
- activerecord (4.2.10)
36
- activemodel (= 4.2.10)
37
- activesupport (= 4.2.10)
38
- arel (~> 6.0)
39
- activerecord-jdbc-adapter (1.3.24)
40
- activerecord (>= 2.2, < 5.0)
41
- activerecord-jdbcsqlite3-adapter (1.3.24)
42
- activerecord-jdbc-adapter (~> 1.3.24)
43
- jdbc-sqlite3 (>= 3.7.2, < 3.9)
44
- activesupport (4.2.10)
45
- i18n (~> 0.7)
46
- minitest (~> 5.1)
47
- thread_safe (~> 0.3, >= 0.3.4)
48
- tzinfo (~> 1.1)
49
- addressable (2.5.2)
50
- public_suffix (>= 2.0.2, < 4.0)
51
- ammeter (1.1.4)
52
- activesupport (>= 3.0)
53
- railties (>= 3.0)
54
- rspec-rails (>= 2.2)
55
- appraisal (2.2.0)
56
- bundler
57
- rake
58
- thor (>= 0.14.0)
59
- arel (6.0.4)
60
- builder (3.2.3)
61
- capybara (2.16.1)
62
- addressable
63
- mini_mime (>= 0.1.3)
64
- nokogiri (>= 1.3.3)
65
- rack (>= 1.0.0)
66
- rack-test (>= 0.5.4)
67
- xpath (~> 2.0)
68
- concurrent-ruby (1.0.5)
69
- concurrent-ruby (1.0.5-java)
70
- coveralls (0.8.17)
71
- json (>= 1.8, < 3)
72
- simplecov (~> 0.12.0)
73
- term-ansicolor (~> 1.3)
74
- thor (~> 0.19.1)
75
- tins (~> 1.6)
76
- crass (1.0.4)
77
- diff-lcs (1.3)
78
- docile (1.1.5)
79
- erubis (2.7.0)
80
- globalid (0.4.1)
81
- activesupport (>= 4.2.0)
82
- i18n (0.9.5)
83
- concurrent-ruby (~> 1.0)
84
- jdbc-sqlite3 (3.8.11.2)
85
- json (2.1.0)
86
- json (2.1.0-java)
87
- loofah (2.2.2)
88
- crass (~> 1.0.2)
89
- nokogiri (>= 1.5.9)
90
- mail (2.7.0)
91
- mini_mime (>= 0.1.1)
92
- mini_mime (1.0.0)
93
- mini_portile2 (2.3.0)
94
- minitest (5.11.3)
95
- nokogiri (1.8.3)
96
- mini_portile2 (~> 2.3.0)
97
- nokogiri (1.8.3-java)
98
- public_suffix (2.0.5)
99
- rack (1.6.10)
100
- rack-test (0.6.3)
101
- rack (>= 1.0)
102
- rails (4.2.10)
103
- actionmailer (= 4.2.10)
104
- actionpack (= 4.2.10)
105
- actionview (= 4.2.10)
106
- activejob (= 4.2.10)
107
- activemodel (= 4.2.10)
108
- activerecord (= 4.2.10)
109
- activesupport (= 4.2.10)
110
- bundler (>= 1.3.0, < 2.0)
111
- railties (= 4.2.10)
112
- sprockets-rails
113
- rails-deprecated_sanitizer (1.0.3)
114
- activesupport (>= 4.2.0.alpha)
115
- rails-dom-testing (1.0.9)
116
- activesupport (>= 4.2.0, < 5.0)
117
- nokogiri (~> 1.6)
118
- rails-deprecated_sanitizer (>= 1.0.1)
119
- rails-html-sanitizer (1.0.4)
120
- loofah (~> 2.2, >= 2.2.2)
121
- railties (4.2.10)
122
- actionpack (= 4.2.10)
123
- activesupport (= 4.2.10)
124
- rake (>= 0.8.7)
125
- thor (>= 0.18.1, < 2.0)
126
- rake (12.3.1)
127
- rspec-core (3.7.1)
128
- rspec-support (~> 3.7.0)
129
- rspec-expectations (3.7.0)
130
- diff-lcs (>= 1.2.0, < 2.0)
131
- rspec-support (~> 3.7.0)
132
- rspec-mocks (3.7.0)
133
- diff-lcs (>= 1.2.0, < 2.0)
134
- rspec-support (~> 3.7.0)
135
- rspec-rails (3.7.2)
136
- actionpack (>= 3.0)
137
- activesupport (>= 3.0)
138
- railties (>= 3.0)
139
- rspec-core (~> 3.7.0)
140
- rspec-expectations (~> 3.7.0)
141
- rspec-mocks (~> 3.7.0)
142
- rspec-support (~> 3.7.0)
143
- rspec-support (3.7.1)
144
- simplecov (0.12.0)
145
- docile (~> 1.1.0)
146
- json (>= 1.8, < 3)
147
- simplecov-html (~> 0.10.0)
148
- simplecov-html (0.10.2)
149
- sprockets (3.7.1)
150
- concurrent-ruby (~> 1.0)
151
- rack (> 1, < 3)
152
- sprockets-rails (3.2.1)
153
- actionpack (>= 4.0)
154
- activesupport (>= 4.0)
155
- sprockets (>= 3.0.0)
156
- sqlite3 (1.3.13)
157
- term-ansicolor (1.6.0)
158
- tins (~> 1.0)
159
- thor (0.19.4)
160
- thread_safe (0.3.6)
161
- thread_safe (0.3.6-java)
162
- tins (1.16.3)
163
- tzinfo (1.2.5)
164
- thread_safe (~> 0.1)
165
- xpath (2.1.0)
166
- nokogiri (~> 1.3)
167
- yard (0.9.14)
168
- yardstick (0.9.9)
169
- yard (~> 0.8, >= 0.8.7.2)
170
-
171
- PLATFORMS
172
- java
173
- ruby
174
-
175
- DEPENDENCIES
176
- activerecord-jdbcsqlite3-adapter (~> 1.3.24)
177
- ammeter (~> 1.1.4)
178
- appraisal (~> 2.2.0)
179
- bundler (~> 1.5)
180
- capybara (~> 2.16.1)
181
- coveralls (= 0.8.17)
182
- loaf!
183
- nokogiri (~> 1.8.1)
184
- public_suffix (~> 2.0.5)
185
- rake
186
- rspec-rails (~> 3.7.2)
187
- simplecov (~> 0.12.0)
188
- sqlite3 (~> 1.3.13)
189
- yard (~> 0.9.12)
190
- yardstick (~> 0.9.9)
191
-
192
- BUNDLED WITH
193
- 1.16.2
Binary file
@@ -1,16 +0,0 @@
1
- #!/usr/bin/env ruby
2
- #
3
- # This file was generated by Bundler.
4
- #
5
- # The application 'appraisal' is installed as part of a gem, and
6
- # this file is here to facilitate running it.
7
- #
8
-
9
- require "pathname"
10
- ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
11
- Pathname.new(__FILE__).realpath)
12
-
13
- require "rubygems"
14
- require "bundler/setup"
15
-
16
- load Gem.bin_path("appraisal", "appraisal")
data/bin/rake DELETED
@@ -1,16 +0,0 @@
1
- #!/usr/bin/env ruby
2
- #
3
- # This file was generated by Bundler.
4
- #
5
- # The application 'rake' is installed as part of a gem, and
6
- # this file is here to facilitate running it.
7
- #
8
-
9
- require "pathname"
10
- ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
11
- Pathname.new(__FILE__).realpath)
12
-
13
- require "rubygems"
14
- require "bundler/setup"
15
-
16
- load Gem.bin_path("rake", "rake")
@@ -1,23 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "ammeter", "~> 1.1.4"
6
- gem "appraisal", "~> 2.2.0"
7
- gem "yard", "~> 0.9.12"
8
- gem "capybara", "~> 2.16.1"
9
- gem "rspec-rails", "~> 3.7.2"
10
- gem "nokogiri", "~> 1.8.1"
11
- gem "public_suffix", "~> 2.0.5"
12
- gem "sqlite3", "~> 1.3.13", platforms: :ruby
13
- gem "activerecord-jdbcsqlite3-adapter", "~> 1.3.23", platforms: :jruby
14
- gem "rails", "~> 3.2.22.5"
15
- gem "test-unit", "~> 3.0"
16
-
17
- group :metrics do
18
- gem "coveralls", "0.8.17"
19
- gem "simplecov", "~> 0.12.0"
20
- gem "yardstick", "~> 0.9.9"
21
- end
22
-
23
- gemspec path: "../"
@@ -1,23 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "ammeter", "~> 1.1.4"
6
- gem "appraisal", "~> 2.2.0"
7
- gem "yard", "~> 0.9.12"
8
- gem "capybara", "~> 2.16.1"
9
- gem "rspec-rails", "~> 3.7.2"
10
- gem "nokogiri", "~> 1.8.1"
11
- gem "public_suffix", "~> 2.0.5"
12
- gem "sqlite3", "~> 1.3.13", platforms: :ruby
13
- gem "activerecord-jdbcsqlite3-adapter", "~> 1.3.23", platforms: :jruby
14
- gem "rails", "~> 4.0.13"
15
- gem "test-unit"
16
-
17
- group :metrics do
18
- gem "coveralls", "0.8.17"
19
- gem "simplecov", "~> 0.12.0"
20
- gem "yardstick", "~> 0.9.9"
21
- end
22
-
23
- gemspec path: "../"
@@ -1,22 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "ammeter", "~> 1.1.4"
6
- gem "appraisal", "~> 2.2.0"
7
- gem "yard", "~> 0.9.12"
8
- gem "capybara", "~> 2.16.1"
9
- gem "rspec-rails", "~> 3.7.2"
10
- gem "nokogiri", "~> 1.8.1"
11
- gem "public_suffix", "~> 2.0.5"
12
- gem "sqlite3", "~> 1.3.13", platforms: :ruby
13
- gem "activerecord-jdbcsqlite3-adapter", "~> 1.3.23", platforms: :jruby
14
- gem "rails", "~> 4.1.16"
15
-
16
- group :metrics do
17
- gem "coveralls", "0.8.17"
18
- gem "simplecov", "~> 0.12.0"
19
- gem "yardstick", "~> 0.9.9"
20
- end
21
-
22
- gemspec path: "../"
@@ -1,22 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "ammeter", "~> 1.1.4"
6
- gem "appraisal", "~> 2.2.0"
7
- gem "yard", "~> 0.9.12"
8
- gem "capybara", "~> 2.16.1"
9
- gem "rspec-rails", "~> 3.7.2"
10
- gem "nokogiri", "~> 1.8.1"
11
- gem "public_suffix", "~> 2.0.5"
12
- gem "sqlite3", "~> 1.3.13", platforms: :ruby
13
- gem "activerecord-jdbcsqlite3-adapter", "~> 1.3.23", platforms: :jruby
14
- gem "rails", "~> 4.2.10"
15
-
16
- group :metrics do
17
- gem "coveralls", "0.8.17"
18
- gem "simplecov", "~> 0.12.0"
19
- gem "yardstick", "~> 0.9.9"
20
- end
21
-
22
- gemspec path: "../"
@@ -1,22 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "ammeter", "~> 1.1.4"
6
- gem "appraisal", "~> 2.2.0"
7
- gem "yard", "~> 0.9.12"
8
- gem "capybara", "~> 2.16.1"
9
- gem "rspec-rails", "~> 3.7.2"
10
- gem "nokogiri", "~> 1.8.1"
11
- gem "public_suffix", "~> 2.0.5"
12
- gem "sqlite3", "~> 1.3.13", platforms: :ruby
13
- gem "activerecord-jdbcsqlite3-adapter", "~> 50.1", platforms: :jruby
14
- gem "rails", "~> 5.0.7"
15
-
16
- group :metrics do
17
- gem "coveralls", "0.8.17"
18
- gem "simplecov", "~> 0.12.0"
19
- gem "yardstick", "~> 0.9.9"
20
- end
21
-
22
- gemspec path: "../"
@@ -1,22 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "ammeter", "~> 1.1.4"
6
- gem "appraisal", "~> 2.2.0"
7
- gem "yard", "~> 0.9.12"
8
- gem "capybara", "~> 2.16.1"
9
- gem "rspec-rails", "~> 3.7.2"
10
- gem "nokogiri", "~> 1.8.1"
11
- gem "public_suffix", "~> 2.0.5"
12
- gem "sqlite3", "~> 1.3.13", platforms: :ruby
13
- gem "activerecord-jdbcsqlite3-adapter", "~> 51.1", platforms: :jruby
14
- gem "rails", "~> 5.1.6"
15
-
16
- group :metrics do
17
- gem "coveralls", "0.8.17"
18
- gem "simplecov", "~> 0.12.0"
19
- gem "yardstick", "~> 0.9.9"
20
- end
21
-
22
- gemspec path: "../"
@@ -1,22 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "ammeter", "~> 1.1.4"
6
- gem "appraisal", "~> 2.2.0"
7
- gem "yard", "~> 0.9.12"
8
- gem "capybara", "~> 2.16.1"
9
- gem "rspec-rails", "~> 3.7.2"
10
- gem "nokogiri", "~> 1.8.1"
11
- gem "public_suffix", "~> 2.0.5"
12
- gem "sqlite3", "~> 1.3.13", platforms: :ruby
13
- gem "activerecord-jdbcsqlite3-adapter", "~> 1.3.23", platforms: :jruby
14
- gem "rails", "~> 5.2.0"
15
-
16
- group :metrics do
17
- gem "coveralls", "0.8.17"
18
- gem "simplecov", "~> 0.12.0"
19
- gem "yardstick", "~> 0.9.9"
20
- end
21
-
22
- gemspec path: "../"