README.md in ika3-0.2.1 vs README.md in ika3-0.3.0
- old
+ new
@@ -15,11 +15,11 @@
$ gem install ika3
## Usage
```ruby
-reuqire "ika3"
+require "ika3"
```
### Find Weapon data
```ruby
@@ -41,9 +41,36 @@
{:name=>"スプラスコープ", :sub=>"スプラボム", :special=>"キューインキ"},
{:name=>"ノヴァブラスター", :sub=>"スプラボム", :special=>"ショクワンダー"},
{:name=>"クラッシュブラスター", :sub=>"スプラボム", :special=>"ウルトラショット"},
{:name=>"パブロ", :sub=>"スプラボム", :special=>"メガホンレーザー5.1ch"}]
```
+
+### Get Schedule
+
+Initialize with your contact information. e.g. Twitter, GitHub, Homepage URL and so on.
+
+```ruby
+ika3_schedule = Ika3::Schedule.new('GitHub@YutaGoto')
+ika3_schedule.bankara_challenge_next
+=>
+{"start_time"=>"2023-02-07T13:00:00+09:00",
+ "end_time"=>"2023-02-07T15:00:00+09:00",
+ "rule"=>{"key"=>"LOFT", "name"=>"ガチヤグラ"},
+ "stages"=>
+ [{"id"=>9,
+ "name"=>"ヒラメが丘団地",
+ "image"=> "https://....."},
+ {"id"=>11,
+ "name"=>"キンメダイ美術館",
+ "image"=> "https://...."}],
+ "is_fest"=>false}
+```
+
+## Note
+
+This gem is NOT related to Nintendo.
+
+The Schedule is used an unofficial API. <https://spla3.yuu26.com/>
## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/YutaGoto/ika3.