daqing_figaro 1.2.1

Sign up to get free protection for your applications and to get access to all the features.
metadata ADDED
@@ -0,0 +1,158 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: daqing_figaro
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.2.1
5
+ platform: ruby
6
+ authors:
7
+ - David Zhang
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2023-06-25 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: thor
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 0.14.0
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '2'
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: 0.14.0
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '2'
33
+ - !ruby/object:Gem::Dependency
34
+ name: bundler
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: 1.7.0
40
+ - - "<"
41
+ - !ruby/object:Gem::Version
42
+ version: '3'
43
+ type: :development
44
+ prerelease: false
45
+ version_requirements: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: 1.7.0
50
+ - - "<"
51
+ - !ruby/object:Gem::Version
52
+ version: '3'
53
+ - !ruby/object:Gem::Dependency
54
+ name: rake
55
+ requirement: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - ">="
58
+ - !ruby/object:Gem::Version
59
+ version: 10.4.0
60
+ - - "<"
61
+ - !ruby/object:Gem::Version
62
+ version: '14'
63
+ type: :development
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ">="
68
+ - !ruby/object:Gem::Version
69
+ version: 10.4.0
70
+ - - "<"
71
+ - !ruby/object:Gem::Version
72
+ version: '14'
73
+ description: Simple, Heroku-friendly Rails app configuration using ENV and a single
74
+ YAML file
75
+ email: daqing@icloud.com
76
+ executables:
77
+ - figaro
78
+ extensions: []
79
+ extra_rdoc_files: []
80
+ files:
81
+ - ".github/FUNDING.yml"
82
+ - ".gitignore"
83
+ - ".rspec"
84
+ - ".travis.yml"
85
+ - CHANGELOG.md
86
+ - CONTRIBUTING.md
87
+ - Gemfile
88
+ - LICENSE.txt
89
+ - README.md
90
+ - Rakefile
91
+ - bin/figaro
92
+ - figaro.gemspec
93
+ - gemfiles/rails52.gemfile
94
+ - gemfiles/rails6.gemfile
95
+ - gemfiles/rails60.gemfile
96
+ - lib/figaro.rb
97
+ - lib/figaro/application.rb
98
+ - lib/figaro/cli.rb
99
+ - lib/figaro/cli/heroku_set.rb
100
+ - lib/figaro/cli/install.rb
101
+ - lib/figaro/cli/install/application.yml
102
+ - lib/figaro/cli/task.rb
103
+ - lib/figaro/env.rb
104
+ - lib/figaro/error.rb
105
+ - lib/figaro/rails.rb
106
+ - lib/figaro/rails/application.rb
107
+ - lib/figaro/rails/railtie.rb
108
+ - lib/figaro/rails/tasks.rake
109
+ - spec/figaro/application_spec.rb
110
+ - spec/figaro/cli/heroku_set_spec.rb
111
+ - spec/figaro/cli/install_spec.rb
112
+ - spec/figaro/env_spec.rb
113
+ - spec/figaro/rails/application_spec.rb
114
+ - spec/figaro_spec.rb
115
+ - spec/rails_spec.rb
116
+ - spec/spec_helper.rb
117
+ - spec/support/aruba.rb
118
+ - spec/support/bin/heroku
119
+ - spec/support/command_helpers.rb
120
+ - spec/support/command_interceptor.rb
121
+ - spec/support/reset.rb
122
+ homepage: https://github.com/daqing/figaro
123
+ licenses:
124
+ - MIT
125
+ metadata: {}
126
+ post_install_message:
127
+ rdoc_options: []
128
+ require_paths:
129
+ - lib
130
+ required_ruby_version: !ruby/object:Gem::Requirement
131
+ requirements:
132
+ - - ">="
133
+ - !ruby/object:Gem::Version
134
+ version: '0'
135
+ required_rubygems_version: !ruby/object:Gem::Requirement
136
+ requirements:
137
+ - - ">="
138
+ - !ruby/object:Gem::Version
139
+ version: '0'
140
+ requirements: []
141
+ rubygems_version: 3.4.10
142
+ signing_key:
143
+ specification_version: 4
144
+ summary: Simple Rails app configuration
145
+ test_files:
146
+ - spec/figaro/application_spec.rb
147
+ - spec/figaro/cli/heroku_set_spec.rb
148
+ - spec/figaro/cli/install_spec.rb
149
+ - spec/figaro/env_spec.rb
150
+ - spec/figaro/rails/application_spec.rb
151
+ - spec/figaro_spec.rb
152
+ - spec/rails_spec.rb
153
+ - spec/spec_helper.rb
154
+ - spec/support/aruba.rb
155
+ - spec/support/bin/heroku
156
+ - spec/support/command_helpers.rb
157
+ - spec/support/command_interceptor.rb
158
+ - spec/support/reset.rb