https://github.com/datpmt/cefr-words
A gem that provides English vocabulary lists organized by CEFR levels.
https://github.com/datpmt/cefr-words
Last synced: 5 months ago
JSON representation
A gem that provides English vocabulary lists organized by CEFR levels.
- Host: GitHub
- URL: https://github.com/datpmt/cefr-words
- Owner: datpmt
- License: mit
- Created: 2024-11-07T08:16:25.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-07T08:24:13.000Z (over 1 year ago)
- Last Synced: 2025-05-16T17:45:01.813Z (about 1 year ago)
- Language: Ruby
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# CEFR Levels Words
A gem that provides English vocabulary lists organized by CEFR levels.
## Installation
Add this line to your application's Gemfile:
```ruby
gem 'cefr-words'
```
And then execute:
```bash
bundle install
```
## Usage
To get words with CEFR level:
```ruby
word_list = CefrWords::WordList.new
# Get A1 words
word_list.words_by_level("a1")
# Get A1-C1 words
word_list.words_by_level("all")
```
## Contributors
- [datpmt](https://github.com/datpmt)
I welcome contributions to this project.
1. Fork it.
2. Create your feature branch (`git checkout -b your-feature`).
3. Commit your changes (`git commit -am 'Add some feature'`).
4. Push to the branch (`git push origin your-feature`).
5. Create a new pull request.
## References
1. https://www.oxfordlearnersdictionaries.com/external/pdf/wordlists/oxford-phrase-list/Oxford%20Phrase%20List.pdf
2. https://www.oxfordlearnersdictionaries.com/external/pdf/wordlists/oxford-3000-5000/The_Oxford_3000_by_CEFR_level.pdf
## License
The gem is available as open source under the terms of the [MIT License](LICENSE).