easy_sax 0.1.0 → 0.1.1

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
- SHA1:
3
- metadata.gz: 728c5b578b32cb27cbb786cd5ee990b7ca03c2b8
4
- data.tar.gz: 02ce51a239add7f7b57c1950e61bb851303baf35
2
+ SHA256:
3
+ metadata.gz: aee3ba67eb42b5c0c005802e7e8a1133ceabcab7654d6d8b83105217b728d089
4
+ data.tar.gz: 6ab5914adfdf170ddbbcaebc4cf1deff87e7ea483783d5b77ed166088ad318e0
5
5
  SHA512:
6
- metadata.gz: 6b01b16e0e38a178410e74f2550bc0229ff2ea14638adceedbab648a6b98861219e41c7dcc502d4a8cca1df22159d746f0a02ddbfc22aaacf5a5010999afd573
7
- data.tar.gz: 6d00ec699b5387f6665b3e2350a69c01c365d00d558e88d1c3a1284b5ff6f0c7dc182a4365848ada8032a19eacc4fe1ea16c8033391717d10b5206e0e1d6ece0
6
+ metadata.gz: 91829d523cf6d39e09d43127bab4c8672994167afbd19503cdf77867fc03a940ddd2729eb021aaae1883b9cf8e7e087936d960d22690d5799f8b96c6d21be8f9
7
+ data.tar.gz: 8ccfc324427ea9df8b51022d2446f04c195382b5be1e0627f4f29e0feb6dadf8354a2f4fd4c57decb922b6a72b61c0ce473f848a719817c108b7e7aec4d308e3
@@ -0,0 +1,32 @@
1
+ name: CI
2
+ on:
3
+ pull_request:
4
+ branches: [ master ]
5
+ push:
6
+ branches: [ master ]
7
+ jobs:
8
+ test:
9
+ runs-on: ubuntu-latest
10
+ strategy:
11
+ matrix:
12
+ ruby_version: [ '2.7' ]
13
+ steps:
14
+ - name: Checkout
15
+ uses: actions/checkout@v2
16
+ - name: Setup ruby ${{ matrix.ruby_version }}
17
+ uses: actions/setup-ruby@v1
18
+ with:
19
+ ruby-version: ${{ matrix.ruby_version }}
20
+ - name: Setup cache key and directory for gems cache
21
+ uses: actions/cache@v1
22
+ with:
23
+ path: vendor/bundle
24
+ key: ${{ runner.os }}-gem-use-ruby-${{ matrix.ruby_version }}-${{ hashFiles('**/Gemfile.lock') }}
25
+ - name: Bundle install
26
+ run: |
27
+ gem install bundler:2.2.24
28
+ bundle config path vendor/bundle
29
+ bundle install --jobs 4 --retry 3
30
+ - name: Run tests
31
+ run: |
32
+ bundle exec rake test
data/.gitignore CHANGED
@@ -1,6 +1,5 @@
1
1
  /.bundle/
2
2
  /.yardoc
3
- /Gemfile.lock
4
3
  /_yardoc/
5
4
  /coverage/
6
5
  /doc/
data/Gemfile.lock ADDED
@@ -0,0 +1,46 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ easy_sax (0.1.1)
5
+ activesupport (>= 1.6)
6
+ nokogiri (>= 1.13.4)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ activesupport (6.1.4)
12
+ concurrent-ruby (~> 1.0, >= 1.0.2)
13
+ i18n (>= 1.6, < 2)
14
+ minitest (>= 5.1)
15
+ tzinfo (~> 2.0)
16
+ zeitwerk (~> 2.3)
17
+ coderay (1.1.3)
18
+ concurrent-ruby (1.1.10)
19
+ i18n (1.8.10)
20
+ concurrent-ruby (~> 1.0)
21
+ method_source (1.0.0)
22
+ minitest (5.14.4)
23
+ nokogiri (1.13.4-x86_64-linux)
24
+ racc (~> 1.4)
25
+ pry (0.14.1)
26
+ coderay (~> 1.1)
27
+ method_source (~> 1.0)
28
+ racc (1.6.0)
29
+ rake (13.0.6)
30
+ tzinfo (2.0.4)
31
+ concurrent-ruby (~> 1.0)
32
+ zeitwerk (2.4.2)
33
+
34
+ PLATFORMS
35
+ x86_64-darwin-20
36
+ x86_64-linux
37
+
38
+ DEPENDENCIES
39
+ bundler (~> 2.2.24)
40
+ easy_sax!
41
+ minitest (~> 5.0)
42
+ pry
43
+ rake
44
+
45
+ BUNDLED WITH
46
+ 2.2.33
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # EasySax
2
2
 
3
- EasySax allows you to easily parse large files without the messy syntax needed for working with most Sax parsers. It was inspired after attempting to use [SaxMachine](https://github.com/pauldix/sax-machine) to parse a 500mb XML file that resulted in a huge spike to 2gbs of memory inside a Rails app. EasySax is very lightweight and only stores the element currently being used in memory. It also allows you to access parent elements without storing the whole parent tree in memory. Testing with the same file mentioend above, the memory stayed constant and it processed the file much faster. EasySax is currently used in production at EasyBroker.
3
+ EasySax allows you to easily parse large files without the messy syntax needed for working with most Sax parsers. It was inspired after attempting to use [SaxMachine](https://github.com/pauldix/sax-machine) to parse a 500mb XML file that resulted in a huge spike to 2gbs of memory inside a Rails app. EasySax is very lightweight and only stores the element currently being used in memory. It also allows you to access parent elements without storing the whole parent tree in memory. Testing with the same file above, the memory stayed constant and it processed the file much faster. EasySax is currently used in production at EasyBroker.
4
4
 
5
5
  ## Installation
6
6
 
data/easy_sax.gemspec CHANGED
@@ -19,11 +19,11 @@ Gem::Specification.new do |spec|
19
19
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
20
  spec.require_paths = ["lib"]
21
21
 
22
- spec.add_dependency "nokogiri", ">= 1.6"
22
+ spec.add_dependency "nokogiri", ">= 1.13.4"
23
23
  spec.add_dependency "activesupport", ">= 1.6"
24
24
 
25
- spec.add_development_dependency "bundler", "~> 1.12"
26
- spec.add_development_dependency "rake", "~> 10.0"
25
+ spec.add_development_dependency "bundler", "~> 2.2.24"
26
+ spec.add_development_dependency "rake"
27
27
  spec.add_development_dependency "minitest", "~> 5.0"
28
28
  spec.add_development_dependency "pry"
29
29
  end
@@ -1,3 +1,3 @@
1
1
  module EasySax
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: easy_sax
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Northam
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-10-18 00:00:00.000000000 Z
11
+ date: 2022-04-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '1.6'
19
+ version: 1.13.4
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: '1.6'
26
+ version: 1.13.4
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: activesupport
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -44,28 +44,28 @@ dependencies:
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '1.12'
47
+ version: 2.2.24
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: '1.12'
54
+ version: 2.2.24
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: rake
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - "~>"
59
+ - - ">="
60
60
  - !ruby/object:Gem::Version
61
- version: '10.0'
61
+ version: '0'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - "~>"
66
+ - - ">="
67
67
  - !ruby/object:Gem::Version
68
- version: '10.0'
68
+ version: '0'
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: minitest
71
71
  requirement: !ruby/object:Gem::Requirement
@@ -102,9 +102,11 @@ executables: []
102
102
  extensions: []
103
103
  extra_rdoc_files: []
104
104
  files:
105
+ - ".github/workflows/ci.yml"
105
106
  - ".gitignore"
106
107
  - ".travis.yml"
107
108
  - Gemfile
109
+ - Gemfile.lock
108
110
  - LICENSE.txt
109
111
  - README.md
110
112
  - Rakefile
@@ -120,7 +122,7 @@ homepage: https://github.com/easybroker/easy_sax
120
122
  licenses:
121
123
  - MIT
122
124
  metadata: {}
123
- post_install_message:
125
+ post_install_message:
124
126
  rdoc_options: []
125
127
  require_paths:
126
128
  - lib
@@ -135,9 +137,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
135
137
  - !ruby/object:Gem::Version
136
138
  version: '0'
137
139
  requirements: []
138
- rubyforge_project:
139
- rubygems_version: 2.5.2.3
140
- signing_key:
140
+ rubygems_version: 3.2.3
141
+ signing_key:
141
142
  specification_version: 4
142
143
  summary: A simple SAX parser that enables parsing of large files without the messy
143
144
  syntax of typical SAX parsers.