scorpion-ioc 1.0.7 → 1.0.8
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.
- checksums.yaml +4 -4
- data/lib/scorpion/version.rb +1 -1
- data/scorpion.gemspec +33 -0
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ec2309f9bd3d03b3816769a5b4c57c2220b5cb853ad75da27d328ab055bf0ab5
|
4
|
+
data.tar.gz: 37e218349f4f6f78eb6a9e92a1f7a34c7279d70a7d140b7c9cc973e1c456ab96
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f5384c153ea68dee8f1f34e34f89568669b8d854de0e41b8786be03b9413ec02a4d2a8f811a0be1837910670540a11379eea3e4670d9584b978eb3059cbbfba3
|
7
|
+
data.tar.gz: 6658eb4aa8a1bfcc0ba1b9942e86b1124e8772e9103b7dcbbc02af5e2ffba25077616c19f59fa5b26c281056c344d5c0f0a4196a0c6de7e9a6ce8e2dab5bcf47
|
data/lib/scorpion/version.rb
CHANGED
data/scorpion.gemspec
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
lib = File.expand_path("../lib", __FILE__)
|
2
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
3
|
+
require "scorpion/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = "scorpion-ioc"
|
7
|
+
spec.version = "#{ Scorpion::VERSION }"
|
8
|
+
spec.authors = ["Paul Alexander"]
|
9
|
+
spec.email = ["me@phallguy.com"]
|
10
|
+
spec.summary = "Add IoC to rails with minimal fuss and ceremony"
|
11
|
+
spec.description = "Embrace convention over configuration while still benefitting from dependency injection design principles." # rubocop:disable Metrics/LineLength
|
12
|
+
spec.homepage = "https://github.com/phallguy/scorpion"
|
13
|
+
spec.license = "MIT"
|
14
|
+
|
15
|
+
spec.files = Dir["lib/**/*.rb"] + Dir["bin/*"]
|
16
|
+
spec.files += Dir["[A-Z]*"] + Dir["spec/**/*"]
|
17
|
+
spec.files << "scorpion.gemspec"
|
18
|
+
spec.files.reject! { |fn| fn.include? ".git" }
|
19
|
+
|
20
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
21
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
22
|
+
spec.require_paths = ["lib"]
|
23
|
+
|
24
|
+
spec.add_dependency "rails", ">= 4.0"
|
25
|
+
spec.required_ruby_version = ">= 2.4.0"
|
26
|
+
|
27
|
+
spec.add_development_dependency "bundler", "~> 1.6"
|
28
|
+
spec.add_development_dependency "combustion", "~> 1"
|
29
|
+
spec.add_development_dependency "rake", "~> 13"
|
30
|
+
spec.add_development_dependency "rspec", "~> 3.00"
|
31
|
+
spec.add_development_dependency "rspec-rails", "~> 3.00"
|
32
|
+
spec.add_development_dependency "sqlite3"
|
33
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: scorpion-ioc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Paul Alexander
|
@@ -163,6 +163,7 @@ files:
|
|
163
163
|
- lib/scorpion/rspec/helper.rb
|
164
164
|
- lib/scorpion/stinger.rb
|
165
165
|
- lib/scorpion/version.rb
|
166
|
+
- scorpion.gemspec
|
166
167
|
- spec/internal/app/assets/config/manifest.js
|
167
168
|
- spec/internal/app/models/author.rb
|
168
169
|
- spec/internal/app/models/todo.rb
|