snowglobe 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +11 -0
- data/.rspec +3 -0
- data/.rubocop.yml +132 -0
- data/.travis.yml +7 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +35 -0
- data/LICENSE +21 -0
- data/README.md +38 -0
- data/Rakefile +1 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/snowglobe/bundle.rb +93 -0
- data/lib/snowglobe/command_runner.rb +232 -0
- data/lib/snowglobe/configuration.rb +43 -0
- data/lib/snowglobe/database.rb +28 -0
- data/lib/snowglobe/database_adapters/postgresql.rb +25 -0
- data/lib/snowglobe/database_adapters/sqlite3.rb +26 -0
- data/lib/snowglobe/database_configuration.rb +33 -0
- data/lib/snowglobe/database_configuration_registry.rb +28 -0
- data/lib/snowglobe/filesystem.rb +95 -0
- data/lib/snowglobe/gem_version.rb +55 -0
- data/lib/snowglobe/project_command_runner.rb +69 -0
- data/lib/snowglobe/rails_application.rb +194 -0
- data/lib/snowglobe/test_helpers.rb +19 -0
- data/lib/snowglobe/version.rb +3 -0
- data/lib/snowglobe.rb +13 -0
- data/snowglobe.gemspec +41 -0
- metadata +103 -0
metadata
ADDED
@@ -0,0 +1,103 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: snowglobe
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Elliot Winkler
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2019-03-16 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '2.0'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '2.0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
description: Snowglobe is a gem that helps erect and destroy Rails applications for
|
42
|
+
use in tests.
|
43
|
+
email:
|
44
|
+
- elliot.winkler@gmail.com
|
45
|
+
executables: []
|
46
|
+
extensions: []
|
47
|
+
extra_rdoc_files: []
|
48
|
+
files:
|
49
|
+
- ".gitignore"
|
50
|
+
- ".rspec"
|
51
|
+
- ".rubocop.yml"
|
52
|
+
- ".travis.yml"
|
53
|
+
- Gemfile
|
54
|
+
- Gemfile.lock
|
55
|
+
- LICENSE
|
56
|
+
- README.md
|
57
|
+
- Rakefile
|
58
|
+
- bin/console
|
59
|
+
- bin/setup
|
60
|
+
- lib/snowglobe.rb
|
61
|
+
- lib/snowglobe/bundle.rb
|
62
|
+
- lib/snowglobe/command_runner.rb
|
63
|
+
- lib/snowglobe/configuration.rb
|
64
|
+
- lib/snowglobe/database.rb
|
65
|
+
- lib/snowglobe/database_adapters/postgresql.rb
|
66
|
+
- lib/snowglobe/database_adapters/sqlite3.rb
|
67
|
+
- lib/snowglobe/database_configuration.rb
|
68
|
+
- lib/snowglobe/database_configuration_registry.rb
|
69
|
+
- lib/snowglobe/filesystem.rb
|
70
|
+
- lib/snowglobe/gem_version.rb
|
71
|
+
- lib/snowglobe/project_command_runner.rb
|
72
|
+
- lib/snowglobe/rails_application.rb
|
73
|
+
- lib/snowglobe/test_helpers.rb
|
74
|
+
- lib/snowglobe/version.rb
|
75
|
+
- snowglobe.gemspec
|
76
|
+
homepage: https://github.com/mcmire/snowglobe
|
77
|
+
licenses:
|
78
|
+
- MIT
|
79
|
+
metadata:
|
80
|
+
allowed_push_host: https://rubygems.org
|
81
|
+
homepage_uri: https://github.com/mcmire/snowglobe
|
82
|
+
source_code_uri: https://github.com/mcmire/snowglobe
|
83
|
+
post_install_message:
|
84
|
+
rdoc_options: []
|
85
|
+
require_paths:
|
86
|
+
- lib
|
87
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
88
|
+
requirements:
|
89
|
+
- - ">="
|
90
|
+
- !ruby/object:Gem::Version
|
91
|
+
version: '0'
|
92
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
requirements: []
|
98
|
+
rubyforge_project:
|
99
|
+
rubygems_version: 2.7.9
|
100
|
+
signing_key:
|
101
|
+
specification_version: 4
|
102
|
+
summary: Create temporary Rails applications for use in testing
|
103
|
+
test_files: []
|