├── .github └── workflows │ └── build.yml ├── .gitignore ├── CHANGELOG.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── lib ├── trend.rb └── trend │ ├── client.rb │ └── version.rb ├── test ├── test_helper.rb └── trend_test.rb └── trend.gemspec /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/trend-ruby/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/trend-ruby/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/trend-ruby/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/trend-ruby/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/trend-ruby/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/trend-ruby/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/trend-ruby/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/trend.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/trend-ruby/HEAD/lib/trend.rb -------------------------------------------------------------------------------- /lib/trend/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/trend-ruby/HEAD/lib/trend/client.rb -------------------------------------------------------------------------------- /lib/trend/version.rb: -------------------------------------------------------------------------------- 1 | module Trend 2 | VERSION = "0.3.0" 3 | end 4 | -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/trend-ruby/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/trend_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/trend-ruby/HEAD/test/trend_test.rb -------------------------------------------------------------------------------- /trend.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/trend-ruby/HEAD/trend.gemspec --------------------------------------------------------------------------------