MagicViper 0.1.0 → 0.1.2
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/MagicViper-0.1.0.gem +0 -0
- data/MagicViper-0.1.1.gem +0 -0
- data/MagicViper.gemspec +3 -3
- data/Rakefile +0 -1
- data/bin/MagicViper +10 -0
- data/lib/MagicViper/version.rb +1 -1
- metadata +12 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8005f340c928a27b93614439c83694c6f9d59ee2
|
4
|
+
data.tar.gz: 08c991aea28d19455fbdcdb26355fbe87bc12a50
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0b29256b027d31688c700905002e9154565e8d235a5f6fc44c8a735a398100fc3749f216a8302b6f8e3c2ece7abd851723f82df80813dcf44078d0ed290b543a
|
7
|
+
data.tar.gz: 2e0f8538b48b563746a16fa5d5b7a6c99ae6c0d1511cc7346a2949286cce4a8b823cbe4b90ffda74f89670fb2ce0e3244834d4480f6cf121708d104eb4ea55bb
|
Binary file
|
Binary file
|
data/MagicViper.gemspec
CHANGED
@@ -12,17 +12,17 @@ Gem::Specification.new do |spec|
|
|
12
12
|
spec.summary = %q{Generates Objective C files for Viper Module Initialization.}
|
13
13
|
spec.description = %q{Creates all the files and setup required for Viper Architecture in iOS.}
|
14
14
|
spec.homepage = "https://github.com/ndagrawal"
|
15
|
-
|
15
|
+
spec.licenses = "MIT"
|
16
16
|
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
17
17
|
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
18
18
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
19
19
|
f.match(%r{^(test|spec|features)/})
|
20
20
|
end
|
21
21
|
|
22
|
-
spec.executables = spec.files.grep(%r{^
|
22
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
23
23
|
spec.require_paths = ["lib"]
|
24
24
|
|
25
25
|
spec.add_development_dependency "bundler", "~> 1.15"
|
26
26
|
spec.add_development_dependency "rake", "~> 10.0"
|
27
|
-
spec.add_development_dependency "thor", "~>
|
27
|
+
spec.add_development_dependency "thor", "~> 0.19.4"
|
28
28
|
end
|
data/Rakefile
CHANGED
data/bin/MagicViper
ADDED
data/lib/MagicViper/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: MagicViper
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nilesh Agrawal
|
@@ -44,18 +44,21 @@ dependencies:
|
|
44
44
|
requirements:
|
45
45
|
- - ~>
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version:
|
47
|
+
version: 0.19.4
|
48
48
|
type: :development
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - ~>
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version:
|
54
|
+
version: 0.19.4
|
55
55
|
description: Creates all the files and setup required for Viper Architecture in iOS.
|
56
56
|
email:
|
57
57
|
- nilesh.d.agrawal@gmail.com
|
58
|
-
executables:
|
58
|
+
executables:
|
59
|
+
- MagicViper
|
60
|
+
- console
|
61
|
+
- setup
|
59
62
|
extensions: []
|
60
63
|
extra_rdoc_files: []
|
61
64
|
files:
|
@@ -63,9 +66,12 @@ files:
|
|
63
66
|
- Gemfile
|
64
67
|
- LICENSE
|
65
68
|
- License.txt
|
69
|
+
- MagicViper-0.1.0.gem
|
70
|
+
- MagicViper-0.1.1.gem
|
66
71
|
- MagicViper.gemspec
|
67
72
|
- README.md
|
68
73
|
- Rakefile
|
74
|
+
- bin/MagicViper
|
69
75
|
- bin/console
|
70
76
|
- bin/setup
|
71
77
|
- lib/MagicViper.rb
|
@@ -93,7 +99,8 @@ files:
|
|
93
99
|
- lib/MagicViper/templates/objc/RootWireframe.m
|
94
100
|
- lib/MagicViper/version.rb
|
95
101
|
homepage: https://github.com/ndagrawal
|
96
|
-
licenses:
|
102
|
+
licenses:
|
103
|
+
- MIT
|
97
104
|
metadata: {}
|
98
105
|
post_install_message:
|
99
106
|
rdoc_options: []
|