mumuki-emojis 1.1.1 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9c2410f6b751d3c2bead4c248e88eb96dd8cc936ea84a33406bb57eafa7b7bdd
4
- data.tar.gz: 2e7298fb120045c8e8f0f8a51200e9f7ef4a441e0964672d79d425a8c9450e1d
3
+ metadata.gz: 3647aeccf90e03c8497c894ef8e07fa054c5689cb6af163c3ac6b500d3f709af
4
+ data.tar.gz: 3f295d39c79814f82353c2a7706abb07251e381faa0ce66b05307927dcaef8b4
5
5
  SHA512:
6
- metadata.gz: 2d39346802fcbcf95d895793845e950fe2c24503b3216374e2f98b835c52f3e2bf88b9f1a3b66943d4b1c8aeb7313864295f9bed42155224a6aa997b9b9e6cfd
7
- data.tar.gz: 9c8a5304ac8fe7dbdaa924281df377558c706b5ad6393c3e02c94a847fc568c5bbbfe031012e17d511ac2c24699e67bee8a8ed84da25e4ab2b1f4d4e2b86c8b1
6
+ metadata.gz: 473b42427a5dbb952f5d7b2704d4a331bd95fca3145801805f17acd7478ac1b810a6f5f852c3bde925c2b598dc85b3b53a6d1db5d6268b0be463a00453223e85
7
+ data.tar.gz: 72a6a906876132c0b2da3c7d6a68aa97263d997d1fe0944638fe72d17eec0fd96795933d0e22059bb60e2c6bdcb5dd83f278cf0edadc6a97bda7c8d5baa605dd
data/README.md CHANGED
@@ -18,13 +18,15 @@ Or install it yourself as:
18
18
 
19
19
  $ gem install mumuki-emojis
20
20
 
21
- ## Usage
22
-
23
- TODO: Write usage instructions here
24
-
25
21
  ## Development
26
22
 
27
- After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
23
+ 1. `nvm use`
24
+ 1. `npm install`
25
+ 1. `npm run build`
26
+ 1. `cd gem`
27
+ 1. `./bin/setup`
28
+ 1. `bundle install`
29
+
28
30
 
29
31
  To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
30
32
 
data/Rakefile CHANGED
@@ -8,7 +8,8 @@ task :default => :spec
8
8
  namespace :wrapper do
9
9
  desc 'Wrap emojis assets into this gem'
10
10
  task wrap: :clean do
11
- cp_r '../assets', 'app'
11
+ cp '../dist/javascripts/mumuki-emojis.js', 'app/assets/javascripts'
12
+ cp '../dist/stylesheets/mumuki-emojis.css', 'app/assets/stylesheets'
12
13
  cp '../mumuki-emojis-shortnames.json', 'app/assets/json'
13
14
  end
14
15