rails_edge_test 1.2.3 → 2.1.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.
data/nix/sources.json CHANGED
@@ -1,26 +1,14 @@
1
1
  {
2
- "niv": {
3
- "branch": "master",
4
- "description": "Easy dependency management for Nix projects",
5
- "homepage": "https://github.com/nmattia/niv",
6
- "owner": "nmattia",
7
- "repo": "niv",
8
- "rev": "5b5508f85567e82d97e7c1a5a0aa87e131ebab39",
9
- "sha256": "0daa6gidnjbvxsmy5cl0w1h902qslc821hghppzi63q7qxg1pvr3",
10
- "type": "tarball",
11
- "url": "https://github.com/nmattia/niv/archive/5b5508f85567e82d97e7c1a5a0aa87e131ebab39.tar.gz",
12
- "url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
13
- },
14
2
  "nixpkgs": {
15
- "branch": "nixos-19.09",
3
+ "branch": "release-22.11",
16
4
  "description": "A read-only mirror of NixOS/nixpkgs tracking the released channels. Send issues and PRs to",
17
5
  "homepage": "https://github.com/NixOS/nixpkgs",
18
6
  "owner": "NixOS",
19
- "repo": "nixpkgs-channels",
20
- "rev": "6d445f8398d2d585d20d9acacf00fd9d15081b3b",
21
- "sha256": "1ajd0zr31iny3g9hp0pc1y2pxcm3nakdv6260lnvyn0k4vygync2",
7
+ "repo": "nixpkgs",
8
+ "rev": "bf27e9a40d779f034e340a6758fec1a841e23acd",
9
+ "sha256": "1n5g7yyrj7kz570vyhd0lcvpzljqw65d9r12hjdr69ydj7r699d8",
22
10
  "type": "tarball",
23
- "url": "https://github.com/NixOS/nixpkgs-channels/archive/6d445f8398d2d585d20d9acacf00fd9d15081b3b.tar.gz",
11
+ "url": "https://github.com/NixOS/nixpkgs/archive/bf27e9a40d779f034e340a6758fec1a841e23acd.tar.gz",
24
12
  "url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
25
13
  }
26
14
  }
data/nix/sources.nix CHANGED
@@ -6,52 +6,83 @@ let
6
6
  # The fetchers. fetch_<type> fetches specs of type <type>.
7
7
  #
8
8
 
9
- fetch_file = pkgs: spec:
10
- if spec.builtin or true then
11
- builtins_fetchurl { inherit (spec) url sha256; }
12
- else
13
- pkgs.fetchurl { inherit (spec) url sha256; };
14
-
15
- fetch_tarball = pkgs: spec:
16
- if spec.builtin or true then
17
- builtins_fetchTarball { inherit (spec) url sha256; }
18
- else
19
- pkgs.fetchzip { inherit (spec) url sha256; };
9
+ fetch_file = pkgs: name: spec:
10
+ let
11
+ name' = sanitizeName name + "-src";
12
+ in
13
+ if spec.builtin or true then
14
+ builtins_fetchurl { inherit (spec) url sha256; name = name'; }
15
+ else
16
+ pkgs.fetchurl { inherit (spec) url sha256; name = name'; };
20
17
 
21
- fetch_git = spec:
22
- builtins.fetchGit { url = spec.repo; inherit (spec) rev ref; };
18
+ fetch_tarball = pkgs: name: spec:
19
+ let
20
+ name' = sanitizeName name + "-src";
21
+ in
22
+ if spec.builtin or true then
23
+ builtins_fetchTarball { name = name'; inherit (spec) url sha256; }
24
+ else
25
+ pkgs.fetchzip { name = name'; inherit (spec) url sha256; };
23
26
 
24
- fetch_builtin-tarball = spec:
25
- builtins.trace
26
- ''
27
- WARNING:
28
- The niv type "builtin-tarball" will soon be deprecated. You should
29
- instead use `builtin = true`.
27
+ fetch_git = name: spec:
28
+ let
29
+ ref =
30
+ if spec ? ref then spec.ref else
31
+ if spec ? branch then "refs/heads/${spec.branch}" else
32
+ if spec ? tag then "refs/tags/${spec.tag}" else
33
+ abort "In git source '${name}': Please specify `ref`, `tag` or `branch`!";
34
+ submodules = if spec ? submodules then spec.submodules else false;
35
+ submoduleArg =
36
+ let
37
+ nixSupportsSubmodules = builtins.compareVersions builtins.nixVersion "2.4" >= 0;
38
+ emptyArgWithWarning =
39
+ if submodules == true
40
+ then
41
+ builtins.trace
42
+ (
43
+ "The niv input \"${name}\" uses submodules "
44
+ + "but your nix's (${builtins.nixVersion}) builtins.fetchGit "
45
+ + "does not support them"
46
+ )
47
+ {}
48
+ else {};
49
+ in
50
+ if nixSupportsSubmodules
51
+ then { inherit submodules; }
52
+ else emptyArgWithWarning;
53
+ in
54
+ builtins.fetchGit
55
+ ({ url = spec.repo; inherit (spec) rev; inherit ref; } // submoduleArg);
30
56
 
31
- $ niv modify <package> -a type=tarball -a builtin=true
32
- ''
33
- builtins_fetchTarball { inherit (spec) url sha256; };
57
+ fetch_local = spec: spec.path;
34
58
 
35
- fetch_builtin-url = spec:
36
- builtins.trace
37
- ''
38
- WARNING:
39
- The niv type "builtin-url" will soon be deprecated. You should
40
- instead use `builtin = true`.
59
+ fetch_builtin-tarball = name: throw
60
+ ''[${name}] The niv type "builtin-tarball" is deprecated. You should instead use `builtin = true`.
61
+ $ niv modify ${name} -a type=tarball -a builtin=true'';
41
62
 
42
- $ niv modify <package> -a type=file -a builtin=true
43
- ''
44
- (builtins_fetchurl { inherit (spec) url sha256; });
63
+ fetch_builtin-url = name: throw
64
+ ''[${name}] The niv type "builtin-url" will soon be deprecated. You should instead use `builtin = true`.
65
+ $ niv modify ${name} -a type=file -a builtin=true'';
45
66
 
46
67
  #
47
68
  # Various helpers
48
69
  #
49
70
 
71
+ # https://github.com/NixOS/nixpkgs/pull/83241/files#diff-c6f540a4f3bfa4b0e8b6bafd4cd54e8bR695
72
+ sanitizeName = name:
73
+ (
74
+ concatMapStrings (s: if builtins.isList s then "-" else s)
75
+ (
76
+ builtins.split "[^[:alnum:]+._?=-]+"
77
+ ((x: builtins.elemAt (builtins.match "\\.*(.*)" x) 0) name)
78
+ )
79
+ );
80
+
50
81
  # The set of packages used when specs are fetched using non-builtins.
51
- mkPkgs = sources:
82
+ mkPkgs = sources: system:
52
83
  let
53
84
  sourcesNixpkgs =
54
- import (builtins_fetchTarball { inherit (sources.nixpkgs) url sha256; }) {};
85
+ import (builtins_fetchTarball { inherit (sources.nixpkgs) url sha256; }) { inherit system; };
55
86
  hasNixpkgsPath = builtins.any (x: x.prefix == "nixpkgs") builtins.nixPath;
56
87
  hasThisAsNixpkgsPath = <nixpkgs> == ./.;
57
88
  in
@@ -71,14 +102,27 @@ let
71
102
 
72
103
  if ! builtins.hasAttr "type" spec then
73
104
  abort "ERROR: niv spec ${name} does not have a 'type' attribute"
74
- else if spec.type == "file" then fetch_file pkgs spec
75
- else if spec.type == "tarball" then fetch_tarball pkgs spec
76
- else if spec.type == "git" then fetch_git spec
77
- else if spec.type == "builtin-tarball" then fetch_builtin-tarball spec
78
- else if spec.type == "builtin-url" then fetch_builtin-url spec
105
+ else if spec.type == "file" then fetch_file pkgs name spec
106
+ else if spec.type == "tarball" then fetch_tarball pkgs name spec
107
+ else if spec.type == "git" then fetch_git name spec
108
+ else if spec.type == "local" then fetch_local spec
109
+ else if spec.type == "builtin-tarball" then fetch_builtin-tarball name
110
+ else if spec.type == "builtin-url" then fetch_builtin-url name
79
111
  else
80
112
  abort "ERROR: niv spec ${name} has unknown type ${builtins.toJSON spec.type}";
81
113
 
114
+ # If the environment variable NIV_OVERRIDE_${name} is set, then use
115
+ # the path directly as opposed to the fetched source.
116
+ replace = name: drv:
117
+ let
118
+ saneName = stringAsChars (c: if isNull (builtins.match "[a-zA-Z0-9]" c) then "_" else c) name;
119
+ ersatz = builtins.getEnv "NIV_OVERRIDE_${saneName}";
120
+ in
121
+ if ersatz == "" then drv else
122
+ # this turns the string into an actual Nix path (for both absolute and
123
+ # relative paths)
124
+ if builtins.substring 0 1 ersatz == "/" then /. + ersatz else /. + builtins.getEnv "PWD" + "/${ersatz}";
125
+
82
126
  # Ports of functions for older nix versions
83
127
 
84
128
  # a Nix version of mapAttrs if the built-in doesn't exist
@@ -87,23 +131,37 @@ let
87
131
  listToAttrs (map (attr: { name = attr; value = f attr set.${attr}; }) (attrNames set))
88
132
  );
89
133
 
134
+ # https://github.com/NixOS/nixpkgs/blob/0258808f5744ca980b9a1f24fe0b1e6f0fecee9c/lib/lists.nix#L295
135
+ range = first: last: if first > last then [] else builtins.genList (n: first + n) (last - first + 1);
136
+
137
+ # https://github.com/NixOS/nixpkgs/blob/0258808f5744ca980b9a1f24fe0b1e6f0fecee9c/lib/strings.nix#L257
138
+ stringToCharacters = s: map (p: builtins.substring p 1 s) (range 0 (builtins.stringLength s - 1));
139
+
140
+ # https://github.com/NixOS/nixpkgs/blob/0258808f5744ca980b9a1f24fe0b1e6f0fecee9c/lib/strings.nix#L269
141
+ stringAsChars = f: s: concatStrings (map f (stringToCharacters s));
142
+ concatMapStrings = f: list: concatStrings (map f list);
143
+ concatStrings = builtins.concatStringsSep "";
144
+
145
+ # https://github.com/NixOS/nixpkgs/blob/8a9f58a375c401b96da862d969f66429def1d118/lib/attrsets.nix#L331
146
+ optionalAttrs = cond: as: if cond then as else {};
147
+
90
148
  # fetchTarball version that is compatible between all the versions of Nix
91
- builtins_fetchTarball = { url, sha256 }@attrs:
149
+ builtins_fetchTarball = { url, name ? null, sha256 }@attrs:
92
150
  let
93
151
  inherit (builtins) lessThan nixVersion fetchTarball;
94
152
  in
95
153
  if lessThan nixVersion "1.12" then
96
- fetchTarball { inherit url; }
154
+ fetchTarball ({ inherit url; } // (optionalAttrs (!isNull name) { inherit name; }))
97
155
  else
98
156
  fetchTarball attrs;
99
157
 
100
158
  # fetchurl version that is compatible between all the versions of Nix
101
- builtins_fetchurl = { url, sha256 }@attrs:
159
+ builtins_fetchurl = { url, name ? null, sha256 }@attrs:
102
160
  let
103
161
  inherit (builtins) lessThan nixVersion fetchurl;
104
162
  in
105
163
  if lessThan nixVersion "1.12" then
106
- fetchurl { inherit url; }
164
+ fetchurl ({ inherit url; } // (optionalAttrs (!isNull name) { inherit name; }))
107
165
  else
108
166
  fetchurl attrs;
109
167
 
@@ -115,14 +173,15 @@ let
115
173
  then abort
116
174
  "The values in sources.json should not have an 'outPath' attribute"
117
175
  else
118
- spec // { outPath = fetch config.pkgs name spec; }
176
+ spec // { outPath = replace name (fetch config.pkgs name spec); }
119
177
  ) config.sources;
120
178
 
121
179
  # The "config" used by the fetchers
122
180
  mkConfig =
123
- { sourcesFile ? ./sources.json
124
- , sources ? builtins.fromJSON (builtins.readFile sourcesFile)
125
- , pkgs ? mkPkgs sources
181
+ { sourcesFile ? if builtins.pathExists ./sources.json then ./sources.json else null
182
+ , sources ? if isNull sourcesFile then {} else builtins.fromJSON (builtins.readFile sourcesFile)
183
+ , system ? builtins.currentSystem
184
+ , pkgs ? mkPkgs sources system
126
185
  }: rec {
127
186
  # The sources, i.e. the attribute set of spec name to spec
128
187
  inherit sources;
@@ -130,5 +189,6 @@ let
130
189
  # The "pkgs" (evaluated nixpkgs) to use for e.g. non-builtin fetchers
131
190
  inherit pkgs;
132
191
  };
192
+
133
193
  in
134
194
  mkSources (mkConfig {}) // { __functor = _: settings: mkSources (mkConfig settings); }
data/nix/update-gemset.sh CHANGED
@@ -4,4 +4,4 @@
4
4
  SCRIPT=`realpath $0`
5
5
  CWD=`dirname $SCRIPT`
6
6
 
7
- cd $CWD && bundix -m --ruby=ruby_2_5
7
+ cd $CWD && bundix -m --ruby=ruby_3_1
@@ -21,9 +21,9 @@ Gem::Specification.new do |spec|
21
21
  spec.executables << "generate_edges"
22
22
  spec.require_paths = ["lib"]
23
23
 
24
- spec.add_runtime_dependency "actionpack", ">= 5.2.0", "< 7.0.0"
24
+ spec.add_runtime_dependency "actionpack", ">= 5.2.0", "< 7.1.0"
25
25
 
26
- spec.add_development_dependency "rails", ">= 5.2", "< 7.0.0"
26
+ spec.add_development_dependency "rails", ">= 5.2", "< 7.1.0"
27
27
  spec.add_development_dependency "sqlite3", "~> 1.4.0"
28
28
  spec.add_development_dependency "rake", "~> 13.0"
29
29
  spec.add_development_dependency "rspec", "~> 3.9"
data/shell.nix CHANGED
@@ -6,11 +6,18 @@ let
6
6
  name = "rails_edge_test";
7
7
  gemfile = nix/Gemfile;
8
8
  lockfile = nix/Gemfile.lock;
9
- ruby = nixpkgs.ruby_2_5;
9
+ ruby = nixpkgs.ruby_3_1;
10
10
  gemdir = ./nix;
11
11
  };
12
- in with nixpkgs;
12
+ in
13
+ with nixpkgs;
13
14
  stdenv.mkDerivation {
15
+ FREEDESKTOP_MIME_TYPES_PATH = "${pkgs.shared-mime-info}/share/mime/packages/freedesktop.org.xml";
14
16
  name = "rails_edge_test";
15
- buildInputs = [ gems gems.wrappedRuby ];
17
+ buildInputs = [
18
+ gems
19
+ gems.wrappedRuby
20
+ # nixpkgs.ruby_3_1
21
+ nixpkgs.sqlite
22
+ ];
16
23
  }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_edge_test
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.3
4
+ version: 2.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joshua Leven
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 1970-01-01 00:00:00.000000000 Z
12
+ date: 1980-01-01 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: actionpack
@@ -20,7 +20,7 @@ dependencies:
20
20
  version: 5.2.0
21
21
  - - "<"
22
22
  - !ruby/object:Gem::Version
23
- version: 7.0.0
23
+ version: 7.1.0
24
24
  type: :runtime
25
25
  prerelease: false
26
26
  version_requirements: !ruby/object:Gem::Requirement
@@ -30,7 +30,7 @@ dependencies:
30
30
  version: 5.2.0
31
31
  - - "<"
32
32
  - !ruby/object:Gem::Version
33
- version: 7.0.0
33
+ version: 7.1.0
34
34
  - !ruby/object:Gem::Dependency
35
35
  name: rails
36
36
  requirement: !ruby/object:Gem::Requirement
@@ -40,7 +40,7 @@ dependencies:
40
40
  version: '5.2'
41
41
  - - "<"
42
42
  - !ruby/object:Gem::Version
43
- version: 7.0.0
43
+ version: 7.1.0
44
44
  type: :development
45
45
  prerelease: false
46
46
  version_requirements: !ruby/object:Gem::Requirement
@@ -50,7 +50,7 @@ dependencies:
50
50
  version: '5.2'
51
51
  - - "<"
52
52
  - !ruby/object:Gem::Version
53
- version: 7.0.0
53
+ version: 7.1.0
54
54
  - !ruby/object:Gem::Dependency
55
55
  name: sqlite3
56
56
  requirement: !ruby/object:Gem::Requirement
@@ -118,9 +118,9 @@ extensions: []
118
118
  extra_rdoc_files: []
119
119
  files:
120
120
  - ".envrc"
121
+ - ".github/workflows/ci.yml"
121
122
  - ".gitignore"
122
123
  - ".rspec"
123
- - ".travis.yml"
124
124
  - Appraisals
125
125
  - CHANGELOG.md
126
126
  - CODE_OF_CONDUCT.md
@@ -132,11 +132,6 @@ files:
132
132
  - bin/console
133
133
  - bin/setup
134
134
  - exe/generate_edges
135
- - gemfiles/rails_5.2.gemfile
136
- - gemfiles/rails_5.2.gemfile.lock
137
- - gemfiles/rails_6.0.gemfile
138
- - gemfiles/rails_6.0.gemfile.lock
139
- - gemfiles/rspec_6.0.gemfile.lock
140
135
  - lib/rails_edge_test.rb
141
136
  - lib/rails_edge_test/configuration.rb
142
137
  - lib/rails_edge_test/dsl.rb
@@ -177,7 +172,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
177
172
  - !ruby/object:Gem::Version
178
173
  version: '0'
179
174
  requirements: []
180
- rubygems_version: 3.0.3
175
+ rubygems_version: 3.3.20
181
176
  signing_key:
182
177
  specification_version: 4
183
178
  summary: Generate json for front-end testing using your rails backend.
data/.travis.yml DELETED
@@ -1,11 +0,0 @@
1
- language: ruby
2
- rvm:
3
- - 2.6.6
4
- - 2.7.2
5
- before_install:
6
- - gem update --system
7
- - gem install bundler
8
- cache: bundler
9
- gemfile:
10
- - gemfiles/rails_5.2.gemfile
11
- - gemfiles/rails_6.0.gemfile
@@ -1,7 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "rails", "~> 5.2.0"
6
-
7
- gemspec path: "../"
@@ -1,149 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- rails_edge_test (1.2.3)
5
- actionpack (>= 5.2.0, < 7.0.0)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- actioncable (5.2.4.4)
11
- actionpack (= 5.2.4.4)
12
- nio4r (~> 2.0)
13
- websocket-driver (>= 0.6.1)
14
- actionmailer (5.2.4.4)
15
- actionpack (= 5.2.4.4)
16
- actionview (= 5.2.4.4)
17
- activejob (= 5.2.4.4)
18
- mail (~> 2.5, >= 2.5.4)
19
- rails-dom-testing (~> 2.0)
20
- actionpack (5.2.4.4)
21
- actionview (= 5.2.4.4)
22
- activesupport (= 5.2.4.4)
23
- rack (~> 2.0, >= 2.0.8)
24
- rack-test (>= 0.6.3)
25
- rails-dom-testing (~> 2.0)
26
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
27
- actionview (5.2.4.4)
28
- activesupport (= 5.2.4.4)
29
- builder (~> 3.1)
30
- erubi (~> 1.4)
31
- rails-dom-testing (~> 2.0)
32
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
33
- activejob (5.2.4.4)
34
- activesupport (= 5.2.4.4)
35
- globalid (>= 0.3.6)
36
- activemodel (5.2.4.4)
37
- activesupport (= 5.2.4.4)
38
- activerecord (5.2.4.4)
39
- activemodel (= 5.2.4.4)
40
- activesupport (= 5.2.4.4)
41
- arel (>= 9.0)
42
- activestorage (5.2.4.4)
43
- actionpack (= 5.2.4.4)
44
- activerecord (= 5.2.4.4)
45
- marcel (~> 0.3.1)
46
- activesupport (5.2.4.4)
47
- concurrent-ruby (~> 1.0, >= 1.0.2)
48
- i18n (>= 0.7, < 2)
49
- minitest (~> 5.1)
50
- tzinfo (~> 1.1)
51
- appraisal (2.3.0)
52
- bundler
53
- rake
54
- thor (>= 0.14.0)
55
- arel (9.0.0)
56
- builder (3.2.4)
57
- concurrent-ruby (1.1.7)
58
- crass (1.0.6)
59
- diff-lcs (1.4.4)
60
- erubi (1.10.0)
61
- globalid (0.4.2)
62
- activesupport (>= 4.2.0)
63
- i18n (1.8.5)
64
- concurrent-ruby (~> 1.0)
65
- loofah (2.8.0)
66
- crass (~> 1.0.2)
67
- nokogiri (>= 1.5.9)
68
- mail (2.7.1)
69
- mini_mime (>= 0.1.1)
70
- marcel (0.3.3)
71
- mimemagic (~> 0.3.2)
72
- method_source (1.0.0)
73
- mimemagic (0.3.5)
74
- mini_mime (1.0.2)
75
- mini_portile2 (2.4.0)
76
- minitest (5.14.2)
77
- nio4r (2.5.4)
78
- nokogiri (1.10.10)
79
- mini_portile2 (~> 2.4.0)
80
- rack (2.2.3)
81
- rack-test (1.1.0)
82
- rack (>= 1.0, < 3)
83
- rails (5.2.4.4)
84
- actioncable (= 5.2.4.4)
85
- actionmailer (= 5.2.4.4)
86
- actionpack (= 5.2.4.4)
87
- actionview (= 5.2.4.4)
88
- activejob (= 5.2.4.4)
89
- activemodel (= 5.2.4.4)
90
- activerecord (= 5.2.4.4)
91
- activestorage (= 5.2.4.4)
92
- activesupport (= 5.2.4.4)
93
- bundler (>= 1.3.0)
94
- railties (= 5.2.4.4)
95
- sprockets-rails (>= 2.0.0)
96
- rails-dom-testing (2.0.3)
97
- activesupport (>= 4.2.0)
98
- nokogiri (>= 1.6)
99
- rails-html-sanitizer (1.3.0)
100
- loofah (~> 2.3)
101
- railties (5.2.4.4)
102
- actionpack (= 5.2.4.4)
103
- activesupport (= 5.2.4.4)
104
- method_source
105
- rake (>= 0.8.7)
106
- thor (>= 0.19.0, < 2.0)
107
- rake (13.0.1)
108
- rspec (3.10.0)
109
- rspec-core (~> 3.10.0)
110
- rspec-expectations (~> 3.10.0)
111
- rspec-mocks (~> 3.10.0)
112
- rspec-core (3.10.0)
113
- rspec-support (~> 3.10.0)
114
- rspec-expectations (3.10.0)
115
- diff-lcs (>= 1.2.0, < 2.0)
116
- rspec-support (~> 3.10.0)
117
- rspec-mocks (3.10.0)
118
- diff-lcs (>= 1.2.0, < 2.0)
119
- rspec-support (~> 3.10.0)
120
- rspec-support (3.10.0)
121
- sprockets (4.0.2)
122
- concurrent-ruby (~> 1.0)
123
- rack (> 1, < 3)
124
- sprockets-rails (3.2.2)
125
- actionpack (>= 4.0)
126
- activesupport (>= 4.0)
127
- sprockets (>= 3.0.0)
128
- sqlite3 (1.4.2)
129
- thor (1.0.1)
130
- thread_safe (0.3.6)
131
- tzinfo (1.2.8)
132
- thread_safe (~> 0.1)
133
- websocket-driver (0.7.3)
134
- websocket-extensions (>= 0.1.0)
135
- websocket-extensions (0.1.5)
136
-
137
- PLATFORMS
138
- ruby
139
-
140
- DEPENDENCIES
141
- appraisal (~> 2.3)
142
- rails (~> 5.2.0)
143
- rails_edge_test!
144
- rake (~> 13.0)
145
- rspec (~> 3.9)
146
- sqlite3 (~> 1.4.0)
147
-
148
- BUNDLED WITH
149
- 2.1.4
@@ -1,7 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "rails", "~> 6.0.0"
6
-
7
- gemspec path: "../"