twitter_embed 0.1.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 +7 -0
 - data/.gitignore +12 -0
 - data/.project +17 -0
 - data/.release_app.sh +11 -0
 - data/.rspec +3 -0
 - data/.set_environment.sh +6 -0
 - data/.travis.yml +6 -0
 - data/CODE_OF_CONDUCT.md +74 -0
 - data/Gemfile +7 -0
 - data/Gemfile.lock +141 -0
 - data/LICENSE.txt +21 -0
 - data/README.md +37 -0
 - data/Rakefile +6 -0
 - data/bin/console +14 -0
 - data/bin/setup +8 -0
 - data/lib/twitter_embed.rb +77 -0
 - data/lib/twitter_embed/version.rb +3 -0
 - data/twitter_embed.gemspec +28 -0
 - data/vendor/assets/javascripts/twitter_embed.js +14 -0
 - data/vendor/assets/javascripts/widgets.js +16 -0
 - data/vendor/assets/stylesheets/tweet.common.css +361 -0
 - data/vendor/assets/stylesheets/tweet.dark.ltr.css +1445 -0
 - data/vendor/assets/stylesheets/tweet.light.ltr.css +1444 -0
 - data/vendor/assets/stylesheets/twitter_embed.css +17 -0
 - metadata +80 -0
 
| 
         @@ -0,0 +1,17 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            /*
         
     | 
| 
      
 2 
     | 
    
         
            +
             * This is a manifest file that'll be compiled into application.css, which will include all the files
         
     | 
| 
      
 3 
     | 
    
         
            +
             * listed below.
         
     | 
| 
      
 4 
     | 
    
         
            +
             *
         
     | 
| 
      
 5 
     | 
    
         
            +
             * Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
         
     | 
| 
      
 6 
     | 
    
         
            +
             * vendor/assets/stylesheets directory can be referenced here using a relative path.
         
     | 
| 
      
 7 
     | 
    
         
            +
             *
         
     | 
| 
      
 8 
     | 
    
         
            +
             * You're free to add application-wide styles to this file and they'll appear at the bottom of the
         
     | 
| 
      
 9 
     | 
    
         
            +
             * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
         
     | 
| 
      
 10 
     | 
    
         
            +
             * files in this directory. Styles in this file should be added after the last require_* statement.
         
     | 
| 
      
 11 
     | 
    
         
            +
             * It is generally better to create a new file per style scope.
         
     | 
| 
      
 12 
     | 
    
         
            +
             *
         
     | 
| 
      
 13 
     | 
    
         
            +
             *= require tweet.common.css
         
     | 
| 
      
 14 
     | 
    
         
            +
             *= require tweet.light.ltr.css
         
     | 
| 
      
 15 
     | 
    
         
            +
             *= require tweet.dark.ltr.css
         
     | 
| 
      
 16 
     | 
    
         
            +
             *= require_self
         
     | 
| 
      
 17 
     | 
    
         
            +
             */
         
     | 
    
        metadata
    ADDED
    
    | 
         @@ -0,0 +1,80 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            --- !ruby/object:Gem::Specification
         
     | 
| 
      
 2 
     | 
    
         
            +
            name: twitter_embed
         
     | 
| 
      
 3 
     | 
    
         
            +
            version: !ruby/object:Gem::Version
         
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.1.0
         
     | 
| 
      
 5 
     | 
    
         
            +
            platform: ruby
         
     | 
| 
      
 6 
     | 
    
         
            +
            authors:
         
     | 
| 
      
 7 
     | 
    
         
            +
            - Fernand
         
     | 
| 
      
 8 
     | 
    
         
            +
            autorequire: 
         
     | 
| 
      
 9 
     | 
    
         
            +
            bindir: exe
         
     | 
| 
      
 10 
     | 
    
         
            +
            cert_chain: []
         
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2020-04-11 00:00:00.000000000 Z
         
     | 
| 
      
 12 
     | 
    
         
            +
            dependencies:
         
     | 
| 
      
 13 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 14 
     | 
    
         
            +
              name: rails
         
     | 
| 
      
 15 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 16 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 17 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 18 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 19 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 20 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 21 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 22 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 23 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 24 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 25 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 26 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 27 
     | 
    
         
            +
            description: 'retrieve '
         
     | 
| 
      
 28 
     | 
    
         
            +
            email:
         
     | 
| 
      
 29 
     | 
    
         
            +
            - wwwfernand@yahoo.com
         
     | 
| 
      
 30 
     | 
    
         
            +
            executables: []
         
     | 
| 
      
 31 
     | 
    
         
            +
            extensions: []
         
     | 
| 
      
 32 
     | 
    
         
            +
            extra_rdoc_files: []
         
     | 
| 
      
 33 
     | 
    
         
            +
            files:
         
     | 
| 
      
 34 
     | 
    
         
            +
            - ".gitignore"
         
     | 
| 
      
 35 
     | 
    
         
            +
            - ".project"
         
     | 
| 
      
 36 
     | 
    
         
            +
            - ".release_app.sh"
         
     | 
| 
      
 37 
     | 
    
         
            +
            - ".rspec"
         
     | 
| 
      
 38 
     | 
    
         
            +
            - ".set_environment.sh"
         
     | 
| 
      
 39 
     | 
    
         
            +
            - ".travis.yml"
         
     | 
| 
      
 40 
     | 
    
         
            +
            - CODE_OF_CONDUCT.md
         
     | 
| 
      
 41 
     | 
    
         
            +
            - Gemfile
         
     | 
| 
      
 42 
     | 
    
         
            +
            - Gemfile.lock
         
     | 
| 
      
 43 
     | 
    
         
            +
            - LICENSE.txt
         
     | 
| 
      
 44 
     | 
    
         
            +
            - README.md
         
     | 
| 
      
 45 
     | 
    
         
            +
            - Rakefile
         
     | 
| 
      
 46 
     | 
    
         
            +
            - bin/console
         
     | 
| 
      
 47 
     | 
    
         
            +
            - bin/setup
         
     | 
| 
      
 48 
     | 
    
         
            +
            - lib/twitter_embed.rb
         
     | 
| 
      
 49 
     | 
    
         
            +
            - lib/twitter_embed/version.rb
         
     | 
| 
      
 50 
     | 
    
         
            +
            - twitter_embed.gemspec
         
     | 
| 
      
 51 
     | 
    
         
            +
            - vendor/assets/javascripts/twitter_embed.js
         
     | 
| 
      
 52 
     | 
    
         
            +
            - vendor/assets/javascripts/widgets.js
         
     | 
| 
      
 53 
     | 
    
         
            +
            - vendor/assets/stylesheets/tweet.common.css
         
     | 
| 
      
 54 
     | 
    
         
            +
            - vendor/assets/stylesheets/tweet.dark.ltr.css
         
     | 
| 
      
 55 
     | 
    
         
            +
            - vendor/assets/stylesheets/tweet.light.ltr.css
         
     | 
| 
      
 56 
     | 
    
         
            +
            - vendor/assets/stylesheets/twitter_embed.css
         
     | 
| 
      
 57 
     | 
    
         
            +
            homepage: https://github.com/wwwfernand/TwitterEmbed
         
     | 
| 
      
 58 
     | 
    
         
            +
            licenses:
         
     | 
| 
      
 59 
     | 
    
         
            +
            - MIT
         
     | 
| 
      
 60 
     | 
    
         
            +
            metadata: {}
         
     | 
| 
      
 61 
     | 
    
         
            +
            post_install_message: 
         
     | 
| 
      
 62 
     | 
    
         
            +
            rdoc_options: []
         
     | 
| 
      
 63 
     | 
    
         
            +
            require_paths:
         
     | 
| 
      
 64 
     | 
    
         
            +
            - lib
         
     | 
| 
      
 65 
     | 
    
         
            +
            required_ruby_version: !ruby/object:Gem::Requirement
         
     | 
| 
      
 66 
     | 
    
         
            +
              requirements:
         
     | 
| 
      
 67 
     | 
    
         
            +
              - - ">="
         
     | 
| 
      
 68 
     | 
    
         
            +
                - !ruby/object:Gem::Version
         
     | 
| 
      
 69 
     | 
    
         
            +
                  version: 2.3.1
         
     | 
| 
      
 70 
     | 
    
         
            +
            required_rubygems_version: !ruby/object:Gem::Requirement
         
     | 
| 
      
 71 
     | 
    
         
            +
              requirements:
         
     | 
| 
      
 72 
     | 
    
         
            +
              - - ">="
         
     | 
| 
      
 73 
     | 
    
         
            +
                - !ruby/object:Gem::Version
         
     | 
| 
      
 74 
     | 
    
         
            +
                  version: '0'
         
     | 
| 
      
 75 
     | 
    
         
            +
            requirements: []
         
     | 
| 
      
 76 
     | 
    
         
            +
            rubygems_version: 3.0.8
         
     | 
| 
      
 77 
     | 
    
         
            +
            signing_key: 
         
     | 
| 
      
 78 
     | 
    
         
            +
            specification_version: 4
         
     | 
| 
      
 79 
     | 
    
         
            +
            summary: crawl Twitter's embed HTML
         
     | 
| 
      
 80 
     | 
    
         
            +
            test_files: []
         
     |