podspec_editor 0.2.0 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a17bd6ac2ea50c36308d68ac1867d9867aa26724
4
- data.tar.gz: b9ccded60787bf1078b586af1751575760a892ea
3
+ metadata.gz: dce0914f6c6dac7f3338e2410cbe9f69fefe768e
4
+ data.tar.gz: 5827382fe1ba022d48079365e87bf6a7f7da8602
5
5
  SHA512:
6
- metadata.gz: 29ffe847a24a374d67e9772bd6afec123c577a170e54861b839c89095d5def4f36d8f1468aa91d351f05b3682819ee1ac7a5c48e259d7b18ff0f41a45c90798c
7
- data.tar.gz: 1a02a22a18dc0def66e28600faeedc46e5a5cc3a45b950b4747213421e73e25d0b21a2da23120f4b1af1485d6de59e6c4e601b2ef92e9f544c50dd58b7fd09e5
6
+ metadata.gz: '038f9d9dc567785f740f22b1f60c6eeb45d6769519aa32cc97bbc38ada298dbdb487a9a46319c1e62cd7701e3d93c972161afc2ab5b3959a2aa99b374048752b'
7
+ data.tar.gz: 0a7cf2606fbe5a658c7b591c900392811eb21148a0b82c870f56c17ac01c13d3fe1fbdb1c789964d2266537789bbbb4163d49cb2355881cd37b5e1bc56868b0a
data/.DS_Store ADDED
Binary file
data/.gitignore CHANGED
@@ -9,3 +9,5 @@
9
9
 
10
10
  # rspec failure tracking
11
11
  .rspec_status
12
+
13
+ *.gem
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- podspec_editor (0.2.0)
4
+ podspec_editor (0.3.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
File without changes
Binary file
@@ -1,6 +1,6 @@
1
1
  # :nocov:
2
2
  module Podspec
3
3
  module Editor
4
- VERSION = "0.2.0"
4
+ VERSION = "0.3.0"
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: podspec_editor
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - X140Yu
@@ -87,6 +87,7 @@ executables: []
87
87
  extensions: []
88
88
  extra_rdoc_files: []
89
89
  files:
90
+ - ".DS_Store"
90
91
  - ".gitignore"
91
92
  - ".rspec"
92
93
  - ".simplecov"
@@ -96,12 +97,10 @@ files:
96
97
  - LICENSE.txt
97
98
  - README.md
98
99
  - Rakefile
99
- - bin/console
100
- - bin/setup
101
- - lib/podspec_editor/TEMPLATE.podspec.json
102
- - lib/podspec_editor/editor.rb
100
+ - lib/TEMPLATE.podspec.json
101
+ - lib/podspec_editor.rb
102
+ - lib/podspec_editor/.DS_Store
103
103
  - lib/podspec_editor/version.rb
104
- - podspec_editor-0.1.0.gem
105
104
  - podspec_editor.gemspec
106
105
  homepage: https://zhaoxinyu.me
107
106
  licenses:
data/bin/console DELETED
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require "bundler/setup"
4
- require "podspec_editor"
5
-
6
- # You can add fixtures and/or initialization code here to make experimenting
7
- # with your gem easier. You can also use a different console, if you like.
8
-
9
- # (If you use this, don't forget to add pry to your Gemfile!)
10
- # require "pry"
11
- # Pry.start
12
-
13
- require "irb"
14
- IRB.start(__FILE__)
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here
Binary file