├── .gitignore ├── .rspec ├── .travis.yml ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── lib ├── semantic.rb └── semantic │ ├── core_ext.rb │ └── version.rb ├── semantic.gemspec └── spec ├── core_ext_spec.rb ├── spec_helper.rb └── version_spec.rb /.gitignore: -------------------------------------------------------------------------------- 1 | pkg 2 | Gemfile.lock 3 | -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format progress 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlindsey/semantic/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlindsey/semantic/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlindsey/semantic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlindsey/semantic/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlindsey/semantic/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/semantic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlindsey/semantic/HEAD/lib/semantic.rb -------------------------------------------------------------------------------- /lib/semantic/core_ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlindsey/semantic/HEAD/lib/semantic/core_ext.rb -------------------------------------------------------------------------------- /lib/semantic/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlindsey/semantic/HEAD/lib/semantic/version.rb -------------------------------------------------------------------------------- /semantic.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlindsey/semantic/HEAD/semantic.gemspec -------------------------------------------------------------------------------- /spec/core_ext_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlindsey/semantic/HEAD/spec/core_ext_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlindsey/semantic/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/version_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlindsey/semantic/HEAD/spec/version_spec.rb --------------------------------------------------------------------------------