rubinius-processor 2.3.0 → 3.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2f50279a01528957e57428b64bf31ab38ff119e2
4
- data.tar.gz: 40af1e15a1f23f90e3b6b395725eea2f3351bf36
3
+ metadata.gz: 2440bbcd018eafb9a915da6f987a95be7921866d
4
+ data.tar.gz: 3424dc7cdf76fbaa7e9232b1364da116757a25f0
5
5
  SHA512:
6
- metadata.gz: 8fb6cfe00c297fe56104706bcf451eabb639c32e71d8e7aa15d094bb5247711f380407ff1f412182c2a8b5f5f55d4c47c19f13f07586fdd18e3a747d9e9dbf62
7
- data.tar.gz: 18a0bce4f673e0f4412d39434f6b1fae0a5cec8fa270e35ab34b1b190cdfcd830c8bdf7ca51ccc8094b9be65a68166ab637e14ca231dfee318ed4600e0e58b1a
6
+ metadata.gz: 519a50ecc7a7c2b01c7f61716e50cb20a63f9792366bdd2b135cee080d9bea3557bf673bebc93c016e525033b6acd3e139910d04537095f523b254bd76aba927
7
+ data.tar.gz: d31b5f6f70cad14e07baa16136a75d9d14b34d57f52ff9d3e0bfed9fdf05163cae3f375bac2f81c0da63d7ed7e033d0f7c1d5a3c52b429ed807e84391381e955
@@ -0,0 +1,2 @@
1
+ require "rubinius/code/processor/version"
2
+ require "rubinius/code/processor/processor"
@@ -1,5 +1,5 @@
1
1
  module CodeTools
2
2
  class Processor
3
- VERSION = "2.3.0"
3
+ VERSION = "3.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubinius-processor
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.0
4
+ version: '3.0'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Shirai
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-11-28 00:00:00.000000000 Z
11
+ date: 2016-01-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -17,8 +17,8 @@ dependencies:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
19
  version: '1.3'
20
- type: :development
21
20
  prerelease: false
21
+ type: :development
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
@@ -31,8 +31,8 @@ dependencies:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
33
  version: '10.0'
34
- type: :development
35
34
  prerelease: false
35
+ type: :development
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
@@ -45,18 +45,12 @@ executables: []
45
45
  extensions: []
46
46
  extra_rdoc_files: []
47
47
  files:
48
- - ".gitignore"
49
- - Gemfile
50
- - LICENSE
51
- - README.md
52
- - Rakefile
53
- - lib/rubinius/processor.rb
54
- - lib/rubinius/processor/processor.rb
55
- - lib/rubinius/processor/version.rb
56
- - rubinius-processor.gemspec
57
- homepage: https://github.com/rubinius/rubinius-processor
48
+ - lib/rubinius/code/processor.rb
49
+ - lib/rubinius/code/processor/processor.rb
50
+ - lib/rubinius/code/processor/version.rb
51
+ homepage: https://github.com/rubinius/rubinius-code
58
52
  licenses:
59
- - BSD
53
+ - MPL-2.0
60
54
  metadata: {}
61
55
  post_install_message:
62
56
  rdoc_options: []
@@ -66,7 +60,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
66
60
  requirements:
67
61
  - - ">="
68
62
  - !ruby/object:Gem::Version
69
- version: 1.9.2
63
+ version: '0'
70
64
  required_rubygems_version: !ruby/object:Gem::Requirement
71
65
  requirements:
72
66
  - - ">="
@@ -74,7 +68,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
74
68
  version: '0'
75
69
  requirements: []
76
70
  rubyforge_project:
77
- rubygems_version: 2.2.2
71
+ rubygems_version: 2.5.1
78
72
  signing_key:
79
73
  specification_version: 4
80
74
  summary: Converts Melbourne parse tree into an AST.
data/.gitignore DELETED
@@ -1,18 +0,0 @@
1
- *.gem
2
- *.rbc
3
- .bundle
4
- .config
5
- .yardoc
6
- .rbx
7
- Gemfile.lock
8
- InstalledFiles
9
- _yardoc
10
- coverage
11
- doc/
12
- lib/bundler/man
13
- pkg
14
- rdoc
15
- spec/reports
16
- test/tmp
17
- test/version_tmp
18
- tmp
data/Gemfile DELETED
@@ -1,4 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- # Specify your gem's dependencies in rubinius-processor.gemspec
4
- gemspec
data/LICENSE DELETED
@@ -1,25 +0,0 @@
1
- Copyright (c) 2013, Brian Shirai
2
- All rights reserved.
3
-
4
- Redistribution and use in source and binary forms, with or without
5
- modification, are permitted provided that the following conditions are met:
6
-
7
- 1. Redistributions of source code must retain the above copyright notice, this
8
- list of conditions and the following disclaimer.
9
- 2. Redistributions in binary form must reproduce the above copyright notice,
10
- this list of conditions and the following disclaimer in the documentation
11
- and/or other materials provided with the distribution.
12
- 3. Neither the name of the library nor the names of its contributors may be
13
- used to endorse or promote products derived from this software without
14
- specific prior written permission.
15
-
16
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19
- DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY DIRECT,
20
- INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
21
- BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
23
- OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
24
- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
25
- EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
data/README.md DELETED
@@ -1,29 +0,0 @@
1
- # Rubinius::Processor
2
-
3
- TODO: Write a gem description
4
-
5
- ## Installation
6
-
7
- Add this line to your application's Gemfile:
8
-
9
- gem 'rubinius-processor'
10
-
11
- And then execute:
12
-
13
- $ bundle
14
-
15
- Or install it yourself as:
16
-
17
- $ gem install rubinius-processor
18
-
19
- ## Usage
20
-
21
- TODO: Write usage instructions here
22
-
23
- ## Contributing
24
-
25
- 1. Fork it
26
- 2. Create your feature branch (`git checkout -b my-new-feature`)
27
- 3. Commit your changes (`git commit -am 'Add some feature'`)
28
- 4. Push to the branch (`git push origin my-new-feature`)
29
- 5. Create new Pull Request
data/Rakefile DELETED
@@ -1 +0,0 @@
1
- require "bundler/gem_tasks"
@@ -1,2 +0,0 @@
1
- require "rubinius/processor/version"
2
- require "rubinius/processor/processor"
@@ -1,23 +0,0 @@
1
- # coding: utf-8
2
- require './lib/rubinius/processor/version'
3
-
4
- Gem::Specification.new do |spec|
5
- spec.name = "rubinius-processor"
6
- spec.version = CodeTools::Processor::VERSION
7
- spec.authors = ["Brian Shirai"]
8
- spec.email = ["brixen@gmail.com"]
9
- spec.description = %q{Converts Melbourne parse tree into an AST.}
10
- spec.summary = %q{Converts Melbourne parse tree into an AST.}
11
- spec.homepage = "https://github.com/rubinius/rubinius-processor"
12
- spec.license = "BSD"
13
-
14
- spec.files = `git ls-files`.split($/)
15
- spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
16
- spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
17
- spec.require_paths = ["lib"]
18
-
19
- spec.required_ruby_version = ">= 1.9.2"
20
-
21
- spec.add_development_dependency "bundler", "~> 1.3"
22
- spec.add_development_dependency "rake", "~> 10.0"
23
- end